Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/fakeidentd/
Date: Wed, 04 May 2016 00:10:46
Message-Id: 1462320517.9116ef908b4789964f92bd37deccd2b671ed3c7f.wizardedit@gentoo
1 commit: 9116ef908b4789964f92bd37deccd2b671ed3c7f
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 3 23:32:47 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Wed May 4 00:08:37 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9116ef90
7
8 net-misc/fakeidentd: remove old version
9
10 Package-Manager: portage-2.2.26
11
12 net-misc/fakeidentd/fakeidentd-2.6.ebuild | 41 -------------------------------
13 1 file changed, 41 deletions(-)
14
15 diff --git a/net-misc/fakeidentd/fakeidentd-2.6.ebuild b/net-misc/fakeidentd/fakeidentd-2.6.ebuild
16 deleted file mode 100644
17 index 1d7695a..0000000
18 --- a/net-misc/fakeidentd/fakeidentd-2.6.ebuild
19 +++ /dev/null
20 @@ -1,41 +0,0 @@
21 -# Copyright 1999-2013 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=4
26 -
27 -inherit toolchain-funcs
28 -
29 -DESCRIPTION="A static, secure identd. One source file only!"
30 -HOMEPAGE="http://www.guru-group.fi/~too/sw/"
31 -SRC_URI="http://www.guru-group.fi/~too/sw/identd.readme -> ${P}.readme
32 - http://www.guru-group.fi/~too/sw/releases/identd.c -> ${P}.c"
33 -
34 -LICENSE="GPL-2"
35 -SLOT="0"
36 -KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 ~sh sparc x86"
37 -IUSE=""
38 -
39 -echoit() {
40 - echo "$@"
41 - "$@"
42 -}
43 -
44 -src_unpack() {
45 - mkdir -p "${S}"
46 - echoit cp "${DISTDIR}"/${P}.{c,readme} "${S}" || die
47 -}
48 -
49 -src_compile() {
50 - echoit $(tc-getCC) ${CFLAGS} ${LDFLAGS} \
51 - -DTRG=\"${PN}\" -DUSE_UNIX_OS -DVERSION=\"${PV}\" \
52 - -o ${PN} ${P}.c || die
53 -}
54 -
55 -src_install() {
56 - dosbin ${PN} || die
57 - newdoc ${P}.readme identd.readme
58 -
59 - newinitd "${FILESDIR}"/fakeidentd.rc fakeidentd
60 - newconfd "${FILESDIR}"/fakeidentd.confd fakeidentd
61 -}