Gentoo Archives: gentoo-commits

From: "Alin Nastac (mrness)" <mrness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dialup/gnuradius: ChangeLog gnuradius-1.6.1.ebuild
Date: Sun, 01 Mar 2009 11:20:53
Message-Id: E1Ldjiw-0002oL-5L@stork.gentoo.org
1 mrness 09/03/01 11:20:46
2
3 Modified: ChangeLog
4 Added: gnuradius-1.6.1.ebuild
5 Log:
6 Version bump (#256552).
7 (Portage version: 2.1.6.7/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.20 net-dialup/gnuradius/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/gnuradius/ChangeLog?rev=1.20&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/gnuradius/ChangeLog?rev=1.20&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/gnuradius/ChangeLog?r1=1.19&r2=1.20
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-dialup/gnuradius/ChangeLog,v
19 retrieving revision 1.19
20 retrieving revision 1.20
21 diff -u -r1.19 -r1.20
22 --- ChangeLog 21 May 2008 18:53:26 -0000 1.19
23 +++ ChangeLog 1 Mar 2009 11:20:46 -0000 1.20
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-dialup/gnuradius
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/gnuradius/ChangeLog,v 1.19 2008/05/21 18:53:26 dev-zero Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/gnuradius/ChangeLog,v 1.20 2009/03/01 11:20:46 mrness Exp $
30 +
31 +*gnuradius-1.6.1 (01 Mar 2009)
32 +
33 + 01 Mar 2009; Alin Năstac <mrness@g.o>
34 + +files/gnuradius-1.6.1-qa-false-positives.patch, +gnuradius-1.6.1.ebuild:
35 + Version bump (#256552).
36
37 21 May 2008; Tiziano Müller <dev-zero@g.o> gnuradius-1.5.ebuild:
38 Changed dependency for postgresql from dev-db/postgresql to
39
40
41
42 1.1 net-dialup/gnuradius/gnuradius-1.6.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/gnuradius/gnuradius-1.6.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/gnuradius/gnuradius-1.6.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gnuradius-1.6.1.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-dialup/gnuradius/gnuradius-1.6.1.ebuild,v 1.1 2009/03/01 11:20:46 mrness Exp $
52
53 EAPI="2"
54
55 inherit eutils pam
56
57 MY_P="${P#gnu}"
58
59 DESCRIPTION="GNU radius authentication server"
60 HOMEPAGE="http://www.gnu.org/software/radius/radius.html"
61 SRC_URI="mirror://gnu/radius/${MY_P}.tar.gz"
62
63 LICENSE="GPL-3"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="guile mysql postgres odbc dbm nls snmp pam static debug readline"
67
68 DEPEND="!net-dialup/freeradius
69 !net-dialup/cistronradius
70 guile? ( >=dev-scheme/guile-1.4 )
71 mysql? ( virtual/mysql )
72 postgres? ( virtual/postgresql-server )
73 odbc? ( || ( dev-db/unixODBC dev-db/libiodbc ) )
74 readline? ( sys-libs/readline )
75 dbm? ( sys-libs/gdbm )
76 snmp? ( net-analyzer/net-snmp )
77 pam? ( virtual/pam )"
78 RDEPEND="${DEPEND}"
79
80 S="${WORKDIR}/${MY_P}"
81
82 RESTRICT="test"
83
84 src_unpack() {
85 unpack ${A}
86
87 # Portage incorrectly detects missing --run m4 output lines as automake maintainer mode
88 # eautoreconf cannot be used because it will screw up the libtool file
89 epatch "${FILESDIR}/${P}-qa-false-positives.patch"
90 }
91
92 src_configure() {
93 local additional_conf=""
94 if use pam ; then
95 additional_conf="--with-pamdir=$(getpam_mod_dir)"
96 fi
97 econf --enable-client --disable-maintainer-mode \
98 $(use_with guile) \
99 $(use_with guile server-guile) \
100 $(use_with mysql) \
101 $(use_with postgres) \
102 $(use_with odbc) \
103 $(use_with readline) \
104 $(use_enable dbm) \
105 $(use_enable nls) \
106 $(use_enable snmp) \
107 $(use_enable pam) \
108 $(use_enable debug) \
109 $(use_enable static) \
110 ${additional_conf} || die "configuration failed"
111 }
112
113 src_install() {
114 emake DESTDIR="${D}" install || die "installation failed"
115 }