Gentoo Archives: gentoo-commits

From: "Tony Vroon (chainsaw)" <chainsaw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-nds/tac_plus: ChangeLog tac_plus-4.0.4.19-r4.ebuild tac_plus-4.0.4.19-r2.ebuild tac_plus-4.0.4.15.ebuild tac_plus-4.0.4.14.ebuild
Date: Thu, 28 Feb 2013 21:31:42
Message-Id: 20130228213138.7A0942171D@flycatcher.gentoo.org
1 chainsaw 13/02/28 21:31:37
2
3 Modified: ChangeLog
4 Added: tac_plus-4.0.4.19-r4.ebuild
5 Removed: tac_plus-4.0.4.19-r2.ebuild
6 tac_plus-4.0.4.15.ebuild tac_plus-4.0.4.14.ebuild
7 Log:
8 Automatic deansification was requested by the build system but not actually required. Remove to ensure compatibility with automake 1.12; closes bug #438638 by Diego Elio "Flameeyes" Pettenò. Remove old non-stable ebuilds.
9
10 (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key )
11
12 Revision Changes Path
13 1.16 net-nds/tac_plus/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/tac_plus/ChangeLog?rev=1.16&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/tac_plus/ChangeLog?rev=1.16&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/tac_plus/ChangeLog?r1=1.15&r2=1.16
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/net-nds/tac_plus/ChangeLog,v
22 retrieving revision 1.15
23 retrieving revision 1.16
24 diff -u -r1.15 -r1.16
25 --- ChangeLog 9 Dec 2012 10:27:58 -0000 1.15
26 +++ ChangeLog 28 Feb 2013 21:31:37 -0000 1.16
27 @@ -1,6 +1,15 @@
28 # ChangeLog for net-nds/tac_plus
29 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/net-nds/tac_plus/ChangeLog,v 1.15 2012/12/09 10:27:58 ulm Exp $
31 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
32 +# $Header: /var/cvsroot/gentoo-x86/net-nds/tac_plus/ChangeLog,v 1.16 2013/02/28 21:31:37 chainsaw Exp $
33 +
34 +*tac_plus-4.0.4.19-r4 (28 Feb 2013)
35 +
36 + 28 Feb 2013; Tony Vroon <chainsaw@g.o> -tac_plus-4.0.4.14.ebuild,
37 + -tac_plus-4.0.4.15.ebuild, -tac_plus-4.0.4.19-r2.ebuild,
38 + +tac_plus-4.0.4.19-r4.ebuild, +files/tac_plus-4.0.4.19-deansification.patch:
39 + Automatic deansification was requested by the build system but not actually
40 + required. Remove to ensure compatibility with automake 1.12; closes bug
41 + #438638 by Diego Elio "Flameeyes" Pettenò. Remove old non-stable ebuilds.
42
43 09 Dec 2012; Ulrich Müller <ulm@g.o> tac_plus-4.0.4.14.ebuild,
44 tac_plus-4.0.4.15.ebuild, tac_plus-4.0.4.19-r2.ebuild,
45
46
47
48 1.1 net-nds/tac_plus/tac_plus-4.0.4.19-r4.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/tac_plus/tac_plus-4.0.4.19-r4.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/tac_plus/tac_plus-4.0.4.19-r4.ebuild?rev=1.1&content-type=text/plain
52
53 Index: tac_plus-4.0.4.19-r4.ebuild
54 ===================================================================
55 # Copyright 1999-2013 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/net-nds/tac_plus/tac_plus-4.0.4.19-r4.ebuild,v 1.1 2013/02/28 21:31:37 chainsaw Exp $
58
59 EAPI=5
60
61 inherit autotools base libtool
62
63 MY_P="tacacs+-F${PV}"
64 S="${WORKDIR}/${MY_P}"
65
66 DESCRIPTION="An updated version of Cisco's TACACS+ server"
67 HOMEPAGE="http://www.shrubbery.net/tac_plus/"
68 SRC_URI="ftp://ftp.shrubbery.net/pub/tac_plus/${MY_P}.tar.gz"
69
70 LICENSE="HPND RSA GPL-2" # GPL-2 only for init script
71 SLOT="0"
72 KEYWORDS="~amd64 ~ppc ~x86"
73 IUSE="debug finger maxsess tcpd skey static-libs"
74
75 DEPEND="skey? ( >=sys-auth/skey-1.1.5-r1 )
76 tcpd? ( sys-apps/tcp-wrappers )
77 sys-libs/pam"
78 RDEPEND="${DEPEND}"
79
80 PATCHES=(
81 "${FILESDIR}/${P}-parallelmake.patch"
82 "${FILESDIR}/${P}-deansification.patch"
83 )
84
85 src_prepare() {
86 base_src_prepare
87 AT_M4DIR="." eautoreconf
88 elibtoolize
89 }
90
91 src_configure() {
92 econf \
93 $(use_with skey) \
94 $(use_with tcpd libwrap) \
95 $(use_enable debug) \
96 $(use_enable finger) \
97 $(use_enable maxsess) \
98 $(use_enable static-libs static) \
99 || die "econf failed"
100 }
101
102 src_install() {
103 emake DESTDIR="${D}" install || die "install failed"
104
105 use static-libs || find "${D}" -name '*.la' -delete || die "Unable to remove spurious libtool archive"
106 dodoc CHANGES FAQ
107
108 newinitd "${FILESDIR}/tac_plus.init2" tac_plus
109 newconfd "${FILESDIR}/tac_plus.confd2" tac_plus
110
111 insinto /etc/tac_plus
112 newins "${FILESDIR}/tac_plus.conf2" tac_plus.conf
113 }