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.6.12.ebuild
Date: Mon, 28 Nov 2011 05:42:12
Message-Id: 20111128054156.B20BB2004B@flycatcher.gentoo.org
1 radhermit 11/11/28 05:41:56
2
3 Modified: ChangeLog afflib-3.6.12.ebuild
4 Log:
5 Fix autotools-utils usage (bug #392137). Fix python module CFLAGS handling.
6
7 (Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.21 app-forensics/afflib/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/afflib/ChangeLog?rev=1.21&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/afflib/ChangeLog?rev=1.21&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/afflib/ChangeLog?r1=1.20&r2=1.21
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-forensics/afflib/ChangeLog,v
19 retrieving revision 1.20
20 retrieving revision 1.21
21 diff -u -r1.20 -r1.21
22 --- ChangeLog 26 Nov 2011 10:50:21 -0000 1.20
23 +++ ChangeLog 28 Nov 2011 05:41:56 -0000 1.21
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-forensics/afflib
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/ChangeLog,v 1.20 2011/11/26 10:50:21 radhermit Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/ChangeLog,v 1.21 2011/11/28 05:41:56 radhermit Exp $
29 +
30 + 28 Nov 2011; Tim Harder <radhermit@g.o> afflib-3.6.12.ebuild,
31 + +files/afflib-3.6.12-pyaff-header.patch,
32 + files/afflib-3.6.12-python-module.patch:
33 + Fix autotools-utils usage (bug #392137). Fix python module CFLAGS handling.
34
35 26 Nov 2011; Tim Harder <radhermit@g.o> metadata.xml:
36 Improve s3 use flag description.
37
38
39
40 1.7 app-forensics/afflib/afflib-3.6.12.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/afflib/afflib-3.6.12.ebuild?rev=1.7&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/afflib/afflib-3.6.12.ebuild?rev=1.7&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/afflib/afflib-3.6.12.ebuild?r1=1.6&r2=1.7
45
46 Index: afflib-3.6.12.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/app-forensics/afflib/afflib-3.6.12.ebuild,v
49 retrieving revision 1.6
50 retrieving revision 1.7
51 diff -u -r1.6 -r1.7
52 --- afflib-3.6.12.ebuild 26 Nov 2011 10:43:27 -0000 1.6
53 +++ afflib-3.6.12.ebuild 28 Nov 2011 05:41:56 -0000 1.7
54 @@ -1,6 +1,6 @@
55 # Copyright 1999-2011 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/afflib-3.6.12.ebuild,v 1.6 2011/11/26 10:43:27 hwoarang Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/afflib/afflib-3.6.12.ebuild,v 1.7 2011/11/28 05:41:56 radhermit Exp $
59
60 EAPI="4"
61 PYTHON_DEPEND="python? 2"
62 @@ -25,7 +25,10 @@
63 s3? ( net-misc/curl )"
64 DEPEND="${RDEPEND}"
65
66 -AUTOTOOLS_IN_SOURCE_BUILD=1
67 +PATCHES=(
68 + "${FILESDIR}"/${P}-python-module.patch
69 + "${FILESDIR}"/${P}-pyaff-header.patch
70 +)
71
72 pkg_setup() {
73 if use python ; then
74 @@ -35,11 +38,10 @@
75 }
76
77 src_prepare() {
78 - epatch "${FILESDIR}"/${P}-python-module.patch
79 -
80 sed -i -e "/FLAGS/s: -g::" configure.ac || die
81 sed -i -e "/-static/d" tools/Makefile.am || die
82
83 + autotools-utils_src_prepare
84 eautoreconf
85 }
86
87 @@ -48,16 +50,12 @@
88 use ncurses || export ac_cv_lib_ncurses_initscr=no
89 use readline || export ac_cv_lib_readline_readline=no
90
91 - econf \
92 - $(use_enable fuse) \
93 - $(use_enable python) \
94 - $(use_enable qemu) \
95 - $(use_enable s3) \
96 - $(use_enable static-libs static) \
97 + local myeconfargs=(
98 + $(use_enable fuse)
99 + $(use_enable python)
100 + $(use_enable qemu)
101 + $(use_enable s3)
102 $(use_enable threads threading)
103 -}
104 -
105 -src_install() {
106 - default
107 - remove_libtool_files all
108 + )
109 + autotools-utils_src_configure
110 }