diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2008-01-14 19:39:54 +0000 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2008-01-14 19:39:54 +0000 |
commit | df5cdbe6acc28ef41033899bed22ec665d2b1aaa (patch) | |
tree | 6d216dca39672ecd90d416b488cf91c1a4cdf660 /dev-libs/pth | |
parent | variable quoting, basic QA (diff) | |
download | gentoo-2-df5cdbe6acc28ef41033899bed22ec665d2b1aaa.tar.gz gentoo-2-df5cdbe6acc28ef41033899bed22ec665d2b1aaa.tar.bz2 gentoo-2-df5cdbe6acc28ef41033899bed22ec665d2b1aaa.zip |
--disable-debug actually removed shared libraries, bug#205875, thanks to drac
(Portage version: 2.1.4, RepoMan options: --force)
Diffstat (limited to 'dev-libs/pth')
-rw-r--r-- | dev-libs/pth/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/pth/files/digest-pth-2.0.7-r1 | 3 | ||||
-rw-r--r-- | dev-libs/pth/pth-2.0.7-r1.ebuild | 40 |
3 files changed, 49 insertions, 1 deletions
diff --git a/dev-libs/pth/ChangeLog b/dev-libs/pth/ChangeLog index d70908915cc3..4dca6dd7b0db 100644 --- a/dev-libs/pth/ChangeLog +++ b/dev-libs/pth/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/pth # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/ChangeLog,v 1.58 2008/01/14 14:17:02 alonbl Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/ChangeLog,v 1.59 2008/01/14 19:39:53 alonbl Exp $ + +*pth-2.0.7-r1 (14 Jan 2008) + + 14 Jan 2008; Alon Bar-Lev <alonbl@gentoo.org> +pth-2.0.7-r1.ebuild: + --disable-debug actually removed shared libraries, bug#205875, thanks to drac 14 Jan 2008; Alon Bar-Lev <alonbl@gentoo.org> pth-2.0.7.ebuild: Add debug USE flag diff --git a/dev-libs/pth/files/digest-pth-2.0.7-r1 b/dev-libs/pth/files/digest-pth-2.0.7-r1 new file mode 100644 index 000000000000..cd4580fdf37f --- /dev/null +++ b/dev-libs/pth/files/digest-pth-2.0.7-r1 @@ -0,0 +1,3 @@ +MD5 9cb4a25331a4c4db866a31cbe507c793 pth-2.0.7.tar.gz 652640 +RMD160 80bc66777ba20d9648b7aaf3f58d593be6416910 pth-2.0.7.tar.gz 652640 +SHA256 72353660c5a2caafd601b20e12e75d865fd88f6cf1a088b306a3963f0bc77232 pth-2.0.7.tar.gz 652640 diff --git a/dev-libs/pth/pth-2.0.7-r1.ebuild b/dev-libs/pth/pth-2.0.7-r1.ebuild new file mode 100644 index 000000000000..4cc4acfeba11 --- /dev/null +++ b/dev-libs/pth/pth-2.0.7-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/pth-2.0.7-r1.ebuild,v 1.1 2008/01/14 19:39:53 alonbl Exp $ + +inherit eutils fixheadtails libtool + +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 m68k mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd" +IUSE="debug" + +DEPEND="" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PN}-2.0.5-parallelfix.patch" + epatch "${FILESDIR}/${PN}-2.0.6-ldflags.patch" + epatch "${FILESDIR}/${PN}-2.0.6-sigstack.patch" + + ht_fix_file aclocal.m4 configure + + elibtoolize +} + +src_compile() { + local conf + use debug && conf="${conf} --enable-debug" # have a bug --disable-debug and shared + econf ${conf} || die + emake || die +} + +src_install() { + make DESTDIR="${D}" install || die + dodoc ANNOUNCE AUTHORS ChangeLog NEWS README THANKS USERS +} |