diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-01-06 23:17:21 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-01-06 23:17:21 +0000 |
commit | d293ca6678d6b962dac574dc708e923789cc155f (patch) | |
tree | 95577af3051f61faa98f8d617698225fb4190f64 /sys-fs/vhba/vhba-20190831-r2.ebuild | |
parent | 5691afc709955e6d08588428fb86f5f5eb715f2c (diff) |
sys-fs/vhba : autoload the required kernel module at boot
Diffstat (limited to 'sys-fs/vhba/vhba-20190831-r2.ebuild')
-rw-r--r-- | sys-fs/vhba/vhba-20190831-r2.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/sys-fs/vhba/vhba-20190831-r2.ebuild b/sys-fs/vhba/vhba-20190831-r2.ebuild new file mode 100644 index 00000000..035f7a1f --- /dev/null +++ b/sys-fs/vhba/vhba-20190831-r2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +inherit eutils udev + +MY_P=vhba-module-${PV} +DESCRIPTION="Virtual (SCSI) Host Bus Adapter kernel module for the CDEmu suite" +HOMEPAGE="http://cdemu.org" +SRC_URI="mirror://sourceforge/cdemu/${MY_P}.tar.bz2" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="" + +RDEPEND=" + ~sys-kernel/${PN}-dkms-${PV} + virtual/udev" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + default + : +} + +src_compile() { + : +} + +src_install() { + dodoc AUTHORS ChangeLog README + + dodir "$(get_udevdir)"/rules.d + insinto "$(get_udevdir)"/rules.d + newins "${FILESDIR}/${PN}"-udev 69-vhba.rules + + dodir /etc/modules-load.d + insinto /etc/modules-load.d + newins "${FILESDIR}/${PN}"-kmod vhba.conf +} |