Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libexplain: ChangeLog libexplain-0.47.ebuild
Date: Wed, 28 Sep 2011 23:14:41
Message-Id: 20110928231426.46A0920036@flycatcher.gentoo.org
1 radhermit 11/09/28 23:14:26
2
3 Modified: ChangeLog
4 Added: libexplain-0.47.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha59/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.8 dev-libs/libexplain/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libexplain/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 31 Aug 2011 02:39:34 -0000 1.7
24 +++ ChangeLog 28 Sep 2011 23:14:26 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/libexplain
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libexplain/ChangeLog,v 1.7 2011/08/31 02:39:34 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libexplain/ChangeLog,v 1.8 2011/09/28 23:14:26 radhermit Exp $
30 +
31 +*libexplain-0.47 (28 Sep 2011)
32 +
33 + 28 Sep 2011; Tim Harder <radhermit@g.o> +libexplain-0.47.ebuild:
34 + Version bump.
35
36 *libexplain-0.46 (31 Aug 2011)
37
38
39
40
41 1.1 dev-libs/libexplain/libexplain-0.47.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/libexplain-0.47.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/libexplain-0.47.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libexplain-0.47.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libexplain/libexplain-0.47.ebuild,v 1.1 2011/09/28 23:14:26 radhermit Exp $
51
52 EAPI=4
53 inherit autotools eutils
54
55 MY_P="${P}.D001"
56
57 DESCRIPTION="Library which may be used to explain Unix and Linux system call errors"
58 HOMEPAGE="http://libexplain.sourceforge.net/"
59 SRC_URI="http://libexplain.sourceforge.net/${MY_P}.tar.gz
60 http://dev.gentoo.org/~radhermit/distfiles/${P}-parallel-make.patch.gz"
61
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
64 LICENSE="GPL-3"
65 IUSE="static-libs"
66
67 DEPEND="
68 >=sys-kernel/linux-headers-2.6.35
69 sys-libs/libcap
70 >=sys-libs/glibc-2.11"
71 RDEPEND="${DEPEND}"
72
73 S="${WORKDIR}"/${MY_P}
74
75 src_prepare() {
76 # Portage incompatible test
77 sed \
78 -e '/t0524a/d' \
79 -e '/t0363a/d' \
80 -i Makefile.in || die
81
82 epatch "${FILESDIR}"/${PN}-0.45-configure.patch \
83 "${WORKDIR}"/${P}-parallel-make.patch
84
85 cp "${S}"/etc/configure.ac "${S}"
86 eautoreconf
87 }
88
89 src_configure() {
90 econf \
91 $(use_enable static-libs static)
92 }
93
94 src_install() {
95 default
96 find "${ED}" -name '*.la' -exec rm -f '{}' +
97 }