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/libusbx: libusbx-1.0.16-r1.ebuild ChangeLog
Date: Thu, 01 Aug 2013 12:32:26
Message-Id: 20130801123223.2802A2171C@flycatcher.gentoo.org
1 ssuominen 13/08/01 12:32:23
2
3 Modified: ChangeLog
4 Added: libusbx-1.0.16-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.14 dev-libs/libusbx/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusbx/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusbx/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusbx/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libusbx/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 15 Jul 2013 08:42:02 -0000 1.13
24 +++ ChangeLog 1 Aug 2013 12:32:23 -0000 1.14
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/libusbx
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusbx/ChangeLog,v 1.13 2013/07/15 08:42:02 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusbx/ChangeLog,v 1.14 2013/08/01 12:32:23 ssuominen Exp $
30 +
31 +*libusbx-1.0.16-r1 (01 Aug 2013)
32 +
33 + 01 Aug 2013; Samuli Suominen <ssuominen@g.o> +libusbx-1.0.16-r1.ebuild:
34 + Move the shared library to / for hid2hci binary from net-wireless/bluez wrt
35 + #478878 by Alexis Ballier
36
37 *libusbx-1.0.16 (15 Jul 2013)
38
39
40
41
42 1.1 dev-libs/libusbx/libusbx-1.0.16-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusbx/libusbx-1.0.16-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusbx/libusbx-1.0.16-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libusbx-1.0.16-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/libusbx/libusbx-1.0.16-r1.ebuild,v 1.1 2013/08/01 12:32:22 ssuominen Exp $
52
53 EAPI=5
54 inherit eutils toolchain-funcs
55
56 DESCRIPTION="Userspace access to USB devices"
57 HOMEPAGE="http://libusbx.sourceforge.net/"
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 -x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
63 IUSE="debug doc examples static-libs test udev"
64
65 RDEPEND="!dev-libs/libusb:1
66 udev? ( >=virtual/udev-200 )"
67 DEPEND="${RDEPEND}
68 doc? ( app-doc/doxygen )"
69
70 DOCS="AUTHORS ChangeLog NEWS PORTING README THANKS TODO"
71
72 src_configure() {
73 econf \
74 $(use_enable static-libs static) \
75 $(use_enable udev) \
76 $(use_enable debug debug-log) \
77 $(use_enable test tests-build)
78 }
79
80 src_compile() {
81 default
82
83 use doc && emake -C doc docs
84 }
85
86 src_test() {
87 default
88
89 # noinst_PROGRAMS from tests/Makefile.am
90 tests/stress || die
91 }
92
93 src_install() {
94 default
95
96 gen_usr_ldscript -a usb-1.0
97
98 if use examples; then
99 insinto /usr/share/doc/${PF}/examples
100 doins examples/*.{c,h}
101 fi
102
103 use doc && dohtml doc/html/*
104
105 prune_libtool_files
106 }