summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2014-07-22 12:42:09 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2014-07-22 12:42:09 +0000
commit921f453cf6f5e8fc12bf34f2647525757e911d75 (patch)
tree8d5706b055b8634a320719da8b8acfaa36e28407 /dev-util/pkgconfig-openbsd
parentold (diff)
downloadgentoo-2-921f453cf6f5e8fc12bf34f2647525757e911d75.tar.gz
gentoo-2-921f453cf6f5e8fc12bf34f2647525757e911d75.tar.bz2
gentoo-2-921f453cf6f5e8fc12bf34f2647525757e911d75.zip
old
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'dev-util/pkgconfig-openbsd')
-rw-r--r--dev-util/pkgconfig-openbsd/ChangeLog6
-rw-r--r--dev-util/pkgconfig-openbsd/pkgconfig-openbsd-20130507.ebuild63
2 files changed, 5 insertions, 64 deletions
diff --git a/dev-util/pkgconfig-openbsd/ChangeLog b/dev-util/pkgconfig-openbsd/ChangeLog
index 695b4edd6e18..ab2e4fa1bd49 100644
--- a/dev-util/pkgconfig-openbsd/ChangeLog
+++ b/dev-util/pkgconfig-openbsd/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/pkgconfig-openbsd
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog,v 1.16 2014/03/30 13:39:36 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig-openbsd/ChangeLog,v 1.17 2014/07/22 12:42:09 ssuominen Exp $
+
+ 22 Jul 2014; Samuli Suominen <ssuominen@gentoo.org>
+ -pkgconfig-openbsd-20130507.ebuild:
+ old
30 Mar 2014; Michał Górny <mgorny@gentoo.org>
pkgconfig-openbsd-20130507-r1.ebuild:
diff --git a/dev-util/pkgconfig-openbsd/pkgconfig-openbsd-20130507.ebuild b/dev-util/pkgconfig-openbsd/pkgconfig-openbsd-20130507.ebuild
deleted file mode 100644
index 3b27cbd0c2c4..000000000000
--- a/dev-util/pkgconfig-openbsd/pkgconfig-openbsd-20130507.ebuild
+++ /dev/null
@@ -1,63 +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-20130507.ebuild,v 1.1 2013/05/07 13:59:14 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="~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}/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
-
- sed -i \
- -e 's:/usr/X11R6/lib/pkgconfig:/usr/share/pkgconfig:' \
- -e 's:/usr/X11R6/share/pkgconfig:/usr/lib64/pkgconfig\n/usr/lib32/pkgconfig:' \
- 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}
-}