diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2009-12-26 01:22:46 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2009-12-26 01:22:46 +0000 |
commit | bb061278969cad15071ffc1661f02191d5990374 (patch) | |
tree | 9883264dcd516734a582baa08df9c48b3dfc54f4 /dev-libs/libusb | |
parent | Bug #297404, version bump. (diff) | |
download | gentoo-2-bb061278969cad15071ffc1661f02191d5990374.tar.gz gentoo-2-bb061278969cad15071ffc1661f02191d5990374.tar.bz2 gentoo-2-bb061278969cad15071ffc1661f02191d5990374.zip |
Bug #296408 version bump.
(Portage version: 2.2_rc58/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libusb')
-rw-r--r-- | dev-libs/libusb/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libusb/libusb-1.0.6.ebuild | 42 |
2 files changed, 48 insertions, 1 deletions
diff --git a/dev-libs/libusb/ChangeLog b/dev-libs/libusb/ChangeLog index 13168f700227..32e685ab632c 100644 --- a/dev-libs/libusb/ChangeLog +++ b/dev-libs/libusb/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libusb # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/ChangeLog,v 1.98 2009/11/16 02:03:28 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/ChangeLog,v 1.99 2009/12/26 01:22:46 robbat2 Exp $ + +*libusb-1.0.6 (26 Dec 2009) + + 26 Dec 2009; Robin H. Johnson <robbat2@gentoo.org> +libusb-1.0.6.ebuild: + Bug #296408 version bump. *libusb-1.0.5 (16 Nov 2009) diff --git a/dev-libs/libusb/libusb-1.0.6.ebuild b/dev-libs/libusb/libusb-1.0.6.ebuild new file mode 100644 index 000000000000..46a8c9c3d150 --- /dev/null +++ b/dev-libs/libusb/libusb-1.0.6.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/libusb-1.0.6.ebuild,v 1.1 2009/12/26 01:22:46 robbat2 Exp $ + +EAPI="2" + +DESCRIPTION="Userspace access to USB devices" +HOMEPAGE="http://libusb.org/" +SRC_URI="mirror://sourceforge/libusb/${P}.tar.bz2" +LICENSE="LGPL-2.1" +SLOT="1" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -x86-fbsd" +IUSE="debug doc" + +DEPEND="doc? ( app-doc/doxygen )" +RDEPEND="" + +src_configure() { + econf \ + $(use_enable debug debug-log) +} + +src_compile() { + default + + if use doc ; then + cd doc + emake docs || die "making docs failed" + fi +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog NEWS PORTING README THANKS TODO + + if use doc ; then + insinto /usr/share/doc/${PF}/examples + doins examples/*.c + + dohtml doc/html/* + fi +} |