summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2020-08-19 19:28:30 +0200
committerSam James <sam@gentoo.org>2020-09-17 20:35:09 +0000
commit0ea4ec2ecb6f3f17fabfb6e53f7e512c300effe1 (patch)
tree77e53cf168d84bbd9105f593aed4cd7f380e5642
parentnet-misc/ncp: remove diet use flag, fix bug #737254 (diff)
downloadgentoo-0ea4ec2e.tar.gz
gentoo-0ea4ec2e.tar.bz2
gentoo-0ea4ec2e.zip
net-misc/ncp: remove old
Package-Manager: Portage-3.0.2, Repoman-2.3.23 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/17162 Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--net-misc/ncp/ncp-1.2.4-r1.ebuild42
1 files changed, 0 insertions, 42 deletions
diff --git a/net-misc/ncp/ncp-1.2.4-r1.ebuild b/net-misc/ncp/ncp-1.2.4-r1.ebuild
deleted file mode 100644
index 6309febf0296..000000000000
--- a/net-misc/ncp/ncp-1.2.4-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="Utility for copying files in a LAN (npoll, npush)"
-HOMEPAGE="https://www.fefe.de/ncp/"
-SRC_URI="https://dl.fefe.de/${P}.tar.bz2"
-
-LICENSE="public-domain" # mail from author, bug 446540
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="diet"
-
-DEPEND=">=dev-libs/libowfat-0.28-r1
- diet? ( dev-libs/dietlibc )"
-
-src_prepare() {
- default
- rm Makefile || die
- sed -e '/^ncp:/,+5s:strip:#strip:' \
- -i GNUmakefile || die
-}
-
-src_compile() {
- emake \
- CC="$(use diet && echo "diet -Os ")$(tc-getCC)" \
- CFLAGS="${CFLAGS} -I/usr/include/libowfat" \
- LDFLAGS="${LDFLAGS}" \
- STRIP="#"
-}
-
-src_install() {
- dobin ${PN}
- dosym ${PN} /usr/bin/npoll
- dosym ${PN} /usr/bin/npush
-
- doman ncp.1 npush.1
- dodoc NEWS
-}