diff options
author | 2004-03-06 10:53:07 +0000 | |
---|---|---|
committer | 2004-03-06 10:53:07 +0000 | |
commit | edd1523bd08707566975d55e3662612bbc16d759 (patch) | |
tree | 7106e278aeb8c72a7f7ad6ff98065961b1f56942 /dev-util/usb-robot/usb-robot-0.2.0.ebuild | |
parent | A new revision, includes the bootsplash_resize script. (Manifest recommit) (diff) | |
download | gentoo-2-edd1523bd08707566975d55e3662612bbc16d759.tar.gz gentoo-2-edd1523bd08707566975d55e3662612bbc16d759.tar.bz2 gentoo-2-edd1523bd08707566975d55e3662612bbc16d759.zip |
Initial import. Thanks to Julien TIERNY <julien.tierny@wanadoo.fr> (bug #42247).
Diffstat (limited to 'dev-util/usb-robot/usb-robot-0.2.0.ebuild')
-rw-r--r-- | dev-util/usb-robot/usb-robot-0.2.0.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-util/usb-robot/usb-robot-0.2.0.ebuild b/dev-util/usb-robot/usb-robot-0.2.0.ebuild new file mode 100644 index 000000000000..d472fecd16da --- /dev/null +++ b/dev-util/usb-robot/usb-robot-0.2.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/usb-robot/usb-robot-0.2.0.ebuild,v 1.1 2004/03/06 10:53:07 pyrania Exp $ + +IUSE="usb perl readline" + +S=${WORKDIR}/${P} +DESCRIPTION="USB Reverse engineering tools" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +HOMEPAGE="http://usb-robot.sourceforge.net/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +DEPEND="dev-libs/libusb" + +src_compile() { + econf \ + --enable-smtp \ + `use_enable perl` \ + `use_enable readline` || die + emake || die +} + +src_install () { + einstall || die + dodoc AUTHORS NEWS README TODO COPYING ChangeLog +} |