Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-forensics/libewf: ChangeLog libewf-20100226-r1.ebuild
Date: Wed, 28 Sep 2011 01:13:28
Message-Id: 20110928011318.ABEAD20036@flycatcher.gentoo.org
1 radhermit 11/09/28 01:13:18
2
3 Modified: ChangeLog libewf-20100226-r1.ebuild
4 Log:
5 Update to EAPI 4 and add static-libs use flag.
6
7 (Portage version: 2.2.0_alpha59/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.13 app-forensics/libewf/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/ChangeLog?rev=1.13&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/ChangeLog?rev=1.13&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/ChangeLog?r1=1.12&r2=1.13
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v
19 retrieving revision 1.12
20 retrieving revision 1.13
21 diff -u -r1.12 -r1.13
22 --- ChangeLog 16 Aug 2011 13:17:53 -0000 1.12
23 +++ ChangeLog 28 Sep 2011 01:13:18 -0000 1.13
24 @@ -1,6 +1,9 @@
25 # ChangeLog for app-forensics/libewf
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v 1.12 2011/08/16 13:17:53 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v 1.13 2011/09/28 01:13:18 radhermit Exp $
29 +
30 + 28 Sep 2011; Tim Harder <radhermit@g.o> libewf-20100226-r1.ebuild:
31 + Update to EAPI 4 and add static-libs use flag.
32
33 *libewf-20100226-r1 (16 Aug 2011)
34
35
36
37
38 1.2 app-forensics/libewf/libewf-20100226-r1.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/libewf-20100226-r1.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/libewf-20100226-r1.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/libewf-20100226-r1.ebuild?r1=1.1&r2=1.2
43
44 Index: libewf-20100226-r1.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226-r1.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- libewf-20100226-r1.ebuild 16 Aug 2011 13:17:54 -0000 1.1
51 +++ libewf-20100226-r1.ebuild 28 Sep 2011 01:13:18 -0000 1.2
52 @@ -1,10 +1,8 @@
53 # Copyright 1999-2011 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226-r1.ebuild,v 1.1 2011/08/16 13:17:54 patrick Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226-r1.ebuild,v 1.2 2011/09/28 01:13:18 radhermit Exp $
57
58 -EAPI="2"
59 -
60 -inherit eutils autotools
61 +EAPI="4"
62
63 DESCRIPTION="Implementation of the EWF (SMART and EnCase) image format"
64 HOMEPAGE="http://libewf.sourceforge.net"
65 @@ -15,7 +13,7 @@
66 KEYWORDS="~amd64 ~hppa ~ppc ~x86"
67 # upstream bug #2597171, pyewf has implicit declarations
68 #IUSE="debug python rawio unicode"
69 -IUSE="ewf2 debug rawio unicode"
70 +IUSE="debug ewf2 rawio static-libs unicode"
71
72 DEPEND="
73 sys-libs/e2fsprogs-libs
74 @@ -23,24 +21,19 @@
75 dev-libs/openssl"
76 RDEPEND="${DEPEND}"
77
78 -src_prepare() {
79 - eautoreconf
80 -}
81 -
82 src_configure() {
83 econf \
84 - $(use_enable unicode wide-character-type) \
85 - $(use_enable rawio low-level-functions) \
86 - $(use_enable debug verbose-output) \
87 $(use_enable debug debug-output) \
88 - $(use_enable ewf2 v2-api) || die "Failed to configure"
89 -}
90 -src_compile() {
91 - emake || die "Failed to build"
92 + $(use_enable debug verbose-output) \
93 + $(use_enable ewf2 v2-api) \
94 + $(use_enable rawio low-level-functions) \
95 + $(use_enable static-libs static) \
96 + $(use_enable unicode wide-character-type)
97 }
98
99 src_install() {
100 emake install DESTDIR="${D}"
101 dodoc AUTHORS ChangeLog NEWS README documents/*.txt
102 doman manuals/*.1 manuals/*.3
103 + find "${D}" -name '*.la' -exec rm -f {} +
104 }