chainsaw 15/03/25 11:23:01 Modified: ChangeLog Added: tac_plus-4.0.4.27a.ebuild Log: Version bump, as requested by Reuben Farrelly in bug #540116. (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xB5058F9A)
Revision Changes Path 1.20 net-nds/tac_plus/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/tac_plus/ChangeLog?rev=1.20&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/tac_plus/ChangeLog?rev=1.20&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/tac_plus/ChangeLog?r1=1.19&r2=1.20 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-nds/tac_plus/ChangeLog,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- ChangeLog 5 Apr 2013 17:11:05 -0000 1.19 +++ ChangeLog 25 Mar 2015 11:23:01 -0000 1.20 @@ -1,6 +1,13 @@ # ChangeLog for net-nds/tac_plus -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-nds/tac_plus/ChangeLog,v 1.19 2013/04/05 17:11:05 ago Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-nds/tac_plus/ChangeLog,v 1.20 2015/03/25 11:23:01 chainsaw Exp $ + +*tac_plus-4.0.4.27a (25 Mar 2015) + + 25 Mar 2015; Tony Vroon <[email protected]> +tac_plus-4.0.4.27a.ebuild, + +files/tac_plus-4.0.4.27a-deansification.patch, + +files/tac_plus-4.0.4.27a-parallelmake.patch: + Version bump, as requested by Reuben Farrelly in bug #540116. 05 Apr 2013; Agostino Sarubbo <[email protected]> tac_plus-4.0.4.19-r4.ebuild: Stable for ppc, wrt bug #464472 1.1 net-nds/tac_plus/tac_plus-4.0.4.27a.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/tac_plus/tac_plus-4.0.4.27a.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/tac_plus/tac_plus-4.0.4.27a.ebuild?rev=1.1&content-type=text/plain Index: tac_plus-4.0.4.27a.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-nds/tac_plus/tac_plus-4.0.4.27a.ebuild,v 1.1 2015/03/25 11:23:01 chainsaw Exp $ EAPI=5 inherit autotools base libtool MY_P="tacacs+-F${PV}" S="${WORKDIR}/${MY_P}" DESCRIPTION="An updated version of Cisco's TACACS+ server" HOMEPAGE="http://www.shrubbery.net/tac_plus/" SRC_URI="ftp://ftp.shrubbery.net/pub/tac_plus/${MY_P}.tar.gz" LICENSE="HPND RSA GPL-2" # GPL-2 only for init script SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="debug finger maxsess tcpd skey static-libs" DEPEND="skey? ( >=sys-auth/skey-1.1.5-r1 ) tcpd? ( sys-apps/tcp-wrappers ) sys-libs/pam" RDEPEND="${DEPEND}" PATCHES=( "${FILESDIR}/${P}-parallelmake.patch" "${FILESDIR}/${P}-deansification.patch" ) src_prepare() { base_src_prepare mv configure.in configure.ac || die "Unable to quiet autoconf deprecation warning" AT_M4DIR="." eautoreconf elibtoolize } src_configure() { econf \ $(use_with skey) \ $(use_with tcpd libwrap) \ $(use_enable debug) \ $(use_enable finger) \ $(use_enable maxsess) \ $(use_enable static-libs static) \ || die "econf failed" } src_install() { emake DESTDIR="${D}" install || die "install failed" use static-libs || find "${D}" -name '*.la' -delete || die "Unable to remove spurious libtool archive" dodoc CHANGES FAQ newinitd "${FILESDIR}/tac_plus.init2" tac_plus newconfd "${FILESDIR}/tac_plus.confd2" tac_plus insinto /etc/tac_plus newins "${FILESDIR}/tac_plus.conf2" tac_plus.conf }
