Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-forensics/libewf: ChangeLog libewf-20100226.ebuild
Date: Fri, 26 Feb 2010 20:30:03
Message-Id: E1Nl6oy-00073m-Gy@stork.gentoo.org
1 patrick 10/02/26 20:30:00
2
3 Modified: ChangeLog
4 Added: libewf-20100226.ebuild
5 Log:
6 Bump
7 (Portage version: 2.2_rc63/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.7 app-forensics/libewf/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/libewf/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/libewf/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/libewf/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 8 Nov 2009 11:54:19 -0000 1.6
23 +++ ChangeLog 26 Feb 2010 20:29:59 -0000 1.7
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-forensics/libewf
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v 1.6 2009/11/08 11:54:19 patrick Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v 1.7 2010/02/26 20:29:59 patrick Exp $
30 +
31 +*libewf-20100226 (26 Feb 2010)
32 +
33 + 26 Feb 2010; Patrick Lauer <patrick@g.o> +libewf-20100226.ebuild:
34 + Bump
35
36 *libewf-20091108 (08 Nov 2009)
37
38
39
40
41 1.1 app-forensics/libewf/libewf-20100226.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libewf-20100226.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild,v 1.1 2010/02/26 20:29:59 patrick Exp $
51
52 inherit eutils autotools
53
54 DESCRIPTION="Implementation of the EWF (SMART and EnCase) image format"
55 HOMEPAGE="http://libewf.sourceforge.net"
56 SRC_URI="mirror://sourceforge/libewf/${P}.tar.gz"
57
58 LICENSE="BSD"
59 SLOT="0"
60 KEYWORDS="~amd64 ~arm ~hppa ~ppc ~s390 ~sparc ~x86"
61 # upstream bug #2597171, pyewf has implicit declarations
62 #IUSE="debug python rawio unicode"
63 IUSE="debug rawio unicode"
64
65 DEPEND="
66 sys-libs/e2fsprogs-libs
67 sys-libs/zlib
68 dev-libs/openssl"
69 RDEPEND="${DEPEND}"
70
71 src_unpack() {
72 unpack ${A}
73 cd "${S}"
74 eautoreconf
75 }
76
77 src_compile() {
78 econf \
79 $(use_enable unicode wide-character-type) \
80 $(use_enable rawio raw-access) \
81 $(use_enable debug verbose-output) \
82 $(use_enable debug debug-output)
83 emake
84 }
85
86 src_install() {
87 emake install DESTDIR="${D}"
88 dodoc AUTHORS ChangeLog NEWS README documents/*.txt
89 doman manuals/*.1 manuals/*.3
90 }