diff options
Diffstat (limited to 'net-mail/teapop/teapop-0.3.5.ebuild')
-rw-r--r-- | net-mail/teapop/teapop-0.3.5.ebuild | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/net-mail/teapop/teapop-0.3.5.ebuild b/net-mail/teapop/teapop-0.3.5.ebuild deleted file mode 100644 index 65fabf676e6f..000000000000 --- a/net-mail/teapop/teapop-0.3.5.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/teapop/teapop-0.3.5.ebuild,v 1.12 2006/11/23 16:10:40 vivo Exp $ - -DESCRIPTION="Tiny POP3 server" -SRC_URI="ftp://ftp.toontown.org/pub/teapop/${P}.tar.gz" -HOMEPAGE="http://www.toontown.org/teapop/" -DEPEND="virtual/libc - mysql? ( virtual/mysql ) - postgres? ( >=dev-db/postgresql-7.0 ) - ldap? ( >=net-nds/openldap-2.0.25 )" -IUSE="mysql postgres ldap" -SLOT="0" -LICENSE="as-is" -KEYWORDS="x86 ~sparc" - -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" - econf \ - --enable-lock=flock,dotlock \ - --enable-homespool=mail \ - --enable-mailspool=/var/spool/mail \ - --enable-apop \ - ${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 - - exeinto /etc/init.d - newexe ${FILESDIR}/teapop-init teapop - - insinto /etc/conf.d - newins ${FILESDIR}/teapop-confd teapop -} |