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