blob: d04ef737a3a1140e273cdea017bf075fc0ac3100 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2005 Gentoo Foundation
# 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.4 2005/05/07 20:46:55 dholm Exp $
IUSE="perl readline"
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 ~ppc"
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
}
|