Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/ltrace: ltrace-0.7.3_p4.ebuild ChangeLog
Date: Thu, 29 May 2014 00:31:17
Message-Id: 20140529003112.977612004E@flycatcher.gentoo.org
1 jer 14/05/29 00:31:12
2
3 Modified: ChangeLog
4 Added: ltrace-0.7.3_p4.ebuild
5 Log:
6 Add an ebuild with Debian patches.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.63 dev-util/ltrace/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ltrace/ChangeLog?rev=1.63&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ltrace/ChangeLog?rev=1.63&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ltrace/ChangeLog?r1=1.62&r2=1.63
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/ltrace/ChangeLog,v
20 retrieving revision 1.62
21 retrieving revision 1.63
22 diff -u -r1.62 -r1.63
23 --- ChangeLog 18 Sep 2013 20:47:38 -0000 1.62
24 +++ ChangeLog 29 May 2014 00:31:12 -0000 1.63
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-util/ltrace
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ltrace/ChangeLog,v 1.62 2013/09/18 20:47:38 radhermit Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-util/ltrace/ChangeLog,v 1.63 2014/05/29 00:31:12 jer Exp $
31 +
32 +*ltrace-0.7.3_p4 (29 May 2014)
33 +
34 + 29 May 2014; Jeroen Roovers <jer@g.o> +ltrace-0.7.3_p4.ebuild:
35 + Add an ebuild with Debian patches.
36
37 *ltrace-0.7.3 (18 Sep 2013)
38
39
40
41
42 1.1 dev-util/ltrace/ltrace-0.7.3_p4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ltrace/ltrace-0.7.3_p4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ltrace/ltrace-0.7.3_p4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: ltrace-0.7.3_p4.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-util/ltrace/ltrace-0.7.3_p4.ebuild,v 1.1 2014/05/29 00:31:12 jer Exp $
52
53 EAPI=5
54 inherit autotools eutils
55
56 LTRACE_V=${PV/_p*/}
57 DB_V=${PV/*_p/}
58
59 DESCRIPTION="trace library calls made at runtime"
60 HOMEPAGE="http://ltrace.alioth.debian.org/"
61 SRC_URI="
62 mirror://debian/pool/main/l/${PN}/${PN}_${LTRACE_V}.orig.tar.bz2
63 mirror://debian/pool/main/l/${PN}/${PN}_${LTRACE_V}-${DB_V}.debian.tar.gz
64 "
65
66 LICENSE="GPL-2"
67 SLOT="0"
68 KEYWORDS="-alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~x86"
69 IUSE="debug selinux test unwind"
70
71 RDEPEND="dev-libs/elfutils
72 selinux? ( sys-libs/libselinux )
73 unwind? ( sys-libs/libunwind )"
74 DEPEND="${RDEPEND}
75 test? ( dev-util/dejagnu )"
76
77 S=${WORKDIR}/${PN}-${LTRACE_V}
78
79 src_prepare() {
80 epatch "${WORKDIR}"/debian/patches/[0-9]*
81 sed -i '/^dist_doc_DATA/d' Makefile.am || die
82 eautoreconf
83 }
84
85 src_configure() {
86 ac_cv_header_selinux_selinux_h=$(usex selinux) \
87 ac_cv_lib_selinux_security_get_boolean_active=$(usex selinux) \
88 econf \
89 --disable-werror \
90 $(use_enable debug) \
91 $(use_with unwind libunwind)
92 }