diff options
author | Jay Pfeifer <pfeifer@gentoo.org> | 2005-05-09 23:46:07 +0000 |
---|---|---|
committer | Jay Pfeifer <pfeifer@gentoo.org> | 2005-05-09 23:46:07 +0000 |
commit | 0462d2360356323e8dac99b1e29bbbfca0ed52b6 (patch) | |
tree | e0550904465cd8af8e05f9618a95acbb2ba718a9 /mail-filter | |
parent | localedir patch (diff) | |
download | historical-0462d2360356323e8dac99b1e29bbbfca0ed52b6.tar.gz historical-0462d2360356323e8dac99b1e29bbbfca0ed52b6.tar.bz2 historical-0462d2360356323e8dac99b1e29bbbfca0ed52b6.zip |
Version bump closing bug 91884.
Package-Manager: portage-2.0.51.21-r1
Diffstat (limited to 'mail-filter')
-rw-r--r-- | mail-filter/libspf2/ChangeLog | 9 | ||||
-rw-r--r-- | mail-filter/libspf2/Manifest | 14 | ||||
-rw-r--r-- | mail-filter/libspf2/files/digest-libspf2-1.2.5 | 1 | ||||
-rw-r--r-- | mail-filter/libspf2/libspf2-1.2.5.ebuild | 37 |
4 files changed, 48 insertions, 13 deletions
diff --git a/mail-filter/libspf2/ChangeLog b/mail-filter/libspf2/ChangeLog index ee4dfc6aa039..3d9a581a35fd 100644 --- a/mail-filter/libspf2/ChangeLog +++ b/mail-filter/libspf2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for mail-filter/libspf2 -# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-filter/libspf2/ChangeLog,v 1.1 2004/07/25 15:53:26 pfeifer Exp $ +# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/mail-filter/libspf2/ChangeLog,v 1.2 2005/05/09 23:46:07 pfeifer Exp $ + +*libspf2-1.2.5 (09 May 2005) + + 09 May 2005; Jay Pfeifer <pfeifer@gentoo.org> +libspf2-1.2.5.ebuild: + Version bump closing bug 91884. *libspf2-1.0.4 (24 Jul 2004) diff --git a/mail-filter/libspf2/Manifest b/mail-filter/libspf2/Manifest index b16353a2b7fb..4a9b4ea360b5 100644 --- a/mail-filter/libspf2/Manifest +++ b/mail-filter/libspf2/Manifest @@ -1,14 +1,6 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 69a9175a0e65a34f1e972d030decf0d8 ChangeLog 351 +MD5 7381eb747df5f6471b7dda0b582616fa libspf2-1.2.5.ebuild 1099 +MD5 8bf4e2e5bfe93ca5cd8c56cb83804640 ChangeLog 487 MD5 7592cdf7e52f0ff74af7d26ef10ac79d metadata.xml 673 MD5 9490844a6067c4faaba93900f2f00df3 libspf2-1.0.4.ebuild 1099 MD5 7e5b1b94c60f5c981f62872ba6e3f59d files/digest-libspf2-1.0.4 65 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.9.10 (GNU/Linux) - -iD8DBQFBw0k3I1lqEGTUzyQRAgenAKDKDYr7PfKuj7xwtXmRGZzmdm4fRQCfQhad -6OZr43oMJbZ1nhNQsgJLodw= -=XhTi ------END PGP SIGNATURE----- +MD5 03192942320df4e8f8fcb40e21a7c268 files/digest-libspf2-1.2.5 65 diff --git a/mail-filter/libspf2/files/digest-libspf2-1.2.5 b/mail-filter/libspf2/files/digest-libspf2-1.2.5 new file mode 100644 index 000000000000..935e47348967 --- /dev/null +++ b/mail-filter/libspf2/files/digest-libspf2-1.2.5 @@ -0,0 +1 @@ +MD5 06ed6a3b0b54c8590679315ae2d28ad9 libspf2-1.2.5.tar.gz 517945 diff --git a/mail-filter/libspf2/libspf2-1.2.5.ebuild b/mail-filter/libspf2/libspf2-1.2.5.ebuild new file mode 100644 index 000000000000..aa4f84605907 --- /dev/null +++ b/mail-filter/libspf2/libspf2-1.2.5.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/mail-filter/libspf2/libspf2-1.2.5.ebuild,v 1.1 2005/05/09 23:46:07 pfeifer Exp $ + +DESCRIPTION="libspf2 implements the Sender Policy Framework, a part of the SPF/SRS protocol pair." +HOMEPAGE="http://www.libspf2.org/" +SRC_URI="http://www.libspf2.org/spf/libspf2-${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="virtual/libc" +RDEPEND="" + +src_compile() { + econf || die "econf failed" + emake || die "emake failed" +} + +src_install() { + make install DESTDIR=${D} || die "make install failed" + + dodoc Changelog INSTALL README TODO docs/*.txt docs/API +} + +pkg_postinst() { + einfo "${P} was successfully installed." + einfo "Please read the associated docs for help." + einfo "Or visit the website @ ${HOMEPAGE}" + echo + ewarn "This package is still in unstable." + ewarn "Please report bugs to http://bugs.gentoo.org/" + ewarn "However, please do an advanced query to search for bugs" + ewarn "before reporting. This will keep down on duplicates." +} |