grobian     14/06/06 18:37:11

  Modified:             ChangeLog
  Added:                baikal-0.2.7.ebuild
  Log:
  Version bump (bug #511956) and fix possibly invalid chown, bug #468508
  
  (Portage version: HEAD/cvs/SunOS i386, signed Manifest commit with key 
0x5F75F607C5C74E89)

Revision  Changes    Path
1.3                  www-apps/baikal/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/baikal/ChangeLog?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/baikal/ChangeLog?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/baikal/ChangeLog?r1=1.2&r2=1.3

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/baikal/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog   20 Apr 2013 15:23:34 -0000      1.2
+++ ChangeLog   6 Jun 2014 18:37:10 -0000       1.3
@@ -1,6 +1,12 @@
 # ChangeLog for www-apps/baikal
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/baikal/ChangeLog,v 1.2 2013/04/20 
15:23:34 grobian Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/www-apps/baikal/ChangeLog,v 1.3 2014/06/06 
18:37:10 grobian Exp $
+
+*baikal-0.2.7 (06 Jun 2014)
+
+  06 Jun 2014; Fabian Groffen <[email protected]> +baikal-0.2.7.ebuild,
+  files/postinstall-en.txt:
+  Version bump (bug #511956) and fix possibly invalid chown, bug #468508
 
   20 Apr 2013; Fabian Groffen <[email protected]> +files/postinstall-en.txt,
   baikal-0.2.4.ebuild:



1.1                  www-apps/baikal/baikal-0.2.7.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/baikal/baikal-0.2.7.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/baikal/baikal-0.2.7.ebuild?rev=1.1&content-type=text/plain

Index: baikal-0.2.7.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/baikal/baikal-0.2.7.ebuild,v 1.1 
2014/06/06 18:37:10 grobian Exp $

EAPI="5"

inherit depend.php webapp

DESCRIPTION="Lightweight CalDAV+CardDAV server"
HOMEPAGE="http://baikal-server.com/";
SRC_URI="http://baikal-server.com/get/${PN}-regular-${PV}.tgz";

LICENSE="GPL-3"
KEYWORDS="~amd64"
IUSE="+mysql sqlite"
REQUIRED_USE="|| ( mysql sqlite )"

RDEPEND=">=dev-lang/php-5.3[pdo,xml,mysql?,sqlite?]
        mysql? ( virtual/mysql )
        sqlite? ( dev-db/sqlite )
        virtual/httpd-php"

need_php5
need_httpd

S=${WORKDIR}/${PN}-regular

src_install() {
        webapp_src_preinst

        dodoc-php *.md  || die "dodoc failed"

        einfo "Installing web files"
        insinto "${MY_HTDOCSDIR}"
        doins -r html/* html/.htaccess Core vendor || die "doins failed"

        einfo "Setting up container for configuration"
        insinto /etc/${PN}
        doins Specific/.htaccess || die "doins failed"

        einfo "Fixing symlinks"
        local link target
        find "${D}${MY_HTDOCSDIR}" -type l | while read link ; do
                target=$(readlink "${link}")
                target=${target/..\/Core/Core}
                rm "${link}" && ln -s "${target}" "${link}"
        done
        dosym /etc/${PN} "${MY_HTDOCSDIR}"/Specific
        dosym . "${MY_HTDOCSDIR}"/html

        webapp_postinst_txt en "${FILESDIR}/postinstall-en.txt"
        webapp_src_install

        if has_version www-servers/apache ; then
                fowners -R apache:apache /etc/${PN}
        else
                einfo "/etc/${PN} must be owned by the webserver user for 
baikal"
        fi
}




Reply via email to