diff options
author | Eray Aslan <eras@gentoo.org> | 2012-11-27 20:24:00 +0000 |
---|---|---|
committer | Eray Aslan <eras@gentoo.org> | 2012-11-27 20:24:00 +0000 |
commit | 94b376a79ea2b2a3dc748342620f9b0d51ef1e9f (patch) | |
tree | 5d7ae50df68d11d4abfb120174c0e0534d48504f /mail-filter/gld | |
parent | Fix dependency on libevent[ssl] when USE=bufferevents, bug #444954 (diff) | |
download | gentoo-2-94b376a79ea2b2a3dc748342620f9b0d51ef1e9f.tar.gz gentoo-2-94b376a79ea2b2a3dc748342620f9b0d51ef1e9f.tar.bz2 gentoo-2-94b376a79ea2b2a3dc748342620f9b0d51ef1e9f.zip |
Remove old
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 0x77F1F175586A3B1F)
Diffstat (limited to 'mail-filter/gld')
-rw-r--r-- | mail-filter/gld/ChangeLog | 5 | ||||
-rw-r--r-- | mail-filter/gld/gld-1.7-r1.ebuild | 69 |
2 files changed, 4 insertions, 70 deletions
diff --git a/mail-filter/gld/ChangeLog b/mail-filter/gld/ChangeLog index 7487d8011955..b6a6f3fc74a0 100644 --- a/mail-filter/gld/ChangeLog +++ b/mail-filter/gld/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for mail-filter/gld # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-filter/gld/ChangeLog,v 1.52 2012/11/20 19:53:05 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-filter/gld/ChangeLog,v 1.53 2012/11/27 20:24:00 eras Exp $ + + 27 Nov 2012; Eray Aslan <eras@gentoo.org> -gld-1.7-r1.ebuild: + Remove old 20 Nov 2012; Agostino Sarubbo <ago@gentoo.org> gld-1.7-r2.ebuild: Stable for x86, wrt bug #441348 diff --git a/mail-filter/gld/gld-1.7-r1.ebuild b/mail-filter/gld/gld-1.7-r1.ebuild deleted file mode 100644 index c2653cb0c533..000000000000 --- a/mail-filter/gld/gld-1.7-r1.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-filter/gld/gld-1.7-r1.ebuild,v 1.4 2011/06/22 21:35:10 ranger Exp $ - -EAPI="2" - -inherit toolchain-funcs - -DESCRIPTION="A standalone anti-spam greylisting algorithm on top of Postfix" -HOMEPAGE="http://www.gasmi.net/gld.html" -SRC_URI="http://www.gasmi.net/down/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="postgres" -# Not adding a mysql USE flag. The package defaults to it, so we will too. -DEPEND="sys-libs/zlib - >=dev-libs/openssl-0.9.6 - postgres? ( dev-db/postgresql-server ) - !postgres? ( virtual/mysql )" - -src_prepare() { - sed -i gld.conf \ - -e 's:^LOOPBACKONLY=.*:LOOPBACKONLY=1:' \ - -e 's:^#USER=.*:USER=nobody:' \ - -e 's:^#GROUP=.*:GROUP=nobody:' \ - || die "sed gld.conf failed" - - sed -i Makefile.in \ - -e '/ -c /{s|-O2|$(CFLAGS)|g}' \ - -e '/ -o /{s|-O2|$(CFLAGS) $(LDFLAGS)|g}' \ - -e '/strip/d' \ - || die "sed Makefile.in failed" -} - -src_configure() { - tc-export CC - # It's kind of weird. $(use_with postgres pgsql) won't work if you don't - # use it... - if use postgres ; then - myconf="${myconf} --with-pgsql" - fi - - econf ${myconf} || die "econf failed" -} - -src_install() { - dobin gld - - insinto /etc - newins gld.conf gld.conf.example - - dodoc HISTORY README* - - insinto /usr/share/${PN}/sql - doins *.pgsql *-whitelist.sql "${FILESDIR}"/tables.sql - - newinitd "${FILESDIR}"/gld.rc gld -} - -pkg_postinst() { - elog - elog "Please read the README file in /usr/share/doc/${PF} for" - elog "details on how to setup gld." - elog - elog "The sql files have been installed to /usr/share/${PN}/sql." - elog -} |