diff options
author | Andrej Kacian <ticho@gentoo.org> | 2005-01-15 01:17:40 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2005-01-15 01:17:40 +0000 |
commit | 0c6871dfdee85992fdb2d160a6f06249b46a8fed (patch) | |
tree | 923ab74ea6cf9eaac2a054c1227f3d3f48b7a643 /net-mail/email | |
parent | Reference to GnuPG Gentoo user guide added to all ebuilds as per bug #77314 ... (diff) | |
download | gentoo-2-0c6871dfdee85992fdb2d160a6f06249b46a8fed.tar.gz gentoo-2-0c6871dfdee85992fdb2d160a6f06249b46a8fed.tar.bz2 gentoo-2-0c6871dfdee85992fdb2d160a6f06249b46a8fed.zip |
Version bump.
Diffstat (limited to 'net-mail/email')
-rw-r--r-- | net-mail/email/ChangeLog | 11 | ||||
-rw-r--r-- | net-mail/email/Manifest | 12 | ||||
-rw-r--r-- | net-mail/email/email-2.3.0.ebuild | 4 | ||||
-rw-r--r-- | net-mail/email/email-2.3.1.ebuild | 47 | ||||
-rw-r--r-- | net-mail/email/files/2.3.1-Makefile.patch | 15 | ||||
-rw-r--r-- | net-mail/email/files/digest-email-2.3.1 | 1 |
6 files changed, 76 insertions, 14 deletions
diff --git a/net-mail/email/ChangeLog b/net-mail/email/ChangeLog index 0c485a3afa71..3ad1b77ff69b 100644 --- a/net-mail/email/ChangeLog +++ b/net-mail/email/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-mail/email -# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/email/ChangeLog,v 1.2 2004/12/13 23:34:46 ticho Exp $ +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/email/ChangeLog,v 1.3 2005/01/15 01:17:40 ticho Exp $ + +*email-2.3.1 (15 Jan 2005) + + 15 Jan 2005; Andrej Kacian <ticho@gentoo.org> +files/2.3.1-Makefile.patch, + +email-2.3.1.ebuild: + Version bump. Added a patch to use DESTDIR in Makefile, since upstream + removed it. 14 Dec 2004; Andrej Kacian <ticho@gentoo.org> email-2.3.0.ebuild: Stable on x86. diff --git a/net-mail/email/Manifest b/net-mail/email/Manifest index 6d43b23d405a..adc2f6f97c1b 100644 --- a/net-mail/email/Manifest +++ b/net-mail/email/Manifest @@ -1,14 +1,6 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 b3569b64726ec19c050a594a433ac88e ChangeLog 441 MD5 850ad3e7c3a77515ca7545c20870b45f metadata.xml 326 +MD5 539a5e1210af05d3c0ff524a29526d22 email-2.3.1.ebuild 869 MD5 4d12c8cc5a49df5f73223b9e4fd5c24a email-2.3.0.ebuild 962 +MD5 455d0678e956e443f54fc11e43032ce1 files/digest-email-2.3.1 64 MD5 7d522f333c5db99952f0d5e4a7d3796e files/digest-email-2.3.0 64 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.2.6 (GNU/Linux) - -iD8DBQFBviceQlM6RnzZP+IRAp5ZAKC8Ze1RSR1RGErQAn6ti0kA4sqjtQCfQ3oW -uzwKhvrK5cc97+s1oV+IjzQ= -=irmn ------END PGP SIGNATURE----- diff --git a/net-mail/email/email-2.3.0.ebuild b/net-mail/email/email-2.3.0.ebuild index 1fbe3efab760..dcaf368e85c9 100644 --- a/net-mail/email/email-2.3.0.ebuild +++ b/net-mail/email/email-2.3.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/email/email-2.3.0.ebuild,v 1.3 2004/12/13 23:34:46 ticho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/email/email-2.3.0.ebuild,v 1.4 2005/01/15 01:17:40 ticho Exp $ DESCRIPTION="Advanced CLI tool for sending email." HOMEPAGE="http://email.cleancode.org" diff --git a/net-mail/email/email-2.3.1.ebuild b/net-mail/email/email-2.3.1.ebuild new file mode 100644 index 000000000000..7c2b5ff60a04 --- /dev/null +++ b/net-mail/email/email-2.3.1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/email/email-2.3.1.ebuild,v 1.1 2005/01/15 01:17:40 ticho Exp $ + +inherit eutils + +DESCRIPTION="Advanced CLI tool for sending email." +HOMEPAGE="http://email.cleancode.org" +SRC_URI="http://email.cleancode.org/download/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" + +KEYWORDS="~x86" +IUSE="" + +DEPEND="virtual/libc" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/${PV}-Makefile.patch +} + +src_compile() { + sed -i -e "s:/doc/email-\${version}:/share/doc:" configure + sed -i -e "s:DIVIDER = '---':DIVIDER = '-- ':" email.conf + + econf || die "econf failed" + emake || die "emake failed" +} + +src_install() { + doman email.1 + dodoc INSTALL quoted-printable.rfc RFC821 TODO + dodir /usr/bin + make DESTDIR=${D} install || die "install failed" +} + +pkg_preinst() { + rm ${D}/usr/share/doc/${P}/email.1 +} + +pkg_postinst() { + echo + einfo "Do not forget to edit /etc/email/email.conf file before using email." + echo +} diff --git a/net-mail/email/files/2.3.1-Makefile.patch b/net-mail/email/files/2.3.1-Makefile.patch new file mode 100644 index 000000000000..839d0a2c7ca3 --- /dev/null +++ b/net-mail/email/files/2.3.1-Makefile.patch @@ -0,0 +1,15 @@ +--- email-2.3.1/Makefile.in 2004-05-27 21:00:03.000000000 +0200 ++++ email-2.3.1-fixed/Makefile.in 2005-01-15 01:58:30.791131848 +0100 +@@ -19,9 +19,9 @@ + cd $(SRCDIR) && $(MAKE) + + install: +- ./install.sh --bindir $(bindir) --sysconfdir $(sysconfdir) \ +- --mandir $(mandir) --binext '$(bin_suffix)' --version "$(VERSION)" \ +- --docdir $(docdir) ++ ./install.sh --bindir $(DESTDIR)usr$(bindir) --sysconfdir $(DESTDIR)$(sysconfdir) \ ++ --mandir $(DESTDIR)$(mandir) --binext '$(bin_suffix)' --version "$(VERSION)" \ ++ --docdir $(DESTDIR)$(docdir) + + distclean: + cd $(SRCDIR) && $(MAKE) clean-all diff --git a/net-mail/email/files/digest-email-2.3.1 b/net-mail/email/files/digest-email-2.3.1 new file mode 100644 index 000000000000..870dd79c2c02 --- /dev/null +++ b/net-mail/email/files/digest-email-2.3.1 @@ -0,0 +1 @@ +MD5 6d9407c55e3447de279abb847452eeee email-2.3.1.tar.bz2 128914 |