blob: 758629d8265979797869b15c7e3cfc9669f4cbe1 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/rescan-scsi-bus/rescan-scsi-bus-1.35.ebuild,v 1.1 2009/12/26 01:00:02 robbat2 Exp $
inherit eutils
DESCRIPTION="Script to rescan the SCSI bus without rebooting"
HOMEPAGE="http://www.garloff.de/kurt/linux/"
SCRIPT_NAME="${PN}.sh"
SRC_NAME="${SCRIPT_NAME}-${PV}"
SRC_URI="http://www.garloff.de/kurt/linux/${SRC_NAME}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
DEPEND=""
RDEPEND=">=sys-apps/sg3_utils-1.24
sys-apps/module-init-tools
app-shells/bash"
S="${WORKDIR}"
src_unpack() {
einfo "Unpacking into ${WORKDIR}/"
cp -f "${DISTDIR}"/${SRC_NAME} "${WORKDIR}"/${SCRIPT_NAME}
#epatch "${FILESDIR}"/${P}-support-sysfs-only-systems.patch
}
src_compile() {
einfo "Nothing to compile"
}
src_install() {
into /usr
dosbin ${SCRIPT_NAME}
# Some scripts look for this without the trailing .sh
# Some look for it with the trailing .sh, so have a symlink
dosym ${SCRIPT_NAME} /usr/sbin/${PN}
}
|