diff options
author | Andrej Kacian <ticho@gentoo.org> | 2007-07-05 19:05:18 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2007-07-05 19:05:18 +0000 |
commit | 73ef93709333357ac3c4c2f79a1d9a47465940cb (patch) | |
tree | 0d91f71ed6ab4dc0ca21d73d4f6fc9e1dd42ae5d /mail-filter | |
parent | Add new nvidia-driver eclass for determining nVidia card models that match dr... (diff) | |
download | gentoo-2-73ef93709333357ac3c4c2f79a1d9a47465940cb.tar.gz gentoo-2-73ef93709333357ac3c4c2f79a1d9a47465940cb.tar.bz2 gentoo-2-73ef93709333357ac3c4c2f79a1d9a47465940cb.zip |
Version bump, bug #183952.
(Portage version: 2.1.3_rc4)
Diffstat (limited to 'mail-filter')
-rw-r--r-- | mail-filter/amavisd-new/ChangeLog | 7 | ||||
-rw-r--r-- | mail-filter/amavisd-new/amavisd-new-2.5.2.ebuild | 183 | ||||
-rw-r--r-- | mail-filter/amavisd-new/files/digest-amavisd-new-2.5.2 | 3 |
3 files changed, 192 insertions, 1 deletions
diff --git a/mail-filter/amavisd-new/ChangeLog b/mail-filter/amavisd-new/ChangeLog index 483d5eecc3ba..aa2055a0f8a0 100644 --- a/mail-filter/amavisd-new/ChangeLog +++ b/mail-filter/amavisd-new/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for mail-filter/amavisd-new # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-filter/amavisd-new/ChangeLog,v 1.110 2007/06/18 16:03:06 ticho Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-filter/amavisd-new/ChangeLog,v 1.111 2007/07/05 19:05:18 ticho Exp $ + +*amavisd-new-2.5.2 (05 Jul 2007) + + 05 Jul 2007; Andrej Kacian <ticho@gentoo.org> +amavisd-new-2.5.2.ebuild: + Version bump, bug #183952. *amavisd-new-2.5.1 (18 Jun 2007) diff --git a/mail-filter/amavisd-new/amavisd-new-2.5.2.ebuild b/mail-filter/amavisd-new/amavisd-new-2.5.2.ebuild new file mode 100644 index 000000000000..875372e68b1d --- /dev/null +++ b/mail-filter/amavisd-new/amavisd-new-2.5.2.ebuild @@ -0,0 +1,183 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/mail-filter/amavisd-new/amavisd-new-2.5.2.ebuild,v 1.1 2007/07/05 19:05:18 ticho Exp $ + +inherit eutils + +DESCRIPTION="High-performance interface between the MTA and content checkers." +HOMEPAGE="http://www.ijs.si/software/amavisd/" +SRC_URI="http://www.ijs.si/software/amavisd/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="courier ldap milter mysql postgres qmail" + +DEPEND=">=sys-apps/sed-4 + >=dev-lang/perl-5.8.2" + +RDEPEND="${DEPEND} + >=sys-apps/coreutils-5.0-r3 + app-arch/gzip + app-arch/bzip2 + app-arch/arc + app-arch/cabextract + app-arch/freeze + app-arch/lha + app-arch/unarj + app-arch/unrar + app-arch/zoo + >=dev-perl/Archive-Zip-1.14 + >=dev-perl/Compress-Zlib-1.35 + dev-perl/Convert-TNEF + >=dev-perl/Convert-UUlib-1.08 + virtual/perl-MIME-Base64 + >=dev-perl/MIME-tools-5.415 + >=dev-perl/MailTools-1.58 + >=dev-perl/net-server-0.91 + virtual/perl-Digest-MD5 + dev-perl/IO-stringy + >=virtual/perl-Time-HiRes-1.49 + dev-perl/Unix-Syslog + >=sys-libs/db-3.2 + dev-perl/BerkeleyDB + virtual/mta + ldap? ( >=dev-perl/perl-ldap-0.33 ) + mysql? ( dev-perl/DBD-mysql ) + postgres? ( dev-perl/DBD-Pg ) + milter? ( || ( >=mail-mta/sendmail-8.12 mail-filter/libmilter ) )" + +AMAVIS_ROOT="/var/amavis" + +src_unpack() { + unpack ${A} + cd "${S}" + + if use courier ; then + elog "Patching with courier support." + epatch amavisd-new-courier.patch + fi + + if use qmail ; then + elog "Patching with qmail qmqp support." + epatch amavisd-new-qmqpqq.patch + fi + + epatch "${FILESDIR}/${PN}-2.4.4-amavisd.conf-gentoo.patch" +} + +src_compile() { + if use milter ; then + cd "${S}/helper-progs" + + econf --with-runtime-dir=${AMAVIS_ROOT} \ + --with-sockname=${AMAVIS_ROOT}/amavisd.sock \ + --with-user=amavis || die "helper-progs econf failed" + emake || die "helper-progs compile problem" + + cd "${S}" + fi +} + +src_install() { + dosbin amavisd amavisd-agent amavisd-nanny amavisd-release + dobin p0f-analyzer.pl + + insinto /etc + insopts -m0640 + newins amavisd.conf-sample amavisd.conf + + dosed "s:^#\\?\\\$MYHOME[^;]*;:\$MYHOME = '$AMAVIS_ROOT';:" \ + /etc/amavisd.conf + + newinitd "${FILESDIR}/amavisd.rc6" amavisd + dosed "s:/var/run/amavis/:$AMAVIS_ROOT/:g" /etc/init.d/amavisd + + keepdir ${AMAVIS_ROOT} + keepdir ${AMAVIS_ROOT}/db + keepdir ${AMAVIS_ROOT}/quarantine + keepdir ${AMAVIS_ROOT}/tmp + + newdoc test-messages/README README.samples + dodoc AAAREADME.first INSTALL MANIFEST RELEASE_NOTES README_FILES/README.* \ + test-messages/sample* amavisd.conf-default amavisd-agent \ + amavisd-custom.conf + + dodir /usr/share/doc/${PF}/html + insinto /usr/share/doc/${PF}/html + doins README_FILES/*.{html,css} + dodir /usr/share/doc/${PF}/html/images + insinto /usr/share/doc/${PF}/html/images + doins README_FILES/images/* + + if use milter ; then + cd "${S}/helper-progs" + einstall + cd "${S}" + fi + + for i in whitelist blacklist spam_lovers; do + if [ -f ${AMAVIS_ROOT}/${i} ]; then + cp "${AMAVIS_ROOT}/${i}" "${D}/${AMAVIS_ROOT}" + else + touch ${D}/${AMAVIS_ROOT}/${i} + fi + done + + if use ldap ; then + elog "Adding ${P} schema to openldap schema dir." + dodir /etc/openldap/schema + insinto /etc/openldap/schema + insopts -o root -g root -m 644 + newins LDAP.schema ${PN}.schema || die + newins LDAP.schema ${PN}.schema.default || die + fi + + find ${D}/${AMAVIS_ROOT} -name "*" -type d -exec chmod 0750 \{\} \; + find ${D}/${AMAVIS_ROOT} -name "*" -type f -exec chmod 0640 \{\} \; +} + +pkg_preinst() { + enewgroup amavis + enewuser amavis -1 -1 ${AMAVIS_ROOT} amavis + + if [ -z "$(dnsdomainname)" ] ; then + dosed "s:^#\\?\\\$mydomain[^;]*;:\$mydomain = '$(hostname)';:" \ + /etc/amavisd.conf + else + dosed "s:^#\\?\\\$mydomain[^;]*;:\$mydomain = '$(dnsdomainname)';:" \ + /etc/amavisd.conf + fi + + if has_version mail-filter/razor ; then + if [ ! -d ${AMAVIS_ROOT}/.razor ] ; then + elog "Setting up initial razor config files..." + + razor-admin -create -home=${D}/${AMAVIS_ROOT}/.razor + sed -i -e "s:debuglevel\([ ]*\)= .:debuglevel\1= 0:g" \ + ${D}/${AMAVIS_ROOT}/.razor/razor-agent.conf + fi + fi +} + +pkg_postinst() { + if ! has_version mail-filter/spamassassin ; then + echo + elog "Amavisd-new no longer requires SpamAssassin, but no anti-spam checking" + elog "will be performed without it. Since you do not have SpamAssassin installed," + elog "all spam checks have been disabled. To enable them, install SpamAssassin" + elog "and comment out the line containing: " + elog "@bypass_spam_checks_maps = (1); in /etc/amavisd.conf." + fi + echo + ewarn "As of amavisd-new-2.4.5 p0f-analyzer.pl only binds to the loopback interface" + ewarn "by default instead of to all interfaces. You will need to change $bind_addr" + ewarn "in p0f-analyzer.pl to '0.0.0.0' if p0f-analyzer.pl is running on a different" + ewarn "host from amavisd or from other querying clients." + echo + ewarn "Adjusting permissions for /etc/amavisd.conf (0 for world, owner root:amavis)" + echo + chmod o-rwx /etc/amavisd.conf + chown root:amavis /etc/amavisd.conf + chown -R amavis:amavis ${AMAVIS_ROOT} +} diff --git a/mail-filter/amavisd-new/files/digest-amavisd-new-2.5.2 b/mail-filter/amavisd-new/files/digest-amavisd-new-2.5.2 new file mode 100644 index 000000000000..3f3002cad356 --- /dev/null +++ b/mail-filter/amavisd-new/files/digest-amavisd-new-2.5.2 @@ -0,0 +1,3 @@ +MD5 52d227d442fac64916488b83d79806d7 amavisd-new-2.5.2.tar.gz 788546 +RMD160 b7bc998ac34428b62cf74e1c114b295a9f322652 amavisd-new-2.5.2.tar.gz 788546 +SHA256 5f590850c505017c2633f47ced483aae23ec857e2a782f763eb16f9f9f3fceef amavisd-new-2.5.2.tar.gz 788546 |