diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2020-05-25 13:17:31 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2020-05-25 13:17:31 +0200 |
commit | 2cf64cdcbf02230c01c86870583316aeaed1db63 (patch) | |
tree | 43b01b839bf8a3917e5345ea558acfe580a1407f /net-misc | |
parent | net-misc/etherdfs: respect users LDFLAGS (diff) | |
download | gentoo-2cf64cdcbf02230c01c86870583316aeaed1db63.tar.gz gentoo-2cf64cdcbf02230c01c86870583316aeaed1db63.tar.bz2 gentoo-2cf64cdcbf02230c01c86870583316aeaed1db63.zip |
net-misc/etherdfs: drop old version
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/etherdfs/etherdfs-20180203.ebuild | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/net-misc/etherdfs/etherdfs-20180203.ebuild b/net-misc/etherdfs/etherdfs-20180203.ebuild deleted file mode 100644 index 5a35f39a6a70..000000000000 --- a/net-misc/etherdfs/etherdfs-20180203.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MY_PN="ethersrv-linux" -MY_PV_TSR="0.8.2" -MY_P="${MY_PN}-${PV}" - -inherit systemd toolchain-funcs - -DESCRIPTION="An ethernet-based file system for DOS" -HOMEPAGE="http://etherdfs.sourceforge.net/" -SRC_URI=" - mirror://sourceforge/${PN}/${MY_P}.tar.xz - tsr? ( mirror://sourceforge/${PN}/v${MY_PV_TSR}/${PN}.zip -> ${P}.zip ) -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="tsr" - -BDEPEND="tsr? ( app-arch/unzip )" - -S="${WORKDIR}/${MY_P}" - -PATCHES=( "${FILESDIR}/${P}-makefile.patch" ) - -DOCS=( "ethersrv-linux.txt" "history.txt" ) - -src_compile() { - tc-export CC - - default -} - -src_install() { - dobin ethersrv-linux - - if use tsr; then - insinto /usr/share/etherdfs - newins ../ETHERDFS.EXE etherdfs.exe - - DOCS+=( "../ETHERDFS.TXT" "../HISTORY.TXT" ) - fi - - newinitd "${FILESDIR}"/etherdfs.initd etherdfs - newconfd "${FILESDIR}"/etherdfs.confd etherdfs - systemd_dounit "${FILESDIR}"/etherdfs.service - - einstalldocs -} |