blob: 3da0d44179c63ea5ae1fea91c5d915d171b6eeaf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DESCRIPTION="add and remove scsi devices on the fly"
HOMEPAGE="http://llg.cubic.org/tools/"
SRC_URI="http://llg.cubic.org/tools/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
src_compile() {
econf $(use_with debug) || die "configure failed!"
emake || die "make failed"
}
src_install() {
dosbin scsiadd
}
|