diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2013-05-07 14:01:46 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2013-05-07 14:01:46 +0000 |
commit | cfab80900ffba37d5b386e2f106d12d184f094bb (patch) | |
tree | 520daf92c882323c0b2b40279eb706bafe326556 /dev-util/pkgconfig-openbsd | |
parent | Latest version from upstream CVS; include /usr/lib32/pkgconfig, /usr/lib64/pk... (diff) | |
download | gentoo-2-cfab80900ffba37d5b386e2f106d12d184f094bb.tar.gz gentoo-2-cfab80900ffba37d5b386e2f106d12d184f094bb.tar.bz2 gentoo-2-cfab80900ffba37d5b386e2f106d12d184f094bb.zip |
old
(Portage version: 2.2.0_alpha174/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'dev-util/pkgconfig-openbsd')
-rw-r--r-- | dev-util/pkgconfig-openbsd/ChangeLog | 15 | ||||
-rw-r--r-- | dev-util/pkgconfig-openbsd/pkgconfig-openbsd-20130225.ebuild | 59 |
2 files changed, 6 insertions, 68 deletions
diff --git a/dev-util/pkgconfig-openbsd/ChangeLog b/dev-util/pkgconfig-openbsd/ChangeLog index 2f1fa1ba9271..ce77a4011d97 100644 --- a/dev-util/pkgconfig-openbsd/ChangeLog +++ b/dev-util/pkgconfig-openbsd/ChangeLog @@ -1,20 +1,17 @@ # ChangeLog for dev-util/pkgconfig-openbsd # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog,v 1.13 2013/05/07 13:59:14 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog,v 1.14 2013/05/07 14:01:46 ssuominen Exp $ + + 07 May 2013; Samuli Suominen <ssuominen@gentoo.org> + -pkgconfig-openbsd-20130225.ebuild: + old *pkgconfig-openbsd-20130507 (07 May 2013) 07 May 2013; Samuli Suominen <ssuominen@gentoo.org> +pkgconfig-openbsd-20130507.ebuild: Latest version from upstream CVS; include /usr/lib32/pkgconfig, - /usr/lib64/pkgconfig, /usr/share/pkgconfig to search paths. - - 05 Mar 2013; Samuli Suominen <ssuominen@gentoo.org> - pkgconfig-openbsd-20130225.ebuild: - Remove keywording again because --variable option is not working: - $ pkg-config --variable udevdir udev - $ echo $? - 1 + /usr/lib64/pkgconfig, /usr/share/pkgconfig to .pc directories 25 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> -pkgconfig-openbsd-20120710.ebuild: diff --git a/dev-util/pkgconfig-openbsd/pkgconfig-openbsd-20130225.ebuild b/dev-util/pkgconfig-openbsd/pkgconfig-openbsd-20130225.ebuild deleted file mode 100644 index f7e28cb95b60..000000000000 --- a/dev-util/pkgconfig-openbsd/pkgconfig-openbsd-20130225.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig-openbsd/pkgconfig-openbsd-20130225.ebuild,v 1.2 2013/03/05 12:27:29 ssuominen Exp $ - -EAPI=5 - -# cvs -d anoncvs@anoncvs.openbsd.org:/cvs get src/usr.bin/pkg-config - -PKG_M4_VERSION=0.28 - -DESCRIPTION="A perl based version of pkg-config from OpenBSD" -HOMEPAGE="http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/pkg-config/" -SRC_URI="http://dev.gentoo.org/~ssuominen/${P}.tar.xz - pkg-config? ( http://pkgconfig.freedesktop.org/releases/pkg-config-${PKG_M4_VERSION}.tar.gz )" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="" -#KEYWORDS="~amd64 ~x86" -IUSE="+pkg-config" - -DEPEND=" - pkg-config? ( - !dev-util/pkgconfig - !dev-util/pkgconf[pkg-config] - )" -RDEPEND="${DEPEND} - dev-lang/perl - virtual/perl-Getopt-Long" - -S=${WORKDIR}/${P}/src - -src_prepare() { - # Config.pm from dev-lang/perl doesn't set ARCH, only archname - sed -i -e '/Config/s:ARCH:archname:' usr.bin/pkg-config/pkg-config || die -} - -src_install() { - if use pkg-config; then - dobin usr.bin/pkg-config/pkg-config - doman usr.bin/pkg-config/pkg-config.1 - - insinto /usr/share/aclocal - doins "${WORKDIR}"/pkg-config-*/pkg.m4 - else - newbin usr.bin/pkg-config/pkg-config pkg-config-openbsd - newman usr.bin/pkg-config/pkg-config.1 pkg-config-openbsd.1 - fi - - insinto /usr/share/${PN} - doins -r usr.bin/pkg-config/OpenBSD - - cat <<-EOF > "${T}"/99${PN} - COLON_SEPARATED=PERL5LIB - PERL5LIB=/usr/share/${PN} - EOF - - doenvd "${T}"/99${PN} -} |