diff options
author | Tony Vroon <chainsaw@gentoo.org> | 2008-02-13 12:55:45 +0000 |
---|---|---|
committer | Tony Vroon <chainsaw@gentoo.org> | 2008-02-13 12:55:45 +0000 |
commit | ba853368b9ca6b5775c71d572cfea26fe8d9c45c (patch) | |
tree | 7c219bd6f93b943a1dac14e9996d8e7acee8cc60 /net-nds/tac_plus | |
parent | alpha stable wrt #209942 (diff) | |
download | gentoo-2-ba853368b9ca6b5775c71d572cfea26fe8d9c45c.tar.gz gentoo-2-ba853368b9ca6b5775c71d572cfea26fe8d9c45c.tar.bz2 gentoo-2-ba853368b9ca6b5775c71d572cfea26fe8d9c45c.zip |
Version bump. Mark 4.0.4.14 stable on X86. Add ~AMD64 & ~PPC keywords, tested on a quad-core Opteron and a PowerBook 5,9 respectively.
(Portage version: 2.1.4)
Diffstat (limited to 'net-nds/tac_plus')
-rw-r--r-- | net-nds/tac_plus/ChangeLog | 11 | ||||
-rw-r--r-- | net-nds/tac_plus/tac_plus-4.0.4.14.ebuild | 12 | ||||
-rw-r--r-- | net-nds/tac_plus/tac_plus-4.0.4.15.ebuild | 37 |
3 files changed, 52 insertions, 8 deletions
diff --git a/net-nds/tac_plus/ChangeLog b/net-nds/tac_plus/ChangeLog index c4cc751192ad..0e706f01b99c 100644 --- a/net-nds/tac_plus/ChangeLog +++ b/net-nds/tac_plus/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-nds/tac_plus -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-nds/tac_plus/ChangeLog,v 1.1 2007/01/03 13:09:37 chainsaw Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-nds/tac_plus/ChangeLog,v 1.2 2008/02/13 12:55:45 chainsaw Exp $ + +*tac_plus-4.0.4.15 (13 Feb 2008) + + 13 Feb 2008; Tony Vroon <chainsaw@gentoo.org> tac_plus-4.0.4.14.ebuild, + +tac_plus-4.0.4.15.ebuild: + Version bump. Mark 4.0.4.14 stable on X86. Add ~AMD64 & ~PPC keywords, + tested on a quad-core Opteron and a PowerBook 5,9 respectively. *tac_plus-4.0.4.14 (03 Jan 2007) diff --git a/net-nds/tac_plus/tac_plus-4.0.4.14.ebuild b/net-nds/tac_plus/tac_plus-4.0.4.14.ebuild index dd479ea66a52..840b4ddd5aa6 100644 --- a/net-nds/tac_plus/tac_plus-4.0.4.14.ebuild +++ b/net-nds/tac_plus/tac_plus-4.0.4.14.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 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.14.ebuild,v 1.1 2007/01/03 13:09:37 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-nds/tac_plus/tac_plus-4.0.4.14.ebuild,v 1.2 2008/02/13 12:55:45 chainsaw Exp $ MY_P="tacacs+-F${PV}" S="${WORKDIR}/${MY_P}" @@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.shrubbery.net/pub/tac_plus/${MY_P}.tar.gz" LICENSE="as-is" SLOT="0" -KEYWORDS="~x86" +KEYWORDS="x86 ~amd64" IUSE="debug finger tcpd skey" DEPEND="skey? ( >=app-admin/skey-1.1.5-r1 ) @@ -30,8 +30,8 @@ src_compile() { src_install() { make DESTDIR="${D}" install || die dodoc CHANGES FAQ - newinitd ${FILESDIR}/tac_plus.init tac_plus - newconfd ${FILESDIR}/tac_plus.confd tac_plus + newinitd "${FILESDIR}/tac_plus.init" tac_plus + newconfd "${FILESDIR}/tac_plus.confd" tac_plus insinto /etc/tac_plus - newins ${FILESDIR}/tac_plus.conf tac_plus.conf || die + newins "${FILESDIR}/tac_plus.conf" tac_plus.conf || die } diff --git a/net-nds/tac_plus/tac_plus-4.0.4.15.ebuild b/net-nds/tac_plus/tac_plus-4.0.4.15.ebuild new file mode 100644 index 000000000000..2fe09831d0a4 --- /dev/null +++ b/net-nds/tac_plus/tac_plus-4.0.4.15.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2008 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.15.ebuild,v 1.1 2008/02/13 12:55:45 chainsaw Exp $ + +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="as-is" +SLOT="0" +KEYWORDS="~x86 ~amd64 ~ppc" +IUSE="debug finger tcpd skey" + +DEPEND="skey? ( >=app-admin/skey-1.1.5-r1 ) + tcpd? ( sys-apps/tcp-wrappers )" + +src_compile() { + econf \ + `use_with skey` \ + `use_with tcpd libwrap` \ + `use_enable finger` \ + `use_enable debug` \ + || die "econf failed" + emake || die +} + +src_install() { + make DESTDIR="${D}" install || die + dodoc CHANGES FAQ + newinitd "${FILESDIR}/tac_plus.init" tac_plus + newconfd "${FILESDIR}/tac_plus.confd" tac_plus + insinto /etc/tac_plus + newins "${FILESDIR}/tac_plus.conf" tac_plus.conf || die +} |