Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/gperf: gperf-3.0.4.ebuild ChangeLog
Date: Sun, 26 May 2013 23:27:53
Message-Id: 20130526232742.970D12171D@flycatcher.gentoo.org
1 vapier 13/05/26 23:27:42
2
3 Modified: gperf-3.0.4.ebuild ChangeLog
4 Log:
5 Update to EAPI=4. Respect $AR and $CPPFLAGS #444078 by Denis M..
6
7 (Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
8
9 Revision Changes Path
10 1.16 dev-util/gperf/gperf-3.0.4.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gperf/gperf-3.0.4.ebuild?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gperf/gperf-3.0.4.ebuild?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gperf/gperf-3.0.4.ebuild?r1=1.15&r2=1.16
15
16 Index: gperf-3.0.4.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/gperf/gperf-3.0.4.ebuild,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- gperf-3.0.4.ebuild 23 Feb 2013 01:46:32 -0000 1.15
23 +++ gperf-3.0.4.ebuild 26 May 2013 23:27:42 -0000 1.16
24 @@ -1,8 +1,10 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gperf/gperf-3.0.4.ebuild,v 1.15 2013/02/23 01:46:32 zmedico Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/gperf/gperf-3.0.4.ebuild,v 1.16 2013/05/26 23:27:42 vapier Exp $
29
30 -EAPI="3"
31 +EAPI="4"
32 +
33 +inherit toolchain-funcs
34
35 DESCRIPTION="A perfect hash function generator"
36 HOMEPAGE="http://www.gnu.org/software/gperf/gperf.html"
37 @@ -13,7 +15,13 @@
38 KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
39 IUSE=""
40
41 -src_install() {
42 - emake DESTDIR="${D}" htmldir="${EPREFIX}"/usr/share/doc/${PF}/html install || die
43 - dodoc AUTHORS ChangeLog NEWS README
44 +src_prepare() {
45 + sed -i \
46 + -e "/^AR /s:=.*:= $(tc-getAR):" \
47 + -e "/^CPPFLAGS /s:=:+=:" \
48 + */Makefile.in || die #444078
49 +}
50 +
51 +src_configure() {
52 + econf --htmldir='$(datarootdir)/doc/'"${PF}/html"
53 }
54
55
56
57 1.57 dev-util/gperf/ChangeLog
58
59 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gperf/ChangeLog?rev=1.57&view=markup
60 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gperf/ChangeLog?rev=1.57&content-type=text/plain
61 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/gperf/ChangeLog?r1=1.56&r2=1.57
62
63 Index: ChangeLog
64 ===================================================================
65 RCS file: /var/cvsroot/gentoo-x86/dev-util/gperf/ChangeLog,v
66 retrieving revision 1.56
67 retrieving revision 1.57
68 diff -u -r1.56 -r1.57
69 --- ChangeLog 23 Feb 2013 01:46:32 -0000 1.56
70 +++ ChangeLog 26 May 2013 23:27:42 -0000 1.57
71 @@ -1,6 +1,9 @@
72 # ChangeLog for dev-util/gperf
73 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
74 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gperf/ChangeLog,v 1.56 2013/02/23 01:46:32 zmedico Exp $
75 +# $Header: /var/cvsroot/gentoo-x86/dev-util/gperf/ChangeLog,v 1.57 2013/05/26 23:27:42 vapier Exp $
76 +
77 + 26 May 2013; Mike Frysinger <vapier@g.o> gperf-3.0.4.ebuild:
78 + Update to EAPI=4. Respect $AR and $CPPFLAGS #444078 by Denis M..
79
80 23 Feb 2013; Zac Medico <zmedico@g.o> gperf-3.0.4.ebuild:
81 Add ~arm-linux keyword.