summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conikost@gentoo.org>2022-02-09 22:20:55 +0100
committerConrad Kostecki <conikost@gentoo.org>2022-02-09 23:56:23 +0100
commit80458d892423b64904710f1cef94fce21060b294 (patch)
tree9633991158fa3735a3811ee3e30c37964fab2979 /net-misc/ethflop
parentnet-misc/ethflop: update EAPI 7 -> 8 (diff)
downloadgentoo-80458d892423b64904710f1cef94fce21060b294.tar.gz
gentoo-80458d892423b64904710f1cef94fce21060b294.tar.bz2
gentoo-80458d892423b64904710f1cef94fce21060b294.zip
net-misc/ethflop: drop 20191003
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-misc/ethflop')
-rw-r--r--net-misc/ethflop/ethflop-20191003.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/net-misc/ethflop/ethflop-20191003.ebuild b/net-misc/ethflop/ethflop-20191003.ebuild
deleted file mode 100644
index 2849cf041382..000000000000
--- a/net-misc/ethflop/ethflop-20191003.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2019-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit systemd toolchain-funcs
-
-DESCRIPTION="A network-backed floppy emulator for DOS"
-HOMEPAGE="http://ethflop.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.zip"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="tsr"
-
-BDEPEND="
- app-arch/unzip
- tsr? ( dev-lang/nasm )
-"
-
-PATCHES=( "${FILESDIR}/${P}-makefile.patch" )
-
-S="${WORKDIR}"
-
-src_compile() {
- tc-export CC
- default
-
- use tsr && emake tsr
-}
-
-src_install() {
- dobin ethflopd
-
- if use tsr; then
- insinto /usr/share/ethflop
- doins ethflop.com
- fi
-
- newinitd "${FILESDIR}"/ethflopd.initd ethflopd
- newconfd "${FILESDIR}"/ethflopd.confd ethflopd
- systemd_dounit "${FILESDIR}"/ethflopd.service
-
- dodoc ethflop.txt
-}