blob: d78784af9e4a36fea5daa0a722cf15b6cb671d58 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-block/scsiadd/scsiadd-1.95.ebuild,v 1.1 2007/05/16 21:57:51 sbriesen Exp $
inherit eutils toolchain-funcs flag-o-matic
DESCRIPTION="Add and remove SCSI devices from your Linux system during runtime"
HOMEPAGE="http://llg.cubic.org/tools/"
SRC_URI="http://llg.cubic.org/tools/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="suid"
DEPEND=""
pkg_setup() {
use suid && enewgroup scsi
}
src_unpack() {
unpack ${A}
cd "${S}"
# remove 'strip' command
sed -i -e "s:^\(.*strip.*\):#\1:g" Makefile.in
}
src_compile() {
# extra safety for suid
append-ldflags -Wl,-z,now
econf || die "econf failed"
emake CC="$(tc-getCC)" || die "emake failed"
}
src_install() {
dosbin scsiadd || die "install failed"
if use suid; then
fowners root:scsi /usr/sbin/scsiadd
fperms 4710 /usr/sbin/scsiadd
fi
dodoc NEWS README TODO
doman scsiadd.8
}
pkg_postinst() {
if use suid; then
ewarn
ewarn "You have chosen to install ${PN} with the binary setuid root. This"
ewarn "means that if there any undetected vulnerabilities in the binary,"
ewarn "then local users may be able to gain root access on your machine."
ewarn
fi
}
|