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