diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2020-02-24 20:21:25 +0300 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2020-02-24 20:21:25 +0300 |
commit | a050be76831bb9946e24f13261571f377faebc99 (patch) | |
tree | 7ce13dc35aa632fab6941cc70b14ccd2d7627636 /net-nds/tac_plus | |
parent | mail-mta/ssmtp: Drop old (diff) | |
download | gentoo-a050be76831bb9946e24f13261571f377faebc99.tar.gz gentoo-a050be76831bb9946e24f13261571f377faebc99.tar.bz2 gentoo-a050be76831bb9946e24f13261571f377faebc99.zip |
net-nds/tac_plus: Drop old
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Diffstat (limited to 'net-nds/tac_plus')
-rw-r--r-- | net-nds/tac_plus/tac_plus-4.0.4.19-r3.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
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 deleted file mode 100644 index 0bb83adc7821..000000000000 --- a/net-nds/tac_plus/tac_plus-4.0.4.19-r3.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -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" ) - -src_prepare() { - base_src_prepare - 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) -} - -src_install() { - emake DESTDIR="${D}" install - - 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 -} |