diff options
author | 2002-01-03 09:54:56 +0000 | |
---|---|---|
committer | 2002-01-03 09:54:56 +0000 | |
commit | 4b1790bae4cf3a9954426d8c9db97f1a81877fd7 (patch) | |
tree | 821625209eb57c0485e5998613b72d2278458113 /net-mail/teapop | |
parent | updated to latest, security fix release, removed 2.2.5.3 which was the versio... (diff) | |
download | historical-4b1790bae4cf3a9954426d8c9db97f1a81877fd7.tar.gz historical-4b1790bae4cf3a9954426d8c9db97f1a81877fd7.tar.bz2 historical-4b1790bae4cf3a9954426d8c9db97f1a81877fd7.zip |
New teapop ebuild, untested
Diffstat (limited to 'net-mail/teapop')
-rw-r--r-- | net-mail/teapop/teapop-0.3.3.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/net-mail/teapop/teapop-0.3.3.ebuild b/net-mail/teapop/teapop-0.3.3.ebuild new file mode 100644 index 000000000000..882c91a19b8d --- /dev/null +++ b/net-mail/teapop/teapop-0.3.3.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: System Team <system@gentoo.org> +# Author: Karl Trygve Kalleberg <karltk@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-mail/teapop/teapop-0.3.3.ebuild,v 1.1 2002/01/03 09:54:56 karltk Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Tiny POP3 server" +SRC_URI="ftp://ftp.toontown.org/pub/teapop/teapop-0.3.3.tar.gz" +HOMEPAGE="http://www.toontown.org/teapop/" +DEPEND="" +#RDEPEND="" + +src_compile() { + local myconf + use mysql && myconf="$myconf --enable-mysql" + use postgres && myconf="$myconf --enable-pgsql" + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --enable-lock=flock,dotlock \ + --enable-homespool=mail \ + --enable-mailsppol=/var/spool/mail \ + --mandir=/usr/share/man \ + --enable-apop \ + $myconf || die "./configure failed" + emake || die +} + +src_install () { + make \ + prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + install || die + + dodir /etc/teapop + mv ${D}/usr/etc/teapop.passwd ${D}/etc/teapop/ + + 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,virtualmail.html} + + docinto rfc + dodoc rfc/rfc*.txt +} |