blob: b46ec9af232e1de6b4f1d50f74da84948f05a8c4 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/vhba-1.0.0.ebuild,v 1.6 2008/08/22 22:07:29 maekke Exp $
inherit linux-info linux-mod eutils
DESCRIPTION="VHBA module provides Virtual (SCSI) Host Bus Adapter for the cdemu suite"
HOMEPAGE="http://cdemu.org"
SRC_URI="mirror://sourceforge/cdemu/vhba-module-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=">=virtual/linux-sources-2.6.19"
RDEPEND=""
S="${WORKDIR}/vhba-module-${PV}"
MODULE_NAMES="vhba(block:${S})"
BUILD_TARGETS="clean modules"
pkg_setup() {
CONFIG_CHECK="~BLK_DEV_SR ~CHR_DEV_SG"
linux-mod_pkg_setup
BUILD_PARAMS="KDIR=${KV_DIR}"
}
src_unpack() {
unpack ${A}
cd "${S}"
einfo "Patching Makefile"
epatch "${FILESDIR}"/${P}-makefile.patch || die "Failed to patch Makefile"
if kernel_is 2 6 24 ; then
einfo "Patching scatterlist"
epatch "${FILESDIR}"/${P}-scatterlist.patch || die "Failed to patch scatterlist"
fi
if kernel_is ge 2 6 25 ; then
einfo "Patching scatterlist"
epatch "${FILESDIR}"/${P}-scatterlist.patch || die "Failed to patch scatterlist"
einfo "Patching scsi_cmnd"
epatch "${FILESDIR}"/${P}-scsicmnd.patch || die "Failed to patch scsicmnd"
fi
}
src_compile() {
linux-mod_src_compile || die "Error: building module failed!"
}
src_install() {
KV_OBJ="ko"
linux-mod_src_install || die "Error: installing module failed!"
UDEV_RULES="/etc/udev/rules.d/70-vhba.rules"
einfo "Generating UDEV-rules ..."
mkdir -p "${D}"/${UDEV_RULES%/*}
echo -e "# do not edit this file, it will be overwritten on update\n#" \
> "${D}"/${UDEV_RULES}
echo -e "KERNEL==\"vhba_ctl\", NAME=\"%k\", MODE=\"0660\", OWNER=\"root\",GROUP=\"cdemu\"" >> "${D}"/${UDEV_RULES}
}
pkg_postinst() {
einfo "Generating cdemu group ..."
enewgroup cdemu
elog "Don't forget to add your user to the cdemu group "
elog "if you want to be able to use virtual cdemu devices."
linux-mod_pkg_postinst
}
pkg_postrm() {
linux-mod_pkg_postrm
}
|