summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Trygve Kalleberg <karltk@gentoo.org>2002-03-23 23:26:30 +0000
committerKarl Trygve Kalleberg <karltk@gentoo.org>2002-03-23 23:26:30 +0000
commit3fd34af67a9ce0faac721404cb6f0c3c12dde527 (patch)
tree7778a9130c6b02393522bf5feb4d097f114ee7bd /net-mail/teapop
parentFixed disable=no bug (diff)
downloadgentoo-2-3fd34af67a9ce0faac721404cb6f0c3c12dde527.tar.gz
gentoo-2-3fd34af67a9ce0faac721404cb6f0c3c12dde527.tar.bz2
gentoo-2-3fd34af67a9ce0faac721404cb6f0c3c12dde527.zip
Fixed #1321
Diffstat (limited to 'net-mail/teapop')
-rw-r--r--net-mail/teapop/ChangeLog10
-rw-r--r--net-mail/teapop/teapop-0.3.1.ebuild38
2 files changed, 9 insertions, 39 deletions
diff --git a/net-mail/teapop/ChangeLog b/net-mail/teapop/ChangeLog
index f4bc35965787..741fa64d2f5c 100644
--- a/net-mail/teapop/ChangeLog
+++ b/net-mail/teapop/ChangeLog
@@ -1,6 +1,14 @@
# ChangeLog for net-mail/teapop
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/net-mail/teapop/ChangeLog,v 1.1 2002/02/01 21:53:34 gbevin Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/teapop/ChangeLog,v 1.2 2002/03/23 23:26:30 karltk Exp $
+
+*teapop-0.3.3 (23 Mar 2002)
+
+ 23 Feb 2002; Karl Trygve Kalleberg <karltk@gentoo.org> files/tpop.xinetd teapop-0.3.3 :
+
+ The spurious /usr/etc dir has been removed, the xinetd file now starts
+ teapop properly if installed.
+
*teapop-0.3.1 (1 Feb 2002)
diff --git a/net-mail/teapop/teapop-0.3.1.ebuild b/net-mail/teapop/teapop-0.3.1.ebuild
deleted file mode 100644
index 0e8758f8c45d..000000000000
--- a/net-mail/teapop/teapop-0.3.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2000 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author Prakash Shetty (Crux) <ps@gnuos.org>
-# $Header: /var/cvsroot/gentoo-x86/net-mail/teapop/teapop-0.3.1.ebuild,v 1.4 2001/08/31 03:23:39 pm Exp $
-
-
-A=${P}.tar.gz
-S=${WORKDIR}/${P}
-DESCRIPTION="POP Server with support for Maildir,Virtual Domains,Multiple IP's etc"
-SRC_URI="ftp://ftp.toontown.org/pub/teapop/${A}"
-HOMEPAGE="http://www.toontown.org/teapop/"
-
-DEPEND=">=sys-libs/glibc-2.1.3"
-
-src_compile() {
-
- cd ${S}
- try ./configure --prefix=/usr --enable-lock=flock --disable-apop\
- --enable-homespool=Maildir
- try make
-
-}
-
-src_install () {
-
- cd ${S}
- try make DESTDIR=${D} install
- dodoc doc/CREDITS doc/ChangeLog doc/INSTALL
-}
-
-pkg_config() {
- echo "This config script will add tpop lines to your /etc/xinetd.conf."
- echo "Press control-C to abort, hit Enter to continue."
- echo
- read
- cat ${FILESDIR}/tpop.xinetd >> ${ROOT}etc/xinetd.conf
- echo "Modifications applied."
-}