You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-nds/tac_plus/tac_plus-4.0.4.19-r2.ebuild

53 lines
1.2 KiB

# Copyright 1999-2011 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.19-r2.ebuild,v 1.1 2011/06/16 16:00:43 chainsaw Exp $
EAPI=4
inherit libtool autotools
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 maxsess tcpd skey static-libs"
DEPEND="skey? ( >=sys-auth/skey-1.1.5-r1 )
tcpd? ( sys-apps/tcp-wrappers )"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${P}-parallelmake.patch
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"
dodoc CHANGES FAQ
newinitd "${FILESDIR}/tac_plus.init" tac_plus
newconfd "${FILESDIR}/tac_plus.confd2" tac_plus
insinto /etc/tac_plus
newins "${FILESDIR}/tac_plus.conf2" tac_plus.conf
}