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: libusb-1.0.9-r1.ebuild ChangeLog
Date: Thu, 01 Aug 2013 12:26:12
Message-Id: 20130801122604.87A5B2171C@flycatcher.gentoo.org
1 ssuominen 13/08/01 12:26:04
2
3 Modified: ChangeLog
4 Added: libusb-1.0.9-r1.ebuild
5 Log:
6 Move the shared library to / for hid2hci binary from net-wireless/bluez wrt #478878 by Alexis Ballier
7
8 (Portage version: 2.2.0_alpha188/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
9
10 Revision Changes Path
11 1.148 dev-libs/libusb/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb/ChangeLog?rev=1.148&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb/ChangeLog?rev=1.148&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb/ChangeLog?r1=1.147&r2=1.148
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libusb/ChangeLog,v
20 retrieving revision 1.147
21 retrieving revision 1.148
22 diff -u -r1.147 -r1.148
23 --- ChangeLog 5 Jun 2013 02:08:01 -0000 1.147
24 +++ ChangeLog 1 Aug 2013 12:26:04 -0000 1.148
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/libusb
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/ChangeLog,v 1.147 2013/06/05 02:08:01 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/ChangeLog,v 1.148 2013/08/01 12:26:04 ssuominen Exp $
30 +
31 +*libusb-1.0.9-r1 (01 Aug 2013)
32 +
33 + 01 Aug 2013; Samuli Suominen <ssuominen@g.o> +libusb-1.0.9-r1.ebuild:
34 + Move the shared library to / for hid2hci binary from net-wireless/bluez wrt
35 + #478878 by Alexis Ballier
36
37 05 Jun 2013; Samuli Suominen <ssuominen@g.o> metadata.xml:
38 Peter Stuge from libusb upstream is sharing ebuild maintenance by his own
39
40
41
42 1.1 dev-libs/libusb/libusb-1.0.9-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb/libusb-1.0.9-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb/libusb-1.0.9-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libusb-1.0.9-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/libusb-1.0.9-r1.ebuild,v 1.1 2013/08/01 12:26:04 ssuominen Exp $
52
53 EAPI=5
54 inherit eutils toolchain-funcs
55
56 DESCRIPTION="Userspace access to USB devices"
57 HOMEPAGE="http://libusb.org/"
58 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
59
60 LICENSE="LGPL-2.1"
61 SLOT="1"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -amd64-fbsd -x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
63 IUSE="debug doc static-libs"
64
65 RDEPEND="!dev-libs/libusbx:1"
66 DEPEND="doc? ( app-doc/doxygen )"
67
68 DOCS="AUTHORS NEWS PORTING README THANKS TODO"
69
70 src_configure() {
71 econf \
72 $(use_enable static-libs static) \
73 $(use_enable debug debug-log)
74 }
75
76 src_compile() {
77 default
78
79 use doc && emake -C doc docs
80 }
81
82 src_install() {
83 default
84
85 gen_usr_ldscript -a usb-1.0
86
87 if use doc; then
88 insinto /usr/share/doc/${PF}/examples
89 doins examples/*.c
90
91 dohtml doc/html/*
92 fi
93
94 prune_libtool_files
95 }