From d2e44fa7b4e732f46ffc00896550f1ffa30ccd03 Mon Sep 17 00:00:00 2001 From: Sam James Date: Wed, 30 Jun 2021 19:38:50 +0100 Subject: net-nds/tac_plus: add missing libcrypt dependency Signed-off-by: Sam James --- net-nds/tac_plus/tac_plus-4.0.4.19-r4.ebuild | 62 ------------------------ net-nds/tac_plus/tac_plus-4.0.4.19-r5.ebuild | 63 +++++++++++++++++++++++++ net-nds/tac_plus/tac_plus-4.0.4.27a-r1.ebuild | 67 -------------------------- net-nds/tac_plus/tac_plus-4.0.4.27a-r2.ebuild | 65 +++++++++++++++++++++++++ net-nds/tac_plus/tac_plus-4.0.4.27a-r3.ebuild | 68 +++++++++++++++++++++++++++ net-nds/tac_plus/tac_plus-4.0.4.27a.ebuild | 64 ------------------------- 6 files changed, 196 insertions(+), 193 deletions(-) delete mode 100644 net-nds/tac_plus/tac_plus-4.0.4.19-r4.ebuild create mode 100644 net-nds/tac_plus/tac_plus-4.0.4.19-r5.ebuild delete mode 100644 net-nds/tac_plus/tac_plus-4.0.4.27a-r1.ebuild create mode 100644 net-nds/tac_plus/tac_plus-4.0.4.27a-r2.ebuild create mode 100644 net-nds/tac_plus/tac_plus-4.0.4.27a-r3.ebuild delete mode 100644 net-nds/tac_plus/tac_plus-4.0.4.27a.ebuild diff --git a/net-nds/tac_plus/tac_plus-4.0.4.19-r4.ebuild b/net-nds/tac_plus/tac_plus-4.0.4.19-r4.ebuild deleted file mode 100644 index 6f9e32eef0dd..000000000000 --- a/net-nds/tac_plus/tac_plus-4.0.4.19-r4.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -MY_P="tacacs+-F${PV}" -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" -S="${WORKDIR}/${MY_P}" - -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=" - net-libs/libnsl - sys-libs/pam - skey? ( >=sys-auth/skey-1.1.5-r1 ) - tcpd? ( sys-apps/tcp-wrappers ) -" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}"/${P}-parallelmake.patch - "${FILESDIR}"/${P}-deansification.patch -) - -src_prepare() { - default - - AT_M4DIR="." eautoreconf -} - -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 - - if use static-libs ; then - find "${D}" -name '*.la' -delete || die "Unable to remove spurious libtool archive" - fi - - 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 -} diff --git a/net-nds/tac_plus/tac_plus-4.0.4.19-r5.ebuild b/net-nds/tac_plus/tac_plus-4.0.4.19-r5.ebuild new file mode 100644 index 000000000000..fd2de5db4e58 --- /dev/null +++ b/net-nds/tac_plus/tac_plus-4.0.4.19-r5.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +MY_P="tacacs+-F${PV}" +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" +S="${WORKDIR}/${MY_P}" + +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=" + net-libs/libnsl:= + sys-libs/pam + virtual/libcrypt:= + skey? ( >=sys-auth/skey-1.1.5-r1 ) + tcpd? ( sys-apps/tcp-wrappers ) +" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}"/${P}-parallelmake.patch + "${FILESDIR}"/${P}-deansification.patch +) + +src_prepare() { + default + + AT_M4DIR="." eautoreconf +} + +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 + + if use static-libs ; then + find "${D}" -name '*.la' -delete || die "Unable to remove spurious libtool archive" + fi + + 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 +} diff --git a/net-nds/tac_plus/tac_plus-4.0.4.27a-r1.ebuild b/net-nds/tac_plus/tac_plus-4.0.4.27a-r1.ebuild deleted file mode 100644 index b4ca875a4c3c..000000000000 --- a/net-nds/tac_plus/tac_plus-4.0.4.27a-r1.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools pam - -MY_P="tacacs+-F${PV}" -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" -S="${WORKDIR}/${MY_P}" - -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=" - net-libs/libnsl - sys-libs/pam - skey? ( >=sys-auth/skey-1.1.5-r1 ) - tcpd? ( sys-apps/tcp-wrappers ) -" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}/${P}-parallelmake.patch" - "${FILESDIR}/${PN}-4.0.4.19-deansification.patch" -) - -src_prepare() { - default - - mv configure.in configure.ac || die "Unable to quiet autoconf deprecation warning" - AT_M4DIR="." eautoreconf - -} - -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 - - if use static-libs ; then - find "${ED}" -name '*.la' -delete || die "Unable to remove spurious libtool archive" - fi - - dodoc CHANGES FAQ - - newinitd "${FILESDIR}/tac_plus.init2" tac_plus - newconfd "${FILESDIR}/tac_plus.confd2" tac_plus - - # bug #474860 - pamd_mimic_system tac_plus auth account password session - - insinto /etc/tac_plus - newins "${FILESDIR}/tac_plus.conf2" tac_plus.conf -} diff --git a/net-nds/tac_plus/tac_plus-4.0.4.27a-r2.ebuild b/net-nds/tac_plus/tac_plus-4.0.4.27a-r2.ebuild new file mode 100644 index 000000000000..09fda604c646 --- /dev/null +++ b/net-nds/tac_plus/tac_plus-4.0.4.27a-r2.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +MY_P="tacacs+-F${PV}" +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" +S="${WORKDIR}/${MY_P}" + +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=" + net-libs/libnsl:= + sys-libs/pam + virtual/libcrypt:= + skey? ( >=sys-auth/skey-1.1.5-r1 ) + tcpd? ( sys-apps/tcp-wrappers ) +" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}/${P}-parallelmake.patch" + "${FILESDIR}/${PN}-4.0.4.19-deansification.patch" +) + +src_prepare() { + default + + mv configure.in configure.ac || die "Unable to quiet autoconf deprecation warning" + AT_M4DIR="." eautoreconf + +} + +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 + + if use static-libs ; then + find "${ED}" -name '*.la' -delete || die "Unable to remove spurious libtool archive" + fi + + 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 +} diff --git a/net-nds/tac_plus/tac_plus-4.0.4.27a-r3.ebuild b/net-nds/tac_plus/tac_plus-4.0.4.27a-r3.ebuild new file mode 100644 index 000000000000..694c6a330c3f --- /dev/null +++ b/net-nds/tac_plus/tac_plus-4.0.4.27a-r3.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools pam + +MY_P="tacacs+-F${PV}" +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" +S="${WORKDIR}/${MY_P}" + +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=" + net-libs/libnsl:= + sys-libs/pam + virtual/libcrypt:= + skey? ( >=sys-auth/skey-1.1.5-r1 ) + tcpd? ( sys-apps/tcp-wrappers ) +" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}/${P}-parallelmake.patch" + "${FILESDIR}/${PN}-4.0.4.19-deansification.patch" +) + +src_prepare() { + default + + mv configure.in configure.ac || die "Unable to quiet autoconf deprecation warning" + AT_M4DIR="." eautoreconf + +} + +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 + + if use static-libs ; then + find "${ED}" -name '*.la' -delete || die "Unable to remove spurious libtool archive" + fi + + dodoc CHANGES FAQ + + newinitd "${FILESDIR}/tac_plus.init2" tac_plus + newconfd "${FILESDIR}/tac_plus.confd2" tac_plus + + # bug #474860 + pamd_mimic_system tac_plus auth account password session + + insinto /etc/tac_plus + newins "${FILESDIR}/tac_plus.conf2" tac_plus.conf +} diff --git a/net-nds/tac_plus/tac_plus-4.0.4.27a.ebuild b/net-nds/tac_plus/tac_plus-4.0.4.27a.ebuild deleted file mode 100644 index 97fcdb15581c..000000000000 --- a/net-nds/tac_plus/tac_plus-4.0.4.27a.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -MY_P="tacacs+-F${PV}" -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" -S="${WORKDIR}/${MY_P}" - -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=" - net-libs/libnsl - sys-libs/pam - skey? ( >=sys-auth/skey-1.1.5-r1 ) - tcpd? ( sys-apps/tcp-wrappers ) -" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}/${P}-parallelmake.patch" - "${FILESDIR}/${PN}-4.0.4.19-deansification.patch" -) - -src_prepare() { - default - - mv configure.in configure.ac || die "Unable to quiet autoconf deprecation warning" - AT_M4DIR="." eautoreconf - -} - -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 - - if use static-libs ; then - find "${ED}" -name '*.la' -delete || die "Unable to remove spurious libtool archive" - fi - - 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 -} -- cgit v1.2.3-65-gdbad