Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/nca/
Date: Fri, 29 Apr 2016 19:32:39
Message-Id: 1461958333.1279df54e0542d56b632873946b2c953ae7447f6.wizardedit@gentoo
1 commit: 1279df54e0542d56b632873946b2c953ae7447f6
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 29 17:51:18 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 29 19:32:13 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1279df54
7
8 sys-apps/nca: remove nca-0.9.0
9
10 Package-Manager: portage-2.2.26
11
12 sys-apps/nca/nca-0.9.0.ebuild | 42 ------------------------------------------
13 1 file changed, 42 deletions(-)
14
15 diff --git a/sys-apps/nca/nca-0.9.0.ebuild b/sys-apps/nca/nca-0.9.0.ebuild
16 deleted file mode 100644
17 index 0c7bc45..0000000
18 --- a/sys-apps/nca/nca-0.9.0.ebuild
19 +++ /dev/null
20 @@ -1,42 +0,0 @@
21 -# Copyright 1999-2012 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI="2"
26 -
27 -inherit eutils toolchain-funcs
28 -
29 -DESCRIPTION="Network Console on Acid"
30 -HOMEPAGE="http://www.xenoclast.org/nca/"
31 -SRC_URI="http://www.xenoclast.org/nca/download/${P}.tar.gz"
32 -
33 -LICENSE="BSD GPL-2"
34 -SLOT="0"
35 -KEYWORDS="~amd64 ~x86"
36 -IUSE=""
37 -
38 -RDEPEND="dev-libs/openssl
39 - sys-libs/zlib"
40 -
41 -DEPEND="dev-lang/perl
42 - ${RDEPEND}"
43 -
44 -src_prepare() {
45 - sed -i -e "s:^\([[:space:]]\+\$(MAKE) install\):\1 DESTDIR=\$(DESTDIR):g" \
46 - -e "s:=\(\$(CFLAGS)\):=\"\1\":g" -e "s:=\(\$(CC)\):=\"\1\":g" Makefile
47 -
48 - sed -i -e "s:-s sshd:sshd:g" ncad.patch
49 -}
50 -
51 -src_compile() {
52 - emake -j1 CFLAGS="${CFLAGS}" CC=$(tc-getCC) || die "emake failed"
53 -}
54 -
55 -src_install() {
56 - dodir /sbin
57 - emake BINDIR="${D}sbin" MANDIR="${D}usr/share/man" SYSCONF_DIR="${D}etc" \
58 - DESTDIR="${D}" install_nca install_ssh install_man
59 -
60 - newinitd "${FILESDIR}/ncad.initd" ncad
61 - dodoc ChangeLog README* rc/ncad.template
62 -}