diff options
author | Jon Portnoy <avenj@gentoo.org> | 2003-03-27 01:30:00 +0000 |
---|---|---|
committer | Jon Portnoy <avenj@gentoo.org> | 2003-03-27 01:30:00 +0000 |
commit | ee2482e80fa761238086fd94099ec5cd3ed07445 (patch) | |
tree | e4b6fc3ed5aa0b9a90964d4ee35303b45620d1a5 /net-mail/mailutils | |
parent | bump version to close bug 18176 (diff) | |
download | gentoo-2-ee2482e80fa761238086fd94099ec5cd3ed07445.tar.gz gentoo-2-ee2482e80fa761238086fd94099ec5cd3ed07445.tar.bz2 gentoo-2-ee2482e80fa761238086fd94099ec5cd3ed07445.zip |
Initial import of GNU mailutils
Diffstat (limited to 'net-mail/mailutils')
-rw-r--r-- | net-mail/mailutils/ChangeLog | 11 | ||||
-rw-r--r-- | net-mail/mailutils/files/digest-mailutils-0.3 | 1 | ||||
-rw-r--r-- | net-mail/mailutils/mailutils-0.3.ebuild | 46 |
3 files changed, 58 insertions, 0 deletions
diff --git a/net-mail/mailutils/ChangeLog b/net-mail/mailutils/ChangeLog new file mode 100644 index 000000000000..8ddd7b24b0a5 --- /dev/null +++ b/net-mail/mailutils/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for net-mail/mailutils +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/ChangeLog,v 1.1 2003/03/27 01:30:00 avenj Exp $ + +*mailutils-0.3 (26 Mar 2003) + + 26 Mar 2003; Jon Portnoy <avenj@gentoo.org> mailutils-0.3.ebuild, + digest-mailutils-0.3 : + Initial import of GNU mailutils, a suite of mail-related tools + including POP3 and IMAP servers, parsing tools, and a mailx + replacement. diff --git a/net-mail/mailutils/files/digest-mailutils-0.3 b/net-mail/mailutils/files/digest-mailutils-0.3 new file mode 100644 index 000000000000..ee112e282283 --- /dev/null +++ b/net-mail/mailutils/files/digest-mailutils-0.3 @@ -0,0 +1 @@ +MD5 aee94ecf176fb6cc9ab5532a2864a1c1 mailutils-0.3.tar.bz2 1698841 diff --git a/net-mail/mailutils/mailutils-0.3.ebuild b/net-mail/mailutils/mailutils-0.3.ebuild new file mode 100644 index 000000000000..d4000ad92376 --- /dev/null +++ b/net-mail/mailutils/mailutils-0.3.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/mailutils-0.3.ebuild,v 1.1 2003/03/27 01:30:00 avenj Exp $ + +DESCRIPTION="A useful collection of mail servers, clients, and filters." +HOMEPAGE="http://www.gnu.org/software/mailutils/mailutils.html" +SRC_URI="http://ftp.gnu.org/gnu/mailutils/${P}.tar.bz2" +LICENSE="GPL-2 LGPL-2.1" +SLOT="0" +KEYWORDS="~x86 ~ppc" +IUSE="nls pam mysql gdbm" +DEPEND="!net-mail/mailx + !net-mail/nmh + dev-util/guile + gdbm? ( sys-libs/gdbm ) + mysql? ( dev-db/mysql ) + nls? ( sys-devel/gettext )" + +S=${WORKDIR}/${P} + +src_compile() { + + use nls || myconf="${myconf} --disable-nls" + + use pam || myconf="${myconf} --disable-pam" + + use mysql && myconf="${myconf} --enable-mysql" + + use gdbm && myconf="${myconf} --with-gdbm" + + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --infodir=/usr/share/info \ + --sharedstatedir=/var \ + --mandir=/usr/share/man \ + --disable-sendmail \ + ${myconf} || die "./configure failed" + emake || die +} + +src_install() { + make DESTDIR=${D} install || die +} |