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-1.3.ebuild
Date: Sat, 30 Nov 2013 04:13:02
Message-Id: 20131130041251.92A9C2004B@flycatcher.gentoo.org
1 radhermit 13/11/30 04:12:51
2
3 Modified: ChangeLog
4 Added: libexplain-1.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.26 dev-libs/libexplain/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/ChangeLog?rev=1.26&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/ChangeLog?rev=1.26&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/ChangeLog?r1=1.25&r2=1.26
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libexplain/ChangeLog,v
20 retrieving revision 1.25
21 retrieving revision 1.26
22 diff -u -r1.25 -r1.26
23 --- ChangeLog 10 May 2013 05:55:35 -0000 1.25
24 +++ ChangeLog 30 Nov 2013 04:12:51 -0000 1.26
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/libexplain
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libexplain/ChangeLog,v 1.25 2013/05/10 05:55:35 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libexplain/ChangeLog,v 1.26 2013/11/30 04:12:51 radhermit Exp $
30 +
31 +*libexplain-1.3 (30 Nov 2013)
32 +
33 + 30 Nov 2013; Tim Harder <radhermit@g.o> +libexplain-1.3.ebuild:
34 + Version bump.
35
36 *libexplain-1.2 (10 May 2013)
37
38
39
40
41 1.1 dev-libs/libexplain/libexplain-1.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/libexplain-1.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/libexplain-1.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libexplain-1.3.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libexplain/libexplain-1.3.ebuild,v 1.1 2013/11/30 04:12:51 radhermit Exp $
51
52 EAPI=5
53
54 AUTOTOOLS_AUTORECONF=yes
55 AUTOTOOLS_IN_SOURCE_BUILD=1
56
57 inherit autotools-utils
58
59 DESCRIPTION="Library which may be used to explain Unix and Linux system call errors"
60 HOMEPAGE="http://libexplain.sourceforge.net/"
61 SRC_URI="http://libexplain.sourceforge.net/${P}.tar.gz"
62
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
65 LICENSE="GPL-3 LGPL-3"
66 IUSE="doc static-libs"
67
68 RDEPEND="
69 sys-libs/libcap
70 >=sys-libs/glibc-2.11
71 sys-process/lsof"
72 DEPEND="${RDEPEND}
73 >=sys-kernel/linux-headers-2.6.35
74 doc? (
75 app-text/ghostscript-gpl
76 sys-apps/groff
77 )
78 "
79
80 DOCS=( README )
81
82 PATCHES=(
83 "${FILESDIR}"/${PN}-0.45-configure.patch
84 )
85
86 src_prepare() {
87 # Portage incompatible test
88 sed \
89 -e '/t0524a/d' \
90 -e '/t0363a/d' \
91 -i Makefile.in || die
92
93 cp "${S}"/etc/configure.ac "${S}" || die
94
95 autotools-utils_src_prepare
96 }
97
98 src_compile() {
99 autotools-utils_src_compile
100 use doc && autotools-utils_src_compile all-doc
101 }