diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2009-11-11 07:31:24 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2009-11-11 07:31:24 +0000 |
commit | 1aa1a41ebd9a3cf76e2a444084d3d1bffa33f715 (patch) | |
tree | c7f21a132d5e455306777e452d77cb6a8c12cc16 /dev-libs | |
parent | Version bump. (diff) | |
download | gentoo-2-1aa1a41ebd9a3cf76e2a444084d3d1bffa33f715.tar.gz gentoo-2-1aa1a41ebd9a3cf76e2a444084d3d1bffa33f715.tar.bz2 gentoo-2-1aa1a41ebd9a3cf76e2a444084d3d1bffa33f715.zip |
Bug #292658: version bump.
(Portage version: 2.2_rc49/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libusb/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libusb/libusb-1.0.4.ebuild | 42 |
2 files changed, 48 insertions, 1 deletions
diff --git a/dev-libs/libusb/ChangeLog b/dev-libs/libusb/ChangeLog index e9f61b0fd8bf..5830ec221f9f 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.95 2009/08/30 23:26:54 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libusb/ChangeLog,v 1.96 2009/11/11 07:31:24 robbat2 Exp $ + +*libusb-1.0.4 (11 Nov 2009) + + 11 Nov 2009; Robin H. Johnson <robbat2@gentoo.org> +libusb-1.0.4.ebuild: + Bug #292658: version bump. *libusb-1.0.3 (30 Aug 2009) diff --git a/dev-libs/libusb/libusb-1.0.4.ebuild b/dev-libs/libusb/libusb-1.0.4.ebuild new file mode 100644 index 000000000000..398830fe4f77 --- /dev/null +++ b/dev-libs/libusb/libusb-1.0.4.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.4.ebuild,v 1.1 2009/11/11 07:31:24 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 +} |