diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-09-07 13:59:41 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-09-07 13:59:41 +0100 |
commit | 2f5188a560210d1bcb30320af28fc83431bdf22a (patch) | |
tree | cc03e2a61c24a7e83dce6c9a9a78bc47636dee34 /sys-kernel/vhba-dkms/vhba-dkms-20211218.ebuild | |
parent | 51ea041f1dadd25f013f7f4e0385d0aacd7f2ea4 (diff) |
sys-fs/vhba && co : version bump
Diffstat (limited to 'sys-kernel/vhba-dkms/vhba-dkms-20211218.ebuild')
-rw-r--r-- | sys-kernel/vhba-dkms/vhba-dkms-20211218.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/sys-kernel/vhba-dkms/vhba-dkms-20211218.ebuild b/sys-kernel/vhba-dkms/vhba-dkms-20211218.ebuild new file mode 100644 index 00000000..3d1ce55a --- /dev/null +++ b/sys-kernel/vhba-dkms/vhba-dkms-20211218.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit eutils + +MY_P=vhba-module-${PV} +DESCRIPTION="Virtual (SCSI) Host Bus Adapter kernel module for the CDEmu suite sources" +HOMEPAGE="http://cdemu.org" +SRC_URI="https://download.sourceforge.net/cdemu/vhba-module/${MY_P}.tar.xz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="amd64 ~hppa x86" +IUSE="" + +DEPEND="sys-kernel/dkms" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + default + sed -e '/ccflags/s/-Werror$/-Wall/' \ + -i Makefile || die "sed failed" +} + +src_compile() { + : +} + +src_install() { + cp "${FILESDIR}/dkms.conf" "${S}" || die + dodir /usr/src/${P} + insinto /usr/src/${P} + doins -r "${S}"/* +} + +pkg_postinst() { + dkms add ${PN}/${PV} +} + +pkg_prerm() { + dkms remove ${PN}/${PV} --all +} + |