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_rc3.ebuild
Date: Mon, 09 Jan 2012 07:11:19
Message-Id: 20120109071108.5CFD42004B@flycatcher.gentoo.org
1 ssuominen 12/01/09 07:11:08
2
3 Modified: ChangeLog
4 Added: libusb-1.0.9_rc3.ebuild
5 Log:
6 Version bump to release candidate wrt #391677 by Luis Medinas. This is required for compability with usbredir.
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.125 dev-libs/libusb/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb/ChangeLog?rev=1.125&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb/ChangeLog?rev=1.125&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb/ChangeLog?r1=1.124&r2=1.125
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libusb/ChangeLog,v
20 retrieving revision 1.124
21 retrieving revision 1.125
22 diff -u -r1.124 -r1.125
23 --- ChangeLog 9 Jan 2012 06:55:00 -0000 1.124
24 +++ ChangeLog 9 Jan 2012 07:11:08 -0000 1.125
25 @@ -1,6 +1,12 @@
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.124 2012/01/09 06:55:00 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/ChangeLog,v 1.125 2012/01/09 07:11:08 ssuominen Exp $
30 +
31 +*libusb-1.0.9_rc3 (09 Jan 2012)
32 +
33 + 09 Jan 2012; Samuli Suominen <ssuominen@g.o> +libusb-1.0.9_rc3.ebuild:
34 + Version bump to release candidate wrt #391677 by Luis Medinas. This is
35 + required for compability with usbredir.
36
37 09 Jan 2012; Samuli Suominen <ssuominen@g.o> -libusb-0.1.12-r5.ebuild,
38 -libusb-0.1.12-r6.ebuild:
39
40
41
42 1.1 dev-libs/libusb/libusb-1.0.9_rc3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb/libusb-1.0.9_rc3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libusb/libusb-1.0.9_rc3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libusb-1.0.9_rc3.ebuild
48 ===================================================================
49 # Copyright 1999-2012 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_rc3.ebuild,v 1.1 2012/01/09 07:11:08 ssuominen Exp $
52
53 EAPI=4
54 inherit autotools
55
56 DESCRIPTION="Userspace access to USB devices"
57 HOMEPAGE="http://libusb.org/"
58 SRC_URI="mirror://debian/pool/main/libu/${PN}-${PV%.*}/${PN}-${PV%.*}_${PV/_/~}.orig.tar.gz"
59 #SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
60
61 LICENSE="LGPL-2.1"
62 SLOT="1"
63 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"
64 IUSE="debug doc static-libs"
65
66 RDEPEND=""
67 DEPEND="doc? ( app-doc/doxygen )"
68
69 DOCS="AUTHORS NEWS PORTING README THANKS TODO"
70
71 S=${WORKDIR}/${P/_/-}
72
73 src_prepare() {
74 # aclocal: couldn't open directory `m4': No such file or directory
75 mkdir m4
76
77 eautoreconf
78 }
79
80 src_configure() {
81 econf \
82 $(use_enable static-libs static) \
83 $(use_enable debug debug-log)
84 }
85
86 src_compile() {
87 default
88
89 use doc && emake -C doc docs
90 }
91
92 src_install() {
93 default
94
95 if use doc; then
96 insinto /usr/share/doc/${PF}/examples
97 doins examples/*.c
98
99 dohtml doc/html/*
100 fi
101
102 rm -f "${ED}"usr/lib*/libusb*.la
103 }