summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Fitzgerald <gregf@gentoo.org>2003-11-27 02:11:32 +0000
committerGreg Fitzgerald <gregf@gentoo.org>2003-11-27 02:11:32 +0000
commit27508fef8f1f66afdce13b1687b6d323f27033c0 (patch)
treee6b1187d43278a01aa8b48b67bfaca6f0ec47415 /net-mail/tpop3d
parentbump to _beta11 (diff)
downloadhistorical-27508fef8f1f66afdce13b1687b6d323f27033c0.tar.gz
historical-27508fef8f1f66afdce13b1687b6d323f27033c0.tar.bz2
historical-27508fef8f1f66afdce13b1687b6d323f27033c0.zip
Removed, missing file(s) + bugs
Diffstat (limited to 'net-mail/tpop3d')
-rw-r--r--net-mail/tpop3d/tpop3d-1.5.2.ebuild84
1 files changed, 0 insertions, 84 deletions
diff --git a/net-mail/tpop3d/tpop3d-1.5.2.ebuild b/net-mail/tpop3d/tpop3d-1.5.2.ebuild
deleted file mode 100644
index edbf3eb1da6b..000000000000
--- a/net-mail/tpop3d/tpop3d-1.5.2.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/tpop3d/tpop3d-1.5.2.ebuild,v 1.1 2003/11/20 01:01:02 gregf Exp $
-
-DESCRIPTION="An extensible POP3 server with vmail-sql/MySQL support."
-HOMEPAGE="http://www.ex-parrot.com/~chris/tpop3d/"
-SRC_URI="http://www.ex-parrot.com/~chris/tpop3d/${P}.tar.gz
- ftp://callagur.burningturtle.com/pub/ebuilds/tpop3d/tpop3d-1.5.2-fix-AV-problem.patch"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86"
-IUSE="ssl ldap mysql perl pam tcpd maildir debug"
-
-DEPEND="virtual/glibc
- ssl? ( >=dev-libs/openssl-0.9.6 )
- ldap? ( >=net-nds/openldap-2.0.7 )
- mysql? ( >=dev-db/mysql-3.23.28 )
- perl? ( >=dev-lang/perl-5.6.1 )
- pam? ( >=sys-libs/pam-0.75 )
- tcpd? ( >=sys-apps/tcp-wrappers-7.6 )"
-
-src_unpack() {
- unpack ${P}.tar.gz
- cd ${S}
- epatch ${DISTDIR}/${P}-fix-AV-problem.patch
-}
-
-src_compile() {
- local myconf
- use mysql && myconf="--enable-auth-mysql"
- use ldap && myconf="${myconf} --enable-auth-ldap"
- use perl && myconf="${myconf} --enable-auth-perl"
- use tcpd && myconf="${myconf} --enable-tcp-wrappers"
- use pam || myconf="${myconf} --disable-auth-pam"
- use maildir && myconf="${myconf} --enable-mbox-maildir"
- # If you want plaintext /etc/passwd authentication
- if [ ! -z $ENABLE_PASSWD ]; then
- myconf="${myconf} --enable-auth-passwd"
- fi
- # If you want to use /etc/shadow instead.
- # Make sure you also set $ENABLE_PASSWD
- if [ ! -z $ENABLE_SHADOW ]; then
- myconf="${myconf} --enable-shadow-passwords"
- fi
- # authenticate against any passwd-like file
- if [ ! -z $ENABLE_FLATFILE ]; then
- myconf="${myconf} --enable-auth-flatfile"
- fi
- # authenticate via an external program
- if [ ! -z $ENABLE_OTHER ]; then
- myconf="${myconf} --enable-auth-other"
- fi
- # Make it Rated G and safe for the kids
- if [ ! -z $BE_NICE ]; then
- myconf="${myconf} --disable-snide-comments"
- fi
- # Install net-mail/drac for integration with tpop3d
- if [ ! -a $ENABLE_DRAC ]; then
- myconf="${myconf} --enable-drac"
- fi
- if [ `use debug` ]; then
- myconf="${myconf} --enable-electric-fence --enable-backtrace"
- fi
- econf ${myconf} || die "./configure failed"
-
- # Add in custom CFLAGS to the makefile...
- sed -i "s/CFLAGS =/CFLAGS = ${CFLAGS} /" Makefile
-
- emake || die
-}
-
-src_install() {
- make DESTDIR=${D} install || die
- dodir /etc/tpop3d
-
- exeinto /etc/init.d
- newexe ${FILESDIR}/tpop3d-init
-}
-
-pkg_postinst() {
- einfo "Read the tpop3d.conf manpage"
- einfo "Please create /etc/tpop3d/tpop3d.conf to fit your Configuration"
-}