diff options
author | 2009-05-13 06:17:18 +0000 | |
---|---|---|
committer | 2009-05-13 06:17:18 +0000 | |
commit | 4b43b46c7ab1e96f31cb9fa1d84d45b0643025b2 (patch) | |
tree | 0a041f9431a6f144c3aa81799963cf5b9a698eb6 /sys-apps/usbutils | |
parent | Version bump. (diff) | |
download | gentoo-2-4b43b46c7ab1e96f31cb9fa1d84d45b0643025b2.tar.gz gentoo-2-4b43b46c7ab1e96f31cb9fa1d84d45b0643025b2.tar.bz2 gentoo-2-4b43b46c7ab1e96f31cb9fa1d84d45b0643025b2.zip |
Version bump #269623 by Dennis Schridde.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/usbutils')
-rw-r--r-- | sys-apps/usbutils/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/usbutils/usbutils-0.82.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/sys-apps/usbutils/ChangeLog b/sys-apps/usbutils/ChangeLog index ab0ade8c177d..5b935cdeadb2 100644 --- a/sys-apps/usbutils/ChangeLog +++ b/sys-apps/usbutils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/usbutils # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/usbutils/ChangeLog,v 1.76 2009/04/27 02:36:05 gregkh Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/usbutils/ChangeLog,v 1.77 2009/05/13 06:17:18 vapier Exp $ + +*usbutils-0.82 (13 May 2009) + + 13 May 2009; Mike Frysinger <vapier@gentoo.org> +usbutils-0.82.ebuild: + Version bump #269623 by Dennis Schridde. *usbutils-0.80 (27 Apr 2009) diff --git a/sys-apps/usbutils/usbutils-0.82.ebuild b/sys-apps/usbutils/usbutils-0.82.ebuild new file mode 100644 index 000000000000..80e18dfd5114 --- /dev/null +++ b/sys-apps/usbutils/usbutils-0.82.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/usbutils/usbutils-0.82.ebuild,v 1.1 2009/05/13 06:17:18 vapier Exp $ + +DESCRIPTION="USB enumeration utilities" +HOMEPAGE="http://linux-usb.sourceforge.net/" +SRC_URI="mirror://sourceforge/linux-usb/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="network-cron zlib" + +DEPEND="dev-libs/libusb" + # zlib? ( sys-libs/zlib )" +RDEPEND="${DEPEND}" + +src_compile() { + # robbat2 - 2007/10/29 + # zlib disabled pending a revision of update-usbids from upstream. + # $(use_enable zlib) \ + econf \ + --datadir=/usr/share/misc \ + --disable-zlib \ + || die "./configure failed" + emake || die "make failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" + newbin "${FILESDIR}"/usbmodules.sh usbmodules || die + newsbin update-usbids.sh update-usbids || die "update-usbids failed" + dodoc AUTHORS ChangeLog NEWS README + + use network-cron || return 0 + exeinto /etc/cron.monthly + newexe "${FILESDIR}"/usbutils.cron update-usbids || die +} |