diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-10-13 19:59:44 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-10-13 19:59:44 +0000 |
commit | c3365755d39662dfdb045357a9f40c8ce19e175f (patch) | |
tree | cf3c8a4683faff82349beb7fa3872967e4ec328d /dev-util/pkgconfig | |
parent | Fix building with recent pcsc-lite by renaming FEATURE_MCT_READERDIRECT with ... (diff) | |
download | gentoo-2-c3365755d39662dfdb045357a9f40c8ce19e175f.tar.gz gentoo-2-c3365755d39662dfdb045357a9f40c8ce19e175f.tar.bz2 gentoo-2-c3365755d39662dfdb045357a9f40c8ce19e175f.zip |
old
(Portage version: 2.2.0_alpha64/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/pkgconfig')
-rw-r--r-- | dev-util/pkgconfig/ChangeLog | 6 | ||||
-rw-r--r-- | dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild | 45 |
2 files changed, 5 insertions, 46 deletions
diff --git a/dev-util/pkgconfig/ChangeLog b/dev-util/pkgconfig/ChangeLog index d193e742dbe9..d0123c795c4d 100644 --- a/dev-util/pkgconfig/ChangeLog +++ b/dev-util/pkgconfig/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-util/pkgconfig # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.99 2011/07/31 19:27:35 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/ChangeLog,v 1.100 2011/10/13 19:59:44 ssuominen Exp $ + + 13 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> + -pkgconfig-0.25-r2.ebuild: + old 31 Jul 2011; Jeroen Roovers <jer@gentoo.org> pkgconfig-0.26.ebuild: Stable for HPPA (bug #374681). diff --git a/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild b/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild deleted file mode 100644 index 22ade5d7ad14..000000000000 --- a/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.25-r2.ebuild,v 1.11 2011/05/20 07:31:38 ssuominen Exp $ - -EAPI=2 -inherit eutils flag-o-matic - -MY_P=pkg-config-${PV} - -DESCRIPTION="Package config system that manages compile/link flags" -HOMEPAGE="http://pkgconfig.freedesktop.org/wiki/" -SRC_URI="http://pkgconfig.freedesktop.org/releases/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd" -IUSE="elibc_FreeBSD hardened" - -RDEPEND=">=dev-libs/popt-1.15" -DEPEND="${RDEPEND}" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - epatch "${FILESDIR}"/${P}-dnl.patch -} - -src_configure() { - use ppc64 && use hardened && replace-flags -O[2-3] -O1 - - # Force using all the requirements when linking, so that needed -pthread - # lines are inherited between libraries - local myconf - use elibc_FreeBSD && myconf="--enable-indirect-deps" - - econf \ - --docdir=/usr/share/doc/${PF}/html \ - --with-installed-popt \ - ${myconf} -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc AUTHORS ChangeLog NEWS README -} |