diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-06-27 15:54:45 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-06-27 19:18:02 +0200 |
commit | 201725bbe706f93cb4df54fe91741e4696a3c900 (patch) | |
tree | 017d66a40e194d4fcf71b9554e87d1d0be987c99 /net-misc/ncp | |
parent | media-video/vlc: Drop 3.0.7 (diff) | |
download | gentoo-201725bbe706f93cb4df54fe91741e4696a3c900.tar.gz gentoo-201725bbe706f93cb4df54fe91741e4696a3c900.tar.bz2 gentoo-201725bbe706f93cb4df54fe91741e4696a3c900.zip |
net-misc/ncp: Drop 1.2.4 (r0)
Package-Manager: Portage-2.3.67, Repoman-2.3.16
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-misc/ncp')
-rw-r--r-- | net-misc/ncp/ncp-1.2.4.ebuild | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/net-misc/ncp/ncp-1.2.4.ebuild b/net-misc/ncp/ncp-1.2.4.ebuild deleted file mode 100644 index 12a07aed2c18..000000000000 --- a/net-misc/ncp/ncp-1.2.4.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils toolchain-funcs - -DESCRIPTION="utility for copying files in a LAN (npoll, npush)" -HOMEPAGE="http://www.fefe.de/ncp/" -SRC_URI="http://dl.fefe.de/${P}.tar.bz2" - -LICENSE="public-domain" # mail from author, bug 446540 -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="diet" - -RDEPEND="" -DEPEND=">=dev-libs/libowfat-0.28-r1 - diet? ( dev-libs/dietlibc )" - -src_prepare() { - 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 -} |