diff options
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/teapop/ChangeLog | 6 | ||||
-rw-r--r-- | net-mail/teapop/teapop-0.3.8-r1.ebuild | 54 | ||||
-rw-r--r-- | net-mail/teapop/teapop-0.3.8.ebuild | 53 |
3 files changed, 5 insertions, 108 deletions
diff --git a/net-mail/teapop/ChangeLog b/net-mail/teapop/ChangeLog index 89076ce741dd..ecef5a0ad08e 100644 --- a/net-mail/teapop/ChangeLog +++ b/net-mail/teapop/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-mail/teapop # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/teapop/ChangeLog,v 1.27 2011/04/05 15:37:50 vostorga Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/teapop/ChangeLog,v 1.28 2011/07/21 16:22:42 eras Exp $ + + 21 Jul 2011; Eray Aslan <eras@gentoo.org> -teapop-0.3.8.ebuild, + -teapop-0.3.8-r1.ebuild: + remove net-mail/teapop from tree - bug #370171 05 Apr 2011; Víctor Ostorga <vostorga@gentoo.org> teapop-0.3.8-r1.ebuild: Fixing pre-stripped files bug 255911 thanks to Kevin Pyle, fixing minor QA issues diff --git a/net-mail/teapop/teapop-0.3.8-r1.ebuild b/net-mail/teapop/teapop-0.3.8-r1.ebuild deleted file mode 100644 index a9ef7d54dfdf..000000000000 --- a/net-mail/teapop/teapop-0.3.8-r1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/teapop/teapop-0.3.8-r1.ebuild,v 1.7 2011/04/05 15:37:50 vostorga Exp $ - -DESCRIPTION="Tiny POP3 server" -SRC_URI="ftp://ftp.toontown.org/pub/teapop/${P}.tar.gz" -HOMEPAGE="http://www.toontown.org/teapop/" -DEPEND="mysql? ( virtual/mysql ) - postgres? ( dev-db/postgresql-server ) - ldap? ( >=net-nds/openldap-2.0.25 ) - tcpd? ( sys-apps/tcp-wrappers ) - java? ( virtual/jre )" -IUSE="mysql postgres ldap ipv6 tcpd java virtual" -SLOT="0" -LICENSE="as-is" -KEYWORDS="~x86 ~sparc ~ppc" - -src_compile() { - local myconf - use mysql && myconf="${myconf} --with-mysql=/usr" - use postgres && myconf="${myconf} --with-pgsql=/usr" - use ldap && myconf="${myconf} --with-ldap=openldap" - use java && myconf="${myconf} --with-java=${JAVA_HOME}" - use virtual || myconf="${myconf} --disable-vpop" - - econf \ - --enable-lock=flock,dotlock \ - --enable-homespool=mail \ - --enable-mailspool=/var/spool/mail \ - --enable-apop \ - $( use_enable ipv6 ) \ - $( use_with tcpd ) \ - ${myconf} || die "./configure failed" - emake || die -} - -src_install () { - make DESTDIR="${D}" STRIP=nostrip install || die - - dodir /usr/sbin - mv "${D}"/usr/libexec/teapop "${D}"/usr/sbin/ - - dodoc doc/{CREDITS,ChangeLog,INSTALL,TODO} - - docinto contrib - dodoc contrib/{README,popauther3.pl,teapop+exim.txt} - dohtml contrib/*.html - - docinto rfc - dodoc rfc/rfc*.txt - - newinitd "${FILESDIR}"/teapop-init teapop - newconfd "${FILESDIR}"/teapop-confd teapop -} diff --git a/net-mail/teapop/teapop-0.3.8.ebuild b/net-mail/teapop/teapop-0.3.8.ebuild deleted file mode 100644 index 145f8e75f455..000000000000 --- a/net-mail/teapop/teapop-0.3.8.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/teapop/teapop-0.3.8.ebuild,v 1.11 2010/06/17 21:55:22 patrick Exp $ - -DESCRIPTION="Tiny POP3 server" -SRC_URI="ftp://ftp.toontown.org/pub/teapop/${P}.tar.gz" -HOMEPAGE="http://www.toontown.org/teapop/" -DEPEND="mysql? ( virtual/mysql ) - postgres? ( dev-db/postgresql-server ) - ldap? ( >=net-nds/openldap-2.0.25 ) - tcpd? ( sys-apps/tcp-wrappers ) - java? ( virtual/jre )" -IUSE="mysql postgres ldap ipv6 tcpd java" -SLOT="0" -LICENSE="as-is" -KEYWORDS="x86 sparc ~ppc" - -src_compile() { - local myconf - use mysql && myconf="${myconf} --with-mysql=/usr" - use postgres && myconf="${myconf} --with-pgsql=/usr" - use ldap && myconf="${myconf} --with-ldap=openldap" - use java && myconf="${myconf} --with-java=${JAVA_HOME}" - - econf \ - --enable-lock=flock,dotlock \ - --enable-homespool=mail \ - --enable-mailspool=/var/spool/mail \ - --enable-apop \ - $( use_enable ipv6 ) \ - $( use_with tcpd ) \ - ${myconf} || die "./configure failed" - emake || die -} - -src_install () { - make DESTDIR=${D} install || die - - dodir /usr/sbin - mv ${D}/usr/libexec/teapop ${D}/usr/sbin/ - - dodoc doc/{CREDITS,ChangeLog,INSTALL,TODO} - - docinto contrib - dodoc contrib/{README,popauther3.pl,teapop+exim.txt} - dohtml contrib/*.html - - docinto rfc - dodoc rfc/rfc*.txt - - newinitd ${FILESDIR}/teapop-init teapop - newconfd ${FILESDIR}/teapop-confd teapop -} |