Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/elfutils: ChangeLog elfutils-0.131.ebuild
Date: Sun, 30 Dec 2007 19:00:14
Message-Id: E1J93OJ-0005wL-RE@stork.gentoo.org
1 flameeyes 07/12/30 19:00:07
2
3 Modified: ChangeLog
4 Added: elfutils-0.131.ebuild
5 Log:
6 Version bump, needed for dev-util/dwarves.
7 (Portage version: 2.1.4_rc11)
8
9 Revision Changes Path
10 1.112 dev-libs/elfutils/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.112&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/elfutils/ChangeLog?rev=1.112&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/elfutils/ChangeLog?r1=1.111&r2=1.112
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v
19 retrieving revision 1.111
20 retrieving revision 1.112
21 diff -u -r1.111 -r1.112
22 --- ChangeLog 20 Nov 2007 10:25:10 -0000 1.111
23 +++ ChangeLog 30 Dec 2007 19:00:07 -0000 1.112
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-libs/elfutils
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.111 2007/11/20 10:25:10 drac Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/ChangeLog,v 1.112 2007/12/30 19:00:07 flameeyes Exp $
29 +
30 +*elfutils-0.131 (30 Dec 2007)
31 +
32 + 30 Dec 2007; Diego Pettenò <flameeyes@g.o> +elfutils-0.131.ebuild:
33 + Version bump, needed for dev-util/dwarves.
34
35 20 Nov 2007; Samuli Suominen <drac@g.o> elfutils-0.127.ebuild:
36 amd64 stable too, closing also bug 196489.
37
38
39
40 1.1 dev-libs/elfutils/elfutils-0.131.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/elfutils/elfutils-0.131.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/elfutils/elfutils-0.131.ebuild?rev=1.1&content-type=text/plain
44
45 Index: elfutils-0.131.ebuild
46 ===================================================================
47 # Copyright 1999-2007 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-libs/elfutils/elfutils-0.131.ebuild,v 1.1 2007/12/30 19:00:07 flameeyes Exp $
50
51 inherit eutils autotools
52
53 PVER="1.0"
54 DESCRIPTION="Libraries/utilities to handle ELF objects (drop in replacement for libelf)"
55 HOMEPAGE="http://people.redhat.com/drepper/"
56 SRC_URI="ftp://sources.redhat.com/pub/systemtap/${PN}/${P}.tar.gz
57 mirror://gentoo/${P}-patches-${PVER}.tar.bz2"
58
59 LICENSE="OpenSoftware"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
62 IUSE=""
63
64 # This pkg does not actually seem to compile currently in a uClibc
65 # environment (xrealloc errs), but we need to ensure that glibc never
66 # gets pulled in as a dep since this package does not respect virtual/libc
67 DEPEND="elibc_glibc? ( >=sys-libs/glibc-2.3.2 )
68 sys-devel/gettext
69 sys-devel/autoconf
70 >=sys-devel/binutils-2.15.90.0.1
71 >=sys-devel/gcc-3.3.3
72 !dev-libs/libelf"
73 RDEPEND=""
74
75 src_unpack() {
76 unpack ${A}
77 cd "${S}"
78 epatch "${WORKDIR}"/patch/*.patch
79 # this will make more files +x than need be, but who cares really
80 chmod a+rx config/*
81
82 AT_M4DIR="${S}/m4" eautoreconf
83 find . -name Makefile.in -print0 | xargs -0 sed -i -e 's:-W\(error\|extra\)::g'
84 }
85
86 src_compile() {
87 econf \
88 --program-prefix="eu-" \
89 --enable-shared \
90 || die "./configure failed"
91 emake || die
92 }
93
94 src_test() {
95 env LD_LIBRARY_PATH="${S}/libelf:${S}/libebl:${S}/libdw:${S}/libasm" \
96 make check || die "test failed"
97 }
98
99 src_install() {
100 emake DESTDIR="${D}" install || die
101 dodoc AUTHORS ChangeLog NEWS NOTES README THANKS TODO
102 }
103
104
105
106 --
107 gentoo-commits@g.o mailing list