* [gentoo-commits] gentoo-x86 commit in www-apps/postfixadmin: ChangeLog postfixadmin-2.3.4.ebuild
@ 2011-10-19 10:53 Peter Volkov (pva)
0 siblings, 0 replies; only message in thread
From: Peter Volkov (pva) @ 2011-10-19 10:53 UTC (permalink / raw
To: gentoo-commits
pva 11/10/19 10:53:57
Modified: ChangeLog
Added: postfixadmin-2.3.4.ebuild
Log:
Version bump, bug #387037 wrt Per Pomsel
(Portage version: 2.1.10.27/cvs/Linux x86_64)
Revision Changes Path
1.23 www-apps/postfixadmin/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/ChangeLog?r1=1.22&r2=1.23
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/postfixadmin/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog 30 Apr 2011 19:17:21 -0000 1.22
+++ ChangeLog 19 Oct 2011 10:53:57 -0000 1.23
@@ -1,6 +1,11 @@
# ChangeLog for www-apps/postfixadmin
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/postfixadmin/ChangeLog,v 1.22 2011/04/30 19:17:21 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/postfixadmin/ChangeLog,v 1.23 2011/10/19 10:53:57 pva Exp $
+
+*postfixadmin-2.3.4 (19 Oct 2011)
+
+ 19 Oct 2011; Peter Volkov <pva@gentoo.org> +postfixadmin-2.3.4.ebuild:
+ Version bump, bug #387037 wrt Per Pomsel
*postfixadmin-2.3.3 (30 Apr 2011)
1.1 www-apps/postfixadmin/postfixadmin-2.3.4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/postfixadmin-2.3.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/postfixadmin/postfixadmin-2.3.4.ebuild?rev=1.1&content-type=text/plain
Index: postfixadmin-2.3.4.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/postfixadmin/postfixadmin-2.3.4.ebuild,v 1.1 2011/10/19 10:53:57 pva Exp $
EAPI="2"
inherit eutils webapp depend.php confutils
DESCRIPTION="Web Based Management tool for Postfix style virtual domains and users."
HOMEPAGE="http://postfixadmin.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${PN}/${P}/${PN}_${PV}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
IUSE="mysql postgres +vacation xmlrpc"
DEPEND="vacation? ( dev-perl/DBI
virtual/perl-MIME-Base64
dev-perl/MIME-EncWords
dev-perl/Email-Valid
dev-perl/Mail-Sender
dev-perl/log-dispatch
dev-perl/Log-Log4perl
dev-perl/MIME-Charset
mysql? ( dev-perl/DBD-mysql )
postgres? ( dev-perl/DBD-Pg ) )
xmlrpc? ( dev-php/ZendFramework[-minimal] )
dev-lang/php[session,unicode,imap,postgres?,xmlrpc?]"
RDEPEND="${DEPEND}"
need_httpd_cgi
need_php_httpd
pkg_setup() {
webapp_pkg_setup
confutils_require_any mysql postgres
if use mysql && ! PHPCHECKNODIE="yes" require_php_with_any_use mysql mysqli; then
die "Re-install ${PHP_PKG} with either mysql or mysqli"
fi
if use vacation; then
enewgroup vacation
enewuser vacation -1 -1 -1 vacation
fi
}
src_install() {
webapp_src_preinst
if use vacation; then
insinto /var/spool/vacation
newins VIRTUAL_VACATION/vacation.pl vacation.pl-${SLOT}
fowners vacation:vacation /var/spool/vacation/vacation.pl-${SLOT}
fperms 770 /var/spool/vacation/vacation.pl-${SLOT}
dodoc VIRTUAL_VACATION/FILTER_README
newdoc VIRTUAL_VACATION/INSTALL.TXT VIRTUAL_VACATION_INSTALL.TXT
rm -r VIRTUAL_VACATION/{vacation.pl,INSTALL.TXT,tests,FILTER_README}
fi
insinto /usr/share/doc/${PF}/
doins -r ADDITIONS
local docs="DOCUMENTS/*.txt INSTALL.TXT CHANGELOG.TXT"
dodoc ${docs}
rm -rf ${docs} DOCUMENTS/ GPL-LICENSE.TXT LICENSE.TXT debian/ tests/ ADDITIONS/
insinto "${MY_HTDOCSDIR}"
doins -r .
webapp_configfile "${MY_HTDOCSDIR}"/config.inc.php
webapp_postinst_txt en "${FILESDIR}"/postinstall-en-2.3.txt
webapp_src_install
}
pkg_postinst() {
webapp_pkg_postinst
if use vacation; then
# portage does not update owners of directories (feature :)
chown vacation:vacation "${ROOT}"/var/spool/vacation/
einfo "/var/spool/vacation/vacation.pl symlink was updated to:"
einfo "/var/spool/vacation/vacation.pl-${SLOT}"
ln -sf "${ROOT}"/var/spool/vacation/vacation.pl{-${SLOT},}
fi
}
pkg_postrm() {
# Make sure we don't leave broken vacation.pl symlink
find -L "${ROOT}"/var/spool/vacation/ -type l -delete
if [[ ! -e "${ROOT}"/var/spool/vacation/vacation.pl ]] &&
path_exists "${ROOT}"/var/spool/vacation/vacation.pl-*; then
ln -s $(LC_ALL=C ls -1 /var/spool/vacation/vacation.pl-* | tail -n1) \
"${ROOT}"/var/spool/vacation/vacation.pl
ewarn "/var/spool/vacation/vacation.pl was updated to point on most"
ewarn "recent verion, but please, do your own checks"
fi
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2011-10-19 10:54 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-19 10:53 [gentoo-commits] gentoo-x86 commit in www-apps/postfixadmin: ChangeLog postfixadmin-2.3.4.ebuild Peter Volkov (pva)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox