Gentoo Archives: gentoo-commits

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