Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/etherdfs/
Date: Mon, 25 May 2020 11:17:50
Message-Id: 1590405451.2cf64cdcbf02230c01c86870583316aeaed1db63.conikost@gentoo
1 commit: 2cf64cdcbf02230c01c86870583316aeaed1db63
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 25 11:17:31 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Mon May 25 11:17:31 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cf64cdc
7
8 net-misc/etherdfs: drop old version
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 net-misc/etherdfs/etherdfs-20180203.ebuild | 53 ------------------------------
14 1 file changed, 53 deletions(-)
15
16 diff --git a/net-misc/etherdfs/etherdfs-20180203.ebuild b/net-misc/etherdfs/etherdfs-20180203.ebuild
17 deleted file mode 100644
18 index 5a35f39a6a7..00000000000
19 --- a/net-misc/etherdfs/etherdfs-20180203.ebuild
20 +++ /dev/null
21 @@ -1,53 +0,0 @@
22 -# Copyright 2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -MY_PN="ethersrv-linux"
28 -MY_PV_TSR="0.8.2"
29 -MY_P="${MY_PN}-${PV}"
30 -
31 -inherit systemd toolchain-funcs
32 -
33 -DESCRIPTION="An ethernet-based file system for DOS"
34 -HOMEPAGE="http://etherdfs.sourceforge.net/"
35 -SRC_URI="
36 - mirror://sourceforge/${PN}/${MY_P}.tar.xz
37 - tsr? ( mirror://sourceforge/${PN}/v${MY_PV_TSR}/${PN}.zip -> ${P}.zip )
38 -"
39 -
40 -LICENSE="MIT"
41 -SLOT="0"
42 -KEYWORDS="~amd64 ~x86"
43 -IUSE="tsr"
44 -
45 -BDEPEND="tsr? ( app-arch/unzip )"
46 -
47 -S="${WORKDIR}/${MY_P}"
48 -
49 -PATCHES=( "${FILESDIR}/${P}-makefile.patch" )
50 -
51 -DOCS=( "ethersrv-linux.txt" "history.txt" )
52 -
53 -src_compile() {
54 - tc-export CC
55 -
56 - default
57 -}
58 -
59 -src_install() {
60 - dobin ethersrv-linux
61 -
62 - if use tsr; then
63 - insinto /usr/share/etherdfs
64 - newins ../ETHERDFS.EXE etherdfs.exe
65 -
66 - DOCS+=( "../ETHERDFS.TXT" "../HISTORY.TXT" )
67 - fi
68 -
69 - newinitd "${FILESDIR}"/etherdfs.initd etherdfs
70 - newconfd "${FILESDIR}"/etherdfs.confd etherdfs
71 - systemd_dounit "${FILESDIR}"/etherdfs.service
72 -
73 - einstalldocs
74 -}