Gentoo Archives: gentoo-commits

From: "Jeff Horelick (jdhore)" <jdhore@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/pkgconf: pkgconf-0.8.12.ebuild ChangeLog
Date: Tue, 26 Feb 2013 02:19:11
Message-Id: 20130226021906.05EDC2171E@flycatcher.gentoo.org
1 jdhore 13/02/26 02:19:05
2
3 Modified: ChangeLog
4 Added: pkgconf-0.8.12.ebuild
5 Log:
6 Version bump. Fixes bug #459108
7
8 (Portage version: 2.2.0_alpha163/cvs/Linux i686, signed Manifest commit with key 23E9E900)
9
10 Revision Changes Path
11 1.66 dev-util/pkgconf/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconf/ChangeLog?rev=1.66&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconf/ChangeLog?rev=1.66&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconf/ChangeLog?r1=1.65&r2=1.66
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/pkgconf/ChangeLog,v
20 retrieving revision 1.65
21 retrieving revision 1.66
22 diff -u -r1.65 -r1.66
23 --- ChangeLog 24 Feb 2013 16:14:18 -0000 1.65
24 +++ ChangeLog 26 Feb 2013 02:19:05 -0000 1.66
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-util/pkgconf
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconf/ChangeLog,v 1.65 2013/02/24 16:14:18 jdhore Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconf/ChangeLog,v 1.66 2013/02/26 02:19:05 jdhore Exp $
30 +
31 +*pkgconf-0.8.12 (26 Feb 2013)
32 +
33 + 26 Feb 2013; Jeff Horelick <jdhore@g.o> +pkgconf-0.8.12.ebuild:
34 + Version bump. Fixes bug #459108
35
36 *pkgconf-0.8.11 (24 Feb 2013)
37
38
39
40
41 1.1 dev-util/pkgconf/pkgconf-0.8.12.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconf/pkgconf-0.8.12.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/pkgconf/pkgconf-0.8.12.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pkgconf-0.8.12.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconf/pkgconf-0.8.12.ebuild,v 1.1 2013/02/26 02:19:05 jdhore Exp $
51
52 EAPI="4"
53
54 if [[ ${PV} == "9999" ]] ; then
55 EGIT_REPO_URI="git://github.com/pkgconf/pkgconf.git"
56 inherit autotools git-2
57 else
58 inherit eutils
59 SRC_URI="http://tortois.es/~nenolod/distfiles/${P}.tar.bz2"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ppc-macos ~x64-macos ~x86-macos ~sparc64-solaris"
61 fi
62
63 DESCRIPTION="pkg-config compatible replacement with no dependencies other than ANSI C89"
64 HOMEPAGE="https://github.com/pkgconf/pkgconf"
65
66 LICENSE="BSD-1"
67 SLOT="0"
68 IUSE="+pkg-config strict"
69
70 DEPEND=""
71 RDEPEND="${DEPEND}
72 pkg-config? (
73 !dev-util/pkgconfig
74 !dev-util/pkg-config-lite
75 !dev-util/pkgconfig-openbsd[pkg-config]
76 )"
77
78 src_prepare() {
79 [[ -e configure ]] || eautoreconf
80 }
81
82 src_configure() {
83 econf $(use_enable strict)
84 }
85
86 src_install() {
87 default
88 use pkg-config \
89 && dosym pkgconf /usr/bin/pkg-config \
90 || rm "${ED}"/usr/share/aclocal/pkg.m4 \
91 || die
92 }