Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libusb-compat: ChangeLog libusb-compat-0.1.3.ebuild
Date: Wed, 28 Sep 2011 13:06:33
Message-Id: 20110928130623.6CE9720036@flycatcher.gentoo.org
1 ssuominen 11/09/28 13:06:23
2
3 Modified: ChangeLog libusb-compat-0.1.3.ebuild
4 Log:
5 USE="static-libs" and remove useless libtool file.
6
7 (Portage version: 2.2.0_alpha59/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.6 dev-libs/libusb-compat/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb-compat/ChangeLog?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb-compat/ChangeLog?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb-compat/ChangeLog?r1=1.5&r2=1.6
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libusb-compat/ChangeLog,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- ChangeLog 20 Jan 2010 00:20:47 -0000 1.5
23 +++ ChangeLog 28 Sep 2011 13:06:23 -0000 1.6
24 @@ -1,6 +1,10 @@
25 # ChangeLog for dev-libs/libusb-compat
26 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb-compat/ChangeLog,v 1.5 2010/01/20 00:20:47 abcd Exp $
28 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb-compat/ChangeLog,v 1.6 2011/09/28 13:06:23 ssuominen Exp $
30 +
31 + 28 Sep 2011; Samuli Suominen <ssuominen@g.o>
32 + libusb-compat-0.1.3.ebuild:
33 + USE="static-libs" and remove useless libtool file.
34
35 20 Jan 2010; Jonathan Callen <abcd@g.o> libusb-compat-0.1.3.ebuild:
36 Keyword ~x86-linux
37
38
39
40 1.3 dev-libs/libusb-compat/libusb-compat-0.1.3.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb-compat/libusb-compat-0.1.3.ebuild?rev=1.3&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb-compat/libusb-compat-0.1.3.ebuild?rev=1.3&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb-compat/libusb-compat-0.1.3.ebuild?r1=1.2&r2=1.3
45
46 Index: libusb-compat-0.1.3.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libusb-compat/libusb-compat-0.1.3.ebuild,v
49 retrieving revision 1.2
50 retrieving revision 1.3
51 diff -u -r1.2 -r1.3
52 --- libusb-compat-0.1.3.ebuild 20 Jan 2010 00:20:47 -0000 1.2
53 +++ libusb-compat-0.1.3.ebuild 28 Sep 2011 13:06:23 -0000 1.3
54 @@ -1,6 +1,6 @@
55 -# Copyright 1999-2010 Gentoo Foundation
56 +# Copyright 1999-2011 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb-compat/libusb-compat-0.1.3.ebuild,v 1.2 2010/01/20 00:20:47 abcd Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb-compat/libusb-compat-0.1.3.ebuild,v 1.3 2011/09/28 13:06:23 ssuominen Exp $
60
61 EAPI="2"
62 inherit eutils
63 @@ -11,7 +11,7 @@
64 LICENSE="LGPL-2.1"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-linux"
67 -IUSE="debug"
68 +IUSE="debug static-libs"
69
70 RDEPEND="dev-libs/libusb:1
71 !dev-libs/libusb:0"
72 @@ -24,6 +24,7 @@
73
74 src_configure() {
75 econf \
76 + $(use_enable static-libs static) \
77 $(use_enable debug debug-log)
78 }
79
80 @@ -34,4 +35,6 @@
81
82 insinto /usr/share/doc/${PF}/examples
83 doins examples/*.c
84 +
85 + rm -f "${D}"/usr/lib*/libusb*.la
86 }