Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libusb: ChangeLog libusb-1.0.7.ebuild
Date: Sun, 02 May 2010 21:52:22
Message-Id: 20100502215218.CED8B2C280@corvid.gentoo.org
1 robbat2 10/05/02 21:52:18
2
3 Modified: ChangeLog
4 Added: libusb-1.0.7.ebuild
5 Log:
6 Bug #317209: Version bump.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.101 dev-libs/libusb/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libusb/ChangeLog?rev=1.101&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libusb/ChangeLog?rev=1.101&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libusb/ChangeLog?r1=1.100&r2=1.101
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libusb/ChangeLog,v
19 retrieving revision 1.100
20 retrieving revision 1.101
21 diff -p -w -b -B -u -u -r1.100 -r1.101
22 --- ChangeLog 21 Feb 2010 03:42:38 -0000 1.100
23 +++ ChangeLog 2 May 2010 21:52:18 -0000 1.101
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-libs/libusb
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/ChangeLog,v 1.100 2010/02/21 03:42:38 abcd Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/ChangeLog,v 1.101 2010/05/02 21:52:18 robbat2 Exp $
29 +
30 +*libusb-1.0.7 (02 May 2010)
31 +
32 + 02 May 2010; Robin H. Johnson <robbat2@g.o> +libusb-1.0.7.ebuild:
33 + Bug #317209: Version bump.
34
35 *libusb-0.1.12-r7 (21 Feb 2010)
36
37
38
39
40 1.1 dev-libs/libusb/libusb-1.0.7.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libusb/libusb-1.0.7.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libusb/libusb-1.0.7.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libusb-1.0.7.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/libusb-1.0.7.ebuild,v 1.1 2010/05/02 21:52:18 robbat2 Exp $
50
51 EAPI="2"
52
53 DESCRIPTION="Userspace access to USB devices"
54 HOMEPAGE="http://libusb.org/"
55 SRC_URI="mirror://sourceforge/libusb/${P}.tar.bz2"
56 LICENSE="LGPL-2.1"
57 SLOT="1"
58 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
59 IUSE="debug doc"
60
61 DEPEND="doc? ( app-doc/doxygen )"
62 RDEPEND=""
63
64 src_configure() {
65 econf \
66 $(use_enable debug debug-log)
67 }
68
69 src_compile() {
70 default
71
72 if use doc ; then
73 cd doc
74 emake docs || die "making docs failed"
75 fi
76 }
77
78 src_install() {
79 emake DESTDIR="${D}" install || die "emake install failed"
80 dodoc AUTHORS ChangeLog NEWS PORTING README THANKS TODO
81
82 if use doc ; then
83 insinto /usr/share/doc/${PF}/examples
84 doins examples/*.c
85
86 dohtml doc/html/*
87 fi
88 }