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: ChangeLog libusb-1.0.9.ebuild
Date: Fri, 20 Apr 2012 08:38:43
Message-Id: 20120420083829.5D77E2004B@flycatcher.gentoo.org
1 ssuominen 12/04/20 08:38:29
2
3 Modified: ChangeLog
4 Added: libusb-1.0.9.ebuild
5 Log:
6 Version bump wrt #412745 by Peter Stuge
7
8 (Portage version: 2.2.0_alpha100/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.134 dev-libs/libusb/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb/ChangeLog?rev=1.134&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb/ChangeLog?rev=1.134&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb/ChangeLog?r1=1.133&r2=1.134
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libusb/ChangeLog,v
20 retrieving revision 1.133
21 retrieving revision 1.134
22 diff -u -r1.133 -r1.134
23 --- ChangeLog 6 Mar 2012 22:09:21 -0000 1.133
24 +++ ChangeLog 20 Apr 2012 08:38:29 -0000 1.134
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/libusb
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/ChangeLog,v 1.133 2012/03/06 22:09:21 ranger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/ChangeLog,v 1.134 2012/04/20 08:38:29 ssuominen Exp $
30 +
31 +*libusb-1.0.9 (20 Apr 2012)
32 +
33 + 20 Apr 2012; Samuli Suominen <ssuominen@g.o> +libusb-1.0.9.ebuild:
34 + Version bump wrt #412745 by Peter Stuge
35
36 06 Mar 2012; Brent Baude <ranger@g.o> libusb-1.0.9_rc3.ebuild:
37 Marking libusb-1.0.9_rc3 ~ppc for bug 387959
38
39
40
41 1.1 dev-libs/libusb/libusb-1.0.9.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb/libusb-1.0.9.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb/libusb-1.0.9.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libusb-1.0.9.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/dev-libs/libusb/libusb-1.0.9.ebuild,v 1.1 2012/04/20 08:38:29 ssuominen Exp $
51
52 EAPI=4
53
54 DESCRIPTION="Userspace access to USB devices"
55 HOMEPAGE="http://libusb.org/"
56 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
57
58 LICENSE="LGPL-2.1"
59 SLOT="1"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
61 IUSE="debug doc static-libs"
62
63 RDEPEND=""
64 DEPEND="doc? ( app-doc/doxygen )"
65
66 DOCS="AUTHORS NEWS PORTING README THANKS TODO"
67
68 src_configure() {
69 econf \
70 $(use_enable static-libs static) \
71 $(use_enable debug debug-log)
72 }
73
74 src_compile() {
75 default
76
77 use doc && emake -C doc docs
78 }
79
80 src_install() {
81 default
82
83 if use doc; then
84 insinto /usr/share/doc/${PF}/examples
85 doins examples/*.c
86
87 dohtml doc/html/*
88 fi
89
90 rm -f "${ED}"/usr/lib*/lib*.la
91 }