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/afflib: ChangeLog afflib-3.5.8.ebuild
Date: Fri, 26 Feb 2010 20:25:28
Message-Id: E1Nl6kV-0006sS-6q@stork.gentoo.org
1 patrick 10/02/26 20:25:23
2
3 Modified: ChangeLog
4 Added: afflib-3.5.8.ebuild
5 Log:
6 Bump
7 (Portage version: 2.2_rc63/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.8 app-forensics/afflib/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/afflib/ChangeLog?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/afflib/ChangeLog?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/afflib/ChangeLog?r1=1.7&r2=1.8
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-forensics/afflib/ChangeLog,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- ChangeLog 8 Nov 2009 12:01:39 -0000 1.7
23 +++ ChangeLog 26 Feb 2010 20:25:22 -0000 1.8
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-forensics/afflib
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/ChangeLog,v 1.7 2009/11/08 12:01:39 patrick Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/ChangeLog,v 1.8 2010/02/26 20:25:22 patrick Exp $
30 +
31 +*afflib-3.5.8 (26 Feb 2010)
32 +
33 + 26 Feb 2010; Patrick Lauer <patrick@g.o> +afflib-3.5.8.ebuild:
34 + Bump
35
36 *afflib-3.5.2 (08 Nov 2009)
37
38
39
40
41 1.1 app-forensics/afflib/afflib-3.5.8.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/afflib/afflib-3.5.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-forensics/afflib/afflib-3.5.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: afflib-3.5.8.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/afflib/afflib-3.5.8.ebuild,v 1.1 2010/02/26 20:25:22 patrick Exp $
51
52 inherit eutils
53
54 DESCRIPTION="Library that implements the AFF image standard"
55 HOMEPAGE="http://www.afflib.org/"
56 SRC_URI="http://www.afflib.org/downloads/${P}.tar.gz"
57
58 LICENSE="BSD-4"
59 SLOT="0"
60 KEYWORDS="~amd64 ~arm ~hppa ~ppc ~s390 ~sparc ~x86"
61 IUSE="ewf fuse ncurses python qemu readline s3 threads"
62
63 DEPEND="
64 ewf? ( app-forensics/libewf )
65 fuse? ( sys-fs/fuse )
66 ncurses? ( sys-libs/ncurses )
67 python? ( dev-lang/python )
68 readline? ( sys-libs/readline )
69 s3? ( net-misc/curl dev-libs/expat )
70 sys-libs/zlib
71 dev-libs/openssl"
72 RDEPEND=${DEPEND}
73
74 src_compile() {
75 econf \
76 $(use_enable fuse) \
77 $(use_enable ewf libewf) \
78 $(use_enable python) \
79 $(use_enable qemu) \
80 $(use_enable s3) \
81 $(use_enable threads threading)
82 emake || die "build failed"
83 }
84
85 src_install() {
86 emake install DESTDIR="${D}" || die "install failed"
87 use s3 || {
88 rm -f "${D}/usr/bin/s3"
89 }
90 }