Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-nds/tac_plus/
Date: Mon, 24 Feb 2020 17:21:41
Message-Id: 1582564885.a050be76831bb9946e24f13261571f377faebc99.zlogene@gentoo
1 commit: a050be76831bb9946e24f13261571f377faebc99
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 24 17:21:25 2020 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 24 17:21:25 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a050be76
7
8 net-nds/tac_plus: Drop old
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12
13 net-nds/tac_plus/tac_plus-4.0.4.19-r3.ebuild | 54 ----------------------------
14 1 file changed, 54 deletions(-)
15
16 diff --git a/net-nds/tac_plus/tac_plus-4.0.4.19-r3.ebuild b/net-nds/tac_plus/tac_plus-4.0.4.19-r3.ebuild
17 deleted file mode 100644
18 index 0bb83adc782..00000000000
19 --- a/net-nds/tac_plus/tac_plus-4.0.4.19-r3.ebuild
20 +++ /dev/null
21 @@ -1,54 +0,0 @@
22 -# Copyright 1999-2012 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=4
26 -
27 -inherit autotools base libtool
28 -
29 -MY_P="tacacs+-F${PV}"
30 -S="${WORKDIR}/${MY_P}"
31 -
32 -DESCRIPTION="An updated version of Cisco's TACACS+ server"
33 -HOMEPAGE="http://www.shrubbery.net/tac_plus/"
34 -SRC_URI="ftp://ftp.shrubbery.net/pub/tac_plus/${MY_P}.tar.gz"
35 -
36 -LICENSE="HPND RSA GPL-2" # GPL-2 only for init script
37 -SLOT="0"
38 -KEYWORDS="amd64 ppc x86"
39 -IUSE="debug finger maxsess tcpd skey static-libs"
40 -
41 -DEPEND="skey? ( >=sys-auth/skey-1.1.5-r1 )
42 - tcpd? ( sys-apps/tcp-wrappers )
43 - sys-libs/pam"
44 -RDEPEND="${DEPEND}"
45 -
46 -PATCHES=( "${FILESDIR}/${P}-parallelmake.patch" )
47 -
48 -src_prepare() {
49 - base_src_prepare
50 - AT_M4DIR="." eautoreconf
51 - elibtoolize
52 -}
53 -
54 -src_configure() {
55 - econf \
56 - $(use_with skey) \
57 - $(use_with tcpd libwrap) \
58 - $(use_enable debug) \
59 - $(use_enable finger) \
60 - $(use_enable maxsess) \
61 - $(use_enable static-libs static)
62 -}
63 -
64 -src_install() {
65 - emake DESTDIR="${D}" install
66 -
67 - use static-libs || find "${D}" -name '*.la' -delete || die "Unable to remove spurious libtool archive"
68 - dodoc CHANGES FAQ
69 -
70 - newinitd "${FILESDIR}/tac_plus.init2" tac_plus
71 - newconfd "${FILESDIR}/tac_plus.confd2" tac_plus
72 -
73 - insinto /etc/tac_plus
74 - newins "${FILESDIR}/tac_plus.conf2" tac_plus.conf
75 -}