summaryrefslogtreecommitdiff
path: root/sys-kernel/vhba-dkms/vhba-dkms-20240202.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-06-19 10:33:34 +0100
committerV3n3RiX <venerix@koprulu.sector>2024-06-19 10:33:34 +0100
commit0a12402d75da2373f4ee4969cfe6ef82fc43c1ac (patch)
tree43d63e07a2a9ea1b5dbe6f6b3476a7dabcffa9db /sys-kernel/vhba-dkms/vhba-dkms-20240202.ebuild
parent6c4ad74c86ef31f69f563feb25af3355db4d3d53 (diff)
sys-kernel/vhba-dkms : EAPI bump
Diffstat (limited to 'sys-kernel/vhba-dkms/vhba-dkms-20240202.ebuild')
-rw-r--r--sys-kernel/vhba-dkms/vhba-dkms-20240202.ebuild47
1 files changed, 0 insertions, 47 deletions
diff --git a/sys-kernel/vhba-dkms/vhba-dkms-20240202.ebuild b/sys-kernel/vhba-dkms/vhba-dkms-20240202.ebuild
deleted file mode 100644
index 0a4a3fb9..00000000
--- a/sys-kernel/vhba-dkms/vhba-dkms-20240202.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-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
-}
-