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.52.ebuild
Date: Sun, 04 Mar 2012 22:14:28
Message-Id: 20120304221418.A1C0E2004B@flycatcher.gentoo.org
1 radhermit 12/03/04 22:14:18
2
3 Modified: ChangeLog
4 Added: libexplain-0.52.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.18 dev-libs/libexplain/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libexplain/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 23 Feb 2012 05:04:59 -0000 1.17
24 +++ ChangeLog 4 Mar 2012 22:14:18 -0000 1.18
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/libexplain
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libexplain/ChangeLog,v 1.17 2012/02/23 05:04:59 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libexplain/ChangeLog,v 1.18 2012/03/04 22:14:18 radhermit Exp $
30 +
31 +*libexplain-0.52 (04 Mar 2012)
32 +
33 + 04 Mar 2012; Tim Harder <radhermit@g.o> +libexplain-0.52.ebuild:
34 + Version bump.
35
36 23 Feb 2012; Tim Harder <radhermit@g.o> libexplain-0.51.ebuild:
37 Set autotools-utils autoreconf variable instead of calling eautoreconf.
38
39
40
41 1.1 dev-libs/libexplain/libexplain-0.52.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/libexplain-0.52.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/libexplain-0.52.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libexplain-0.52.ebuild
47 ===================================================================
48 # Copyright 1999-2012 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.52.ebuild,v 1.1 2012/03/04 22:14:18 radhermit Exp $
51
52 EAPI=4
53 AUTOTOOLS_AUTORECONF=yes
54 AUTOTOOLS_IN_SOURCE_BUILD=1
55
56 inherit autotools-utils
57
58 MY_P="${P}.D001"
59
60 DESCRIPTION="Library which may be used to explain Unix and Linux system call errors"
61 HOMEPAGE="http://libexplain.sourceforge.net/"
62 SRC_URI="http://libexplain.sourceforge.net/${MY_P}.tar.gz"
63
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
66 LICENSE="GPL-3"
67 IUSE="static-libs"
68
69 DEPEND="
70 >=sys-kernel/linux-headers-2.6.35
71 sys-libs/libcap
72 >=sys-libs/glibc-2.11"
73 RDEPEND="${DEPEND}"
74
75 S=${WORKDIR}/${MY_P}
76
77 DOCS=( README )
78
79 PATCHES=(
80 "${FILESDIR}"/${PN}-0.45-configure.patch
81 )
82
83 src_prepare() {
84 # Portage incompatible test
85 sed \
86 -e '/t0524a/d' \
87 -e '/t0363a/d' \
88 -i Makefile.in || die
89
90 cp "${S}"/etc/configure.ac "${S}"
91
92 autotools-utils_src_prepare
93 }