diff options
author | Alin Năstac <mrness@gentoo.org> | 2009-03-01 11:20:46 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2009-03-01 11:20:46 +0000 |
commit | ea90575d55c101b25f410464286c36ed2854a76d (patch) | |
tree | 4d0f49b57aac3c578329dd920e0fc7ffb2755e3a /net-dialup/gnuradius/gnuradius-1.6.1.ebuild | |
parent | Add mips love (diff) | |
download | gentoo-2-ea90575d55c101b25f410464286c36ed2854a76d.tar.gz gentoo-2-ea90575d55c101b25f410464286c36ed2854a76d.tar.bz2 gentoo-2-ea90575d55c101b25f410464286c36ed2854a76d.zip |
Version bump (#256552).
(Portage version: 2.1.6.7/cvs/Linux x86_64)
Diffstat (limited to 'net-dialup/gnuradius/gnuradius-1.6.1.ebuild')
-rw-r--r-- | net-dialup/gnuradius/gnuradius-1.6.1.ebuild | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/net-dialup/gnuradius/gnuradius-1.6.1.ebuild b/net-dialup/gnuradius/gnuradius-1.6.1.ebuild new file mode 100644 index 000000000000..323076b24160 --- /dev/null +++ b/net-dialup/gnuradius/gnuradius-1.6.1.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/gnuradius/gnuradius-1.6.1.ebuild,v 1.1 2009/03/01 11:20:46 mrness Exp $ + +EAPI="2" + +inherit eutils pam + +MY_P="${P#gnu}" + +DESCRIPTION="GNU radius authentication server" +HOMEPAGE="http://www.gnu.org/software/radius/radius.html" +SRC_URI="mirror://gnu/radius/${MY_P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="guile mysql postgres odbc dbm nls snmp pam static debug readline" + +DEPEND="!net-dialup/freeradius + !net-dialup/cistronradius + guile? ( >=dev-scheme/guile-1.4 ) + mysql? ( virtual/mysql ) + postgres? ( virtual/postgresql-server ) + odbc? ( || ( dev-db/unixODBC dev-db/libiodbc ) ) + readline? ( sys-libs/readline ) + dbm? ( sys-libs/gdbm ) + snmp? ( net-analyzer/net-snmp ) + pam? ( virtual/pam )" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}" + +RESTRICT="test" + +src_unpack() { + unpack ${A} + + # Portage incorrectly detects missing --run m4 output lines as automake maintainer mode + # eautoreconf cannot be used because it will screw up the libtool file + epatch "${FILESDIR}/${P}-qa-false-positives.patch" +} + +src_configure() { + local additional_conf="" + if use pam ; then + additional_conf="--with-pamdir=$(getpam_mod_dir)" + fi + econf --enable-client --disable-maintainer-mode \ + $(use_with guile) \ + $(use_with guile server-guile) \ + $(use_with mysql) \ + $(use_with postgres) \ + $(use_with odbc) \ + $(use_with readline) \ + $(use_enable dbm) \ + $(use_enable nls) \ + $(use_enable snmp) \ + $(use_enable pam) \ + $(use_enable debug) \ + $(use_enable static) \ + ${additional_conf} || die "configuration failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "installation failed" +} |