diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2005-09-02 21:52:56 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2005-09-02 21:52:56 +0000 |
commit | 6e11078059d1b90740e1f5a7fed77f25cb3c6a37 (patch) | |
tree | c3d009cf0b8a91a1a8caa727f800cac3a7ae0433 /dev-libs/pth | |
parent | add current upstream patches for fixing security bug #92254 (diff) | |
download | gentoo-2-6e11078059d1b90740e1f5a7fed77f25cb3c6a37.tar.gz gentoo-2-6e11078059d1b90740e1f5a7fed77f25cb3c6a37.tar.bz2 gentoo-2-6e11078059d1b90740e1f5a7fed77f25cb3c6a37.zip |
version bump 2.0.4
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'dev-libs/pth')
-rw-r--r-- | dev-libs/pth/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/pth/Manifest | 12 | ||||
-rw-r--r-- | dev-libs/pth/files/digest-pth-2.0.4 | 1 | ||||
-rw-r--r-- | dev-libs/pth/pth-2.0.4.ebuild | 26 |
4 files changed, 35 insertions, 11 deletions
diff --git a/dev-libs/pth/ChangeLog b/dev-libs/pth/ChangeLog index 4f58356c0d67..a8cbbe40d956 100644 --- a/dev-libs/pth/ChangeLog +++ b/dev-libs/pth/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/pth # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/ChangeLog,v 1.30 2005/07/31 14:54:30 ka0ttic Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/ChangeLog,v 1.31 2005/09/02 21:52:56 vanquirius Exp $ + +*pth-2.0.4 (02 Sep 2005) + + 02 Sep 2005; Marcelo Goes <vanquirius@gentoo.org> +pth-2.0.4.ebuild: + Version bump. m4 patch in upstream. 31 Jul 2005; Aaron Walker <ka0ttic@gentoo.org> pth-2.0.3.ebuild: Added ~mips for bug 79171. diff --git a/dev-libs/pth/Manifest b/dev-libs/pth/Manifest index 48d91d0e6c00..eb8b15c8aee4 100644 --- a/dev-libs/pth/Manifest +++ b/dev-libs/pth/Manifest @@ -1,7 +1,5 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 841fe7cb64f1627631800a5a7bac292b pth-1.4.0.ebuild 776 +MD5 2f9a4ad68b195cc5d3668bbe81958e9d pth-2.0.4.ebuild 748 MD5 f18d7552a5a5f031f28b5a805a4c93e4 pth-1.4.1.ebuild 764 MD5 0c382c4d474fd91aff44e5eef57fd6fa ChangeLog 3723 MD5 566cf4f89e44670d0aba4a745913d748 metadata.xml 224 @@ -10,10 +8,4 @@ MD5 87d3f708eb2c1edc4f1f82de5665ac93 files/pth-2.0.3-m4.patch 665 MD5 5a8d84760fa717b03ba0a74fdcda84a2 files/digest-pth-1.4.0 61 MD5 1bfd642d99d813a259564df018c7f6dd files/digest-pth-1.4.1 61 MD5 b2b42d9f7e85e829667e5cec706c44fe files/digest-pth-2.0.3 61 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.1 (GNU/Linux) - -iD8DBQFC7OZtEZCkKN40op4RAjF4AKCPPDlzw98fi7EzTROqyR8y/lehfQCcCuAk -7IBNm4Vp4Bo7xU9VvVKghqw= -=Jr29 ------END PGP SIGNATURE----- +MD5 778c59a123a7a9c7668831858265599b files/digest-pth-2.0.4 61 diff --git a/dev-libs/pth/files/digest-pth-2.0.4 b/dev-libs/pth/files/digest-pth-2.0.4 new file mode 100644 index 000000000000..5ec39c8bcb14 --- /dev/null +++ b/dev-libs/pth/files/digest-pth-2.0.4 @@ -0,0 +1 @@ +MD5 f810e0ca2cd32e88efa29f9237f374d5 pth-2.0.4.tar.gz 641851 diff --git a/dev-libs/pth/pth-2.0.4.ebuild b/dev-libs/pth/pth-2.0.4.ebuild new file mode 100644 index 000000000000..a2fd66c759cd --- /dev/null +++ b/dev-libs/pth/pth-2.0.4.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/pth-2.0.4.ebuild,v 1.1 2005/09/02 21:52:56 vanquirius Exp $ + +DESCRIPTION="GNU Portable Threads" +HOMEPAGE="http://www.gnu.org/software/pth/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc-macos ~ppc64 ~s390 ~sparc ~x86" +IUSE="" + +DEPEND="" + +src_compile() { + econf || die "econf failed" + # note - needed so parallel compile works + emake pth_p.h || die "pth_p.h make failed" + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die + dodoc ANNOUNCE AUTHORS ChangeLog NEWS README THANKS USERS +} |