Gentoo Archives: gentoo-commits

From: "Maxim Koltsov (maksbotan)" <maksbotan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/hivex: hivex-1.3.3-r1.ebuild hivex-1.3.5-r1.ebuild hivex-1.3.2-r2.ebuild ChangeLog hivex-1.3.3.ebuild hivex-1.3.5.ebuild hivex-1.3.2.ebuild hivex-1.3.2-r1.ebuild
Date: Wed, 02 May 2012 12:24:42
Message-Id: 20120502122425.808D22004B@flycatcher.gentoo.org
1 maksbotan 12/05/02 12:24:25
2
3 Modified: ChangeLog
4 Added: hivex-1.3.3-r1.ebuild hivex-1.3.5-r1.ebuild
5 hivex-1.3.2-r2.ebuild
6 Removed: hivex-1.3.3.ebuild hivex-1.3.5.ebuild
7 hivex-1.3.2.ebuild hivex-1.3.2-r1.ebuild
8 Log:
9 Fix runpath and ldflags in ruby bindings, bug 412099
10
11 (Portage version: 2.1.10.57/cvs/Linux x86_64)
12
13 Revision Changes Path
14 1.14 app-misc/hivex/ChangeLog
15
16 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/hivex/ChangeLog?rev=1.14&view=markup
17 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/hivex/ChangeLog?rev=1.14&content-type=text/plain
18 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/hivex/ChangeLog?r1=1.13&r2=1.14
19
20 Index: ChangeLog
21 ===================================================================
22 RCS file: /var/cvsroot/gentoo-x86/app-misc/hivex/ChangeLog,v
23 retrieving revision 1.13
24 retrieving revision 1.14
25 diff -u -r1.13 -r1.14
26 --- ChangeLog 25 Mar 2012 10:37:40 -0000 1.13
27 +++ ChangeLog 2 May 2012 12:24:25 -0000 1.14
28 @@ -1,6 +1,19 @@
29 # ChangeLog for app-misc/hivex
30 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
31 -# $Header: /var/cvsroot/gentoo-x86/app-misc/hivex/ChangeLog,v 1.13 2012/03/25 10:37:40 maksbotan Exp $
32 +# $Header: /var/cvsroot/gentoo-x86/app-misc/hivex/ChangeLog,v 1.14 2012/05/02 12:24:25 maksbotan Exp $
33 +
34 +*hivex-1.3.5-r1 (02 May 2012)
35 +*hivex-1.3.2-r2 (02 May 2012)
36 +*hivex-1.3.3-r1 (02 May 2012)
37 +
38 + 02 May 2012; Maxim Koltsov <maksbotan@g.o>
39 + +files/1.3.3/0004-ruby_runpath_fix-1.3.3.patch,
40 + +files/1.3.5/0004-ruby_runpath_fix-1.3.5.patch,
41 + +files/ruby_runpath_fix-1.3.2.patch, +hivex-1.3.2-r2.ebuild,
42 + +hivex-1.3.3-r1.ebuild, +hivex-1.3.5-r1.ebuild,
43 + -files/autoconf_fix-1.3.1.patch, -hivex-1.3.2-r1.ebuild, -hivex-1.3.2.ebuild,
44 + -hivex-1.3.3.ebuild, -hivex-1.3.5.ebuild:
45 + Fix runpath and ldflags in ruby bindings, bug 412099
46
47 *hivex-1.3.5 (25 Mar 2012)
48
49
50
51
52 1.1 app-misc/hivex/hivex-1.3.3-r1.ebuild
53
54 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/hivex/hivex-1.3.3-r1.ebuild?rev=1.1&view=markup
55 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/hivex/hivex-1.3.3-r1.ebuild?rev=1.1&content-type=text/plain
56
57 Index: hivex-1.3.3-r1.ebuild
58 ===================================================================
59 # Copyright 1999-2012 Gentoo Foundation
60 # Distributed under the terms of the GNU General Public License v2
61 # $Header: /var/cvsroot/gentoo-x86/app-misc/hivex/hivex-1.3.3-r1.ebuild,v 1.1 2012/05/02 12:24:25 maksbotan Exp $
62
63 EAPI=4
64
65 WANT_AUTOMAKE="1.11"
66 AUTOTOOLS_IN_SOURCE_BUILD=1
67 AUTOTOOLS_AUTORECONF=1
68
69 PYTHON_DEPEND="python? 2:2.6"
70 inherit base autotools-utils perl-app python
71
72 DESCRIPTION="Library for reading and writing Windows Registry 'hive' binary files"
73 HOMEPAGE="http://libguestfs.org"
74 SRC_URI="http://libguestfs.org/download/${PN}/${P}.tar.gz"
75
76 LICENSE="LGPL-2.1"
77 SLOT="0"
78 KEYWORDS="~amd64 ~x86"
79 IUSE="ocaml readline perl python test static-libs ruby"
80
81 RDEPEND="virtual/libiconv
82 virtual/libintl
83 dev-libs/libxml2:2
84 ocaml? ( dev-lang/ocaml[ocamlopt]
85 dev-ml/findlib[ocamlopt]
86 )
87 readline? ( sys-libs/readline )
88 perl? ( dev-perl/IO-stringy )
89 "
90
91 DEPEND="${RDEPEND}
92 dev-lang/perl
93 perl? (
94 test? ( dev-perl/Pod-Coverage
95 dev-perl/Test-Pod-Coverage ) )
96 ruby? ( dev-ruby/rake )
97 "
98 PATCHES=("${FILESDIR}"/"${PV}"/*.patch)
99 DOCS=(README)
100
101 pkg_setup() {
102 if use python; then
103 python_set_active_version 2
104 python_pkg_setup
105 python_need_rebuild
106 fi
107 }
108
109 src_prepare() {
110 autotools-utils_src_prepare
111 }
112
113 src_configure() {
114 local myeconfargs=(
115 $(use_with readline)
116 $(use_enable ocaml)
117 $(use_enable perl)
118 --enable-nls
119 $(use_enable python)
120 $(use_enable ruby)
121 --disable-rpath )
122
123 autotools-utils_src_configure
124 }
125
126 src_test() {
127 autotools-utils_src_compile check
128 }
129
130 src_install() {
131 strip-linguas -i po
132
133 autotools-utils_src_install "LINGUAS=""${LINGUAS}"""
134
135 if use perl; then
136 fixlocalpod
137 fi
138 }
139
140
141
142 1.1 app-misc/hivex/hivex-1.3.5-r1.ebuild
143
144 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/hivex/hivex-1.3.5-r1.ebuild?rev=1.1&view=markup
145 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/hivex/hivex-1.3.5-r1.ebuild?rev=1.1&content-type=text/plain
146
147 Index: hivex-1.3.5-r1.ebuild
148 ===================================================================
149 # Copyright 1999-2012 Gentoo Foundation
150 # Distributed under the terms of the GNU General Public License v2
151 # $Header: /var/cvsroot/gentoo-x86/app-misc/hivex/hivex-1.3.5-r1.ebuild,v 1.1 2012/05/02 12:24:25 maksbotan Exp $
152
153 EAPI=4
154
155 WANT_AUTOMAKE="1.11"
156 AUTOTOOLS_IN_SOURCE_BUILD=1
157 AUTOTOOLS_AUTORECONF=1
158
159 USE_RUBY="ruby18"
160 RUBY_OPTIONAL=yes
161 PYTHON_DEPEND="python? 2:2.6"
162
163 inherit base autotools-utils perl-app python
164
165 DESCRIPTION="Library for reading and writing Windows Registry 'hive' binary files"
166 HOMEPAGE="http://libguestfs.org"
167 SRC_URI="http://libguestfs.org/download/${PN}/${P}.tar.gz"
168
169 LICENSE="LGPL-2.1"
170 SLOT="0"
171 KEYWORDS="~amd64 ~x86"
172 IUSE="ocaml readline perl python test static-libs ruby"
173
174 RDEPEND="virtual/libiconv
175 virtual/libintl
176 dev-libs/libxml2:2
177 ocaml? ( dev-lang/ocaml[ocamlopt]
178 dev-ml/findlib[ocamlopt]
179 )
180 readline? ( sys-libs/readline )
181 perl? ( dev-perl/IO-stringy )
182 "
183
184 DEPEND="${RDEPEND}
185 dev-lang/perl
186 perl? (
187 test? ( dev-perl/Pod-Coverage
188 dev-perl/Test-Pod-Coverage ) )
189 ruby? ( dev-ruby/rake )
190 "
191 PATCHES=("${FILESDIR}"/"${PV}"/*.patch)
192 DOCS=(README)
193
194 pkg_setup() {
195 if use python; then
196 python_set_active_version 2
197 python_pkg_setup
198 python_need_rebuild
199 fi
200 }
201
202 src_prepare() {
203 autotools-utils_src_prepare
204 }
205
206 src_configure() {
207 local myeconfargs=(
208 $(use_with readline)
209 $(use_enable ocaml)
210 $(use_enable perl)
211 --enable-nls
212 $(use_enable python)
213 $(use_enable ruby)
214 --disable-rpath )
215
216 autotools-utils_src_configure
217 }
218
219 src_test() {
220 autotools-utils_src_compile check
221 }
222
223 src_install() {
224 strip-linguas -i po
225
226 autotools-utils_src_install "LINGUAS=""${LINGUAS}"""
227
228 if use perl; then
229 fixlocalpod
230 fi
231 }
232
233
234
235 1.1 app-misc/hivex/hivex-1.3.2-r2.ebuild
236
237 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/hivex/hivex-1.3.2-r2.ebuild?rev=1.1&view=markup
238 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/hivex/hivex-1.3.2-r2.ebuild?rev=1.1&content-type=text/plain
239
240 Index: hivex-1.3.2-r2.ebuild
241 ===================================================================
242 # Copyright 1999-2012 Gentoo Foundation
243 # Distributed under the terms of the GNU General Public License v2
244 # $Header: /var/cvsroot/gentoo-x86/app-misc/hivex/hivex-1.3.2-r2.ebuild,v 1.1 2012/05/02 12:24:25 maksbotan Exp $
245
246 EAPI=4
247
248 WANT_AUTOMAKE="1.11"
249 AUTOTOOLS_IN_SOURCE_BUILD=1
250 AUTOTOOLS_AUTORECONF=1
251
252 PYTHON_DEPEND="python? 2:2.6"
253 inherit base autotools-utils perl-app python
254
255 DESCRIPTION="Library for reading and writing Windows Registry 'hive' binary files"
256 HOMEPAGE="http://libguestfs.org"
257 SRC_URI="http://libguestfs.org/download/${PN}/${P}.tar.gz"
258
259 LICENSE="LGPL-2.1"
260 SLOT="0"
261 KEYWORDS="~amd64 ~x86"
262 IUSE="ocaml readline perl python test static-libs ruby"
263
264 RDEPEND="virtual/libiconv
265 virtual/libintl
266 dev-libs/libxml2:2
267 ocaml? ( dev-lang/ocaml[ocamlopt]
268 dev-ml/findlib[ocamlopt]
269 )
270 readline? ( sys-libs/readline )
271 perl? ( dev-perl/IO-stringy )
272 "
273
274 DEPEND="${RDEPEND}
275 dev-lang/perl
276 perl? (
277 test? ( dev-perl/Pod-Coverage
278 dev-perl/Test-Pod-Coverage ) )
279 ruby? ( dev-ruby/rake )
280 "
281 PATCHES=("${FILESDIR}"/autoconf_fix-${PV}.patch
282 "${FILESDIR}"/python-test-fix-${PV}.patch
283 "${FILESDIR}"/ruby_runpath_fix-${PV}.patch)
284 DOCS=(README)
285
286 pkg_setup() {
287 if use python; then
288 python_set_active_version 2
289 python_pkg_setup
290 python_need_rebuild
291 fi
292 }
293
294 src_prepare() {
295 autotools-utils_src_prepare
296 }
297
298 src_configure() {
299 local myeconfargs=(
300 $(use_with readline)
301 $(use_enable ocaml)
302 $(use_enable perl)
303 --enable-nls
304 $(use_enable python)
305 $(use_enable ruby)
306 --disable-rpath )
307
308 autotools-utils_src_configure
309 }
310
311 src_test() {
312 autotools-utils_src_compile check
313 }
314
315 src_install() {
316 strip-linguas -i po
317
318 autotools-utils_src_install "LINGUAS=""${LINGUAS}"""
319
320 if use perl; then
321 fixlocalpod
322 fi
323 }