Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/file: ChangeLog file-5.05.ebuild
Date: Mon, 04 Apr 2011 16:47:10
Message-Id: 20110404164700.4DDE920054@flycatcher.gentoo.org
1 ssuominen 11/04/04 16:47:00
2
3 Modified: ChangeLog file-5.05.ebuild
4 Log:
5 USE="static-libs" and punt libtool archive if it's not set.
6
7 (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.194 sys-apps/file/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.194&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?rev=1.194&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/ChangeLog?r1=1.193&r2=1.194
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v
19 retrieving revision 1.193
20 retrieving revision 1.194
21 diff -u -r1.193 -r1.194
22 --- ChangeLog 1 Mar 2011 14:53:26 -0000 1.193
23 +++ ChangeLog 4 Apr 2011 16:47:00 -0000 1.194
24 @@ -1,6 +1,9 @@
25 # ChangeLog for sys-apps/file
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.193 2011/03/01 14:53:26 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/ChangeLog,v 1.194 2011/04/04 16:47:00 ssuominen Exp $
29 +
30 + 04 Apr 2011; Samuli Suominen <ssuominen@g.o> file-5.05.ebuild:
31 + USE="static-libs" and punt libtool archive if it's not set.
32
33 01 Mar 2011; Jeroen Roovers <jer@g.o> file-5.05.ebuild:
34 Stable for HPPA (bug #355277).
35
36
37
38 1.9 sys-apps/file/file-5.05.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.05.ebuild?rev=1.9&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.05.ebuild?rev=1.9&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/file/file-5.05.ebuild?r1=1.8&r2=1.9
43
44 Index: file-5.05.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.05.ebuild,v
47 retrieving revision 1.8
48 retrieving revision 1.9
49 diff -u -r1.8 -r1.9
50 --- file-5.05.ebuild 1 Mar 2011 14:53:26 -0000 1.8
51 +++ file-5.05.ebuild 4 Apr 2011 16:47:00 -0000 1.9
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2011 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.05.ebuild,v 1.8 2011/03/01 14:53:26 jer Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-5.05.ebuild,v 1.9 2011/04/04 16:47:00 ssuominen Exp $
57
58 PYTHON_DEPEND="python? *"
59 SUPPORT_PYTHON_ABIS="1"
60 @@ -16,7 +16,7 @@
61 LICENSE="as-is"
62 SLOT="0"
63 KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
64 -IUSE="python"
65 +IUSE="python static-libs"
66
67 PYTHON_MODNAME="magic.py"
68
69 @@ -35,7 +35,7 @@
70 # file uses things like strndup() and wcwidth()
71 append-flags -D_GNU_SOURCE
72
73 - econf || die
74 + econf $(use_enable static-libs static)
75 emake || die
76
77 use python && cd python && distutils_src_compile
78 @@ -46,6 +46,7 @@
79 dodoc ChangeLog MAINT README
80
81 use python && cd python && distutils_src_install
82 + use static-libs || rm -f "${D}"/usr/lib*/libmagic.la
83 }
84
85 pkg_postinst() {