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/afflib: ChangeLog afflib-3.7.0.ebuild
Date: Tue, 01 May 2012 05:18:36
Message-Id: 20120501051821.861322004B@flycatcher.gentoo.org
1 radhermit 12/05/01 05:18:21
2
3 Modified: ChangeLog
4 Added: afflib-3.7.0.ebuild
5 Log:
6 Version bump. Update HOMEPAGE.
7
8 (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.30 app-forensics/afflib/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/afflib/ChangeLog?rev=1.30&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/afflib/ChangeLog?rev=1.30&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/afflib/ChangeLog?r1=1.29&r2=1.30
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-forensics/afflib/ChangeLog,v
20 retrieving revision 1.29
21 retrieving revision 1.30
22 diff -u -r1.29 -r1.30
23 --- ChangeLog 6 Mar 2012 12:22:34 -0000 1.29
24 +++ ChangeLog 1 May 2012 05:18:21 -0000 1.30
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-forensics/afflib
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/ChangeLog,v 1.29 2012/03/06 12:22:34 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/ChangeLog,v 1.30 2012/05/01 05:18:21 radhermit Exp $
30 +
31 +*afflib-3.7.0 (01 May 2012)
32 +
33 + 01 May 2012; Tim Harder <radhermit@g.o> +afflib-3.7.0.ebuild:
34 + Version bump. Update HOMEPAGE.
35
36 *afflib-3.6.16 (06 Mar 2012)
37
38
39
40
41 1.1 app-forensics/afflib/afflib-3.7.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/afflib/afflib-3.7.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/afflib/afflib-3.7.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: afflib-3.7.0.ebuild
47 ===================================================================
48 # Copyright 1999-2012 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.7.0.ebuild,v 1.1 2012/05/01 05:18:21 radhermit Exp $
51
52 EAPI="4"
53 PYTHON_DEPEND="python? 2"
54 AUTOTOOLS_AUTORECONF=1
55
56 inherit autotools-utils python
57
58 DESCRIPTION="Library that implements the AFF image standard"
59 HOMEPAGE="https://github.com/simsong/AFFLIBv3"
60 SRC_URI="mirror://github/simsong/AFFLIBv3/${P}.tar.gz"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~amd64 ~hppa ~ppc ~x86"
65 IUSE="fuse ncurses python qemu readline s3 static-libs threads"
66
67 RDEPEND="dev-libs/expat
68 dev-libs/openssl
69 sys-libs/zlib
70 fuse? ( sys-fs/fuse )
71 ncurses? ( sys-libs/ncurses )
72 readline? ( sys-libs/readline )
73 s3? ( net-misc/curl )"
74 DEPEND="${RDEPEND}"
75
76 PATCHES=(
77 "${FILESDIR}"/${PN}-3.6.12-python-module.patch
78 "${FILESDIR}"/${PN}-3.6.12-pyaff-header.patch
79 )
80
81 pkg_setup() {
82 if use python ; then
83 python_set_active_version 2
84 python_pkg_setup
85 fi
86 }
87
88 src_prepare() {
89 sed -i -e "/FLAGS/s: -g::" configure.ac || die
90 sed -i -e "/-static/d" tools/Makefile.am || die
91
92 autotools-utils_src_prepare
93 }
94
95 src_configure() {
96 # Hacks for automagic dependencies
97 use ncurses || export ac_cv_lib_ncurses_initscr=no
98 use readline || export ac_cv_lib_readline_readline=no
99
100 local myeconfargs=(
101 $(use_enable fuse)
102 $(use_enable python)
103 $(use_enable qemu)
104 $(use_enable s3)
105 $(use_enable threads threading)
106 )
107 autotools-utils_src_configure
108 }