diff options
author | 2003-02-17 14:22:12 +0000 | |
---|---|---|
committer | 2003-02-17 14:22:12 +0000 | |
commit | 5795d13446875edfabd911176b3a1d8c6d6d5e66 (patch) | |
tree | c3d1cac4664db0c71426cb37655224d798ae6d79 /net-mail | |
parent | dep fix (diff) | |
download | gentoo-2-5795d13446875edfabd911176b3a1d8c6d6d5e66.tar.gz gentoo-2-5795d13446875edfabd911176b3a1d8c6d6d5e66.tar.bz2 gentoo-2-5795d13446875edfabd911176b3a1d8c6d6d5e66.zip |
Security update
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/xfmail/ChangeLog | 7 | ||||
-rw-r--r-- | net-mail/xfmail/files/digest-xfmail-1.5.4-r1 | 1 | ||||
-rw-r--r-- | net-mail/xfmail/xfmail-1.5.4-r1.ebuild | 37 |
3 files changed, 44 insertions, 1 deletions
diff --git a/net-mail/xfmail/ChangeLog b/net-mail/xfmail/ChangeLog index 8be0d2b4e57f..50ad3b624e7e 100644 --- a/net-mail/xfmail/ChangeLog +++ b/net-mail/xfmail/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-mail/xfmail # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/xfmail/ChangeLog,v 1.5 2003/02/13 09:31:05 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/xfmail/ChangeLog,v 1.6 2003/02/17 14:21:58 aliz Exp $ + +*xfmail-1.5.4-r1 (17 Feb 2003) + + 17 Feb 2003; Daniel Ahlberg <aliz@gentoo.org> : + Security update. *xfmail-1.5.4 (13 Feb 2003) diff --git a/net-mail/xfmail/files/digest-xfmail-1.5.4-r1 b/net-mail/xfmail/files/digest-xfmail-1.5.4-r1 new file mode 100644 index 000000000000..05cf99530a62 --- /dev/null +++ b/net-mail/xfmail/files/digest-xfmail-1.5.4-r1 @@ -0,0 +1 @@ +MD5 d8367ef0294a71f98f1d6d29b7b5551f xfmail-1.5.4-1.tar.bz2 806380 diff --git a/net-mail/xfmail/xfmail-1.5.4-r1.ebuild b/net-mail/xfmail/xfmail-1.5.4-r1.ebuild new file mode 100644 index 000000000000..cf2e0640e01e --- /dev/null +++ b/net-mail/xfmail/xfmail-1.5.4-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/net-mail/xfmail/xfmail-1.5.4-r1.ebuild,v 1.1 2003/02/17 14:21:58 aliz Exp $ + +IUSE="ldap" +S=${WORKDIR}/${P} +DESCRIPTION="A full-featured mail program using XForms" +SRC_URI="http://xfmail.precision-eng.net/release/${PV}/source/${P}-1.tar.bz2 + http://xfmail.cfreeze.com/release/${PV}/source/${P}-1.tar.bz2 + ftp://ftp.xfmail.org/pub/xfmail/release/${PV}/source/${P}-1.tar.bz2" +HOMEPAGE="http://www.xfmail.org" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 ppc sparc" +DEPEND="virtual/x11 + >=x11-libs/xforms-1.0_rc4 + ldap? ( >=net-nds/openldap-2.0.11 )" +RDEPEND="virtual/x11 + >=x11-libs/xforms-1.0_rc4 + ldap? ( >=net-nds/openldap-2.0.11 )" + +src_compile() { + local myconf + use ldap && myconf="$myconf --with-ldap" + ./autogen.sh \ + --host=${CHOST} \ + --prefix=/usr \ + --with-faces $myconf || die + emake || die +} + +src_install () { + make prefix=${D}/usr \ + manualdir=${D}/usr/share/doc/${PF}/html \ + install || die + dodoc AUTHORS ChangeLog* NEWS README* TODO* +} |