Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/ncp/
Date: Thu, 17 Sep 2020 20:35:18
Message-Id: 1600374909.0ea4ec2ecb6f3f17fabfb6e53f7e512c300effe1.sam@gentoo
1 commit: 0ea4ec2ecb6f3f17fabfb6e53f7e512c300effe1
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Wed Aug 19 17:28:30 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 17 20:35:09 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ea4ec2e
7
8 net-misc/ncp: remove old
9
10 Package-Manager: Portage-3.0.2, Repoman-2.3.23
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/17162
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 net-misc/ncp/ncp-1.2.4-r1.ebuild | 42 ----------------------------------------
16 1 file changed, 42 deletions(-)
17
18 diff --git a/net-misc/ncp/ncp-1.2.4-r1.ebuild b/net-misc/ncp/ncp-1.2.4-r1.ebuild
19 deleted file mode 100644
20 index 6309febf029..00000000000
21 --- a/net-misc/ncp/ncp-1.2.4-r1.ebuild
22 +++ /dev/null
23 @@ -1,42 +0,0 @@
24 -# Copyright 1999-2019 Gentoo Authors
25 -# Distributed under the terms of the GNU General Public License v2
26 -
27 -EAPI=7
28 -
29 -inherit toolchain-funcs
30 -
31 -DESCRIPTION="Utility for copying files in a LAN (npoll, npush)"
32 -HOMEPAGE="https://www.fefe.de/ncp/"
33 -SRC_URI="https://dl.fefe.de/${P}.tar.bz2"
34 -
35 -LICENSE="public-domain" # mail from author, bug 446540
36 -SLOT="0"
37 -KEYWORDS="~amd64 ~x86"
38 -IUSE="diet"
39 -
40 -DEPEND=">=dev-libs/libowfat-0.28-r1
41 - diet? ( dev-libs/dietlibc )"
42 -
43 -src_prepare() {
44 - default
45 - rm Makefile || die
46 - sed -e '/^ncp:/,+5s:strip:#strip:' \
47 - -i GNUmakefile || die
48 -}
49 -
50 -src_compile() {
51 - emake \
52 - CC="$(use diet && echo "diet -Os ")$(tc-getCC)" \
53 - CFLAGS="${CFLAGS} -I/usr/include/libowfat" \
54 - LDFLAGS="${LDFLAGS}" \
55 - STRIP="#"
56 -}
57 -
58 -src_install() {
59 - dobin ${PN}
60 - dosym ${PN} /usr/bin/npoll
61 - dosym ${PN} /usr/bin/npush
62 -
63 - doman ncp.1 npush.1
64 - dodoc NEWS
65 -}