diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-11-26 23:07:50 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-11-26 23:07:50 +0000 |
commit | 70f99c6d3becb010a471b607f82e430ffc261ea0 (patch) | |
tree | 8f0bf5694767812508c140e2a69e0d0b5e04591a /sys-apps/usbutils/usbutils-0.71-r2.ebuild | |
parent | Stable on ppc64 (diff) | |
download | gentoo-2-70f99c6d3becb010a471b607f82e430ffc261ea0.tar.gz gentoo-2-70f99c6d3becb010a471b607f82e430ffc261ea0.tar.bz2 gentoo-2-70f99c6d3becb010a471b607f82e430ffc261ea0.zip |
Move usb.ids update to a monthly cronjob #156183 by Petteri Räty.
(Portage version: 2.1.2_rc2-r2)
Diffstat (limited to 'sys-apps/usbutils/usbutils-0.71-r2.ebuild')
-rw-r--r-- | sys-apps/usbutils/usbutils-0.71-r2.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/sys-apps/usbutils/usbutils-0.71-r2.ebuild b/sys-apps/usbutils/usbutils-0.71-r2.ebuild new file mode 100644 index 000000000000..f342c9e58d52 --- /dev/null +++ b/sys-apps/usbutils/usbutils-0.71-r2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/usbutils/usbutils-0.71-r2.ebuild,v 1.1 2006/11/26 23:07:50 vapier Exp $ + +inherit eutils + +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="" + +DEPEND="dev-libs/libusb" + +src_unpack() { + unpack ${A} + cd "${S}" + + # put usb.ids in same place as pci.ids (/usr/share/misc) + sed -i \ + -e 's:/usr/share/usb.ids:/usr/share/misc/usb.ids:' \ + lsusb.8 || die "sed lsusb.8" + sed -e '/^DEST=/s:=usb.ids:=/usr/share/misc/usb.ids:' \ + update-usbids.sh > update-usbids + + epatch "${FILESDIR}"/${P}-new-video-format.patch #111781 +} + +src_compile() { + econf \ + --datadir=/usr/share/misc \ + --enable-usbmodules \ + || die "./configure failed" + emake || die "make failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" + dosbin update-usbids || die "update-usbids failed" + dodoc AUTHORS ChangeLog NEWS README + + exeinto /etc/cron.monthly + newexe "${FILESDIR}"/usbutils.cron update-usbids || die +} |