Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dialup/gnuradius: ChangeLog gnuradius-1.6.1-r1.ebuild
Date: Sat, 24 May 2014 10:25:09
Message-Id: 20140524102506.092662004E@flycatcher.gentoo.org
1 jer 14/05/24 10:25:05
2
3 Modified: ChangeLog
4 Added: gnuradius-1.6.1-r1.ebuild
5 Log:
6 Use proper libdir. Disable USE=pam as the build system will use PAM when it pleases. Prune .la file (bug #451766). Clean up patch.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.23 net-dialup/gnuradius/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/gnuradius/ChangeLog?rev=1.23&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/gnuradius/ChangeLog?rev=1.23&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/gnuradius/ChangeLog?r1=1.22&r2=1.23
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-dialup/gnuradius/ChangeLog,v
20 retrieving revision 1.22
21 retrieving revision 1.23
22 diff -u -r1.22 -r1.23
23 --- ChangeLog 12 May 2013 03:58:40 -0000 1.22
24 +++ ChangeLog 24 May 2014 10:25:05 -0000 1.23
25 @@ -1,6 +1,13 @@
26 # ChangeLog for net-dialup/gnuradius
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/gnuradius/ChangeLog,v 1.22 2013/05/12 03:58:40 patrick Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/gnuradius/ChangeLog,v 1.23 2014/05/24 10:25:05 jer Exp $
31 +
32 +*gnuradius-1.6.1-r1 (24 May 2014)
33 +
34 + 24 May 2014; Jeroen Roovers <jer@g.o> +gnuradius-1.6.1-r1.ebuild,
35 + files/gnuradius-1.6.1-qa-false-positives.patch:
36 + Use proper libdir. Disable USE=pam as the build system will use PAM when it
37 + pleases. Prune .la file (bug #451766). Clean up patch.
38
39 12 May 2013; Patrick Lauer <patrick@g.o> gnuradius-1.6.1.ebuild:
40 Move epatch to src_prepare phase
41
42
43
44 1.1 net-dialup/gnuradius/gnuradius-1.6.1-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/gnuradius/gnuradius-1.6.1-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/gnuradius/gnuradius-1.6.1-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gnuradius-1.6.1-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-dialup/gnuradius/gnuradius-1.6.1-r1.ebuild,v 1.1 2014/05/24 10:25:05 jer Exp $
54
55 EAPI=5
56
57 inherit eutils multilib pam
58
59 MY_P="${P#gnu}"
60
61 DESCRIPTION="GNU radius authentication server"
62 HOMEPAGE="http://www.gnu.org/software/radius/radius.html"
63 SRC_URI="mirror://gnu/radius/${MY_P}.tar.gz"
64
65 LICENSE="GPL-3"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="
69 dbm debug guile mysql nls odbc postgres readline snmp static-libs
70 "
71
72 DEPEND="
73 !net-dialup/cistronradius
74 !net-dialup/freeradius
75 dbm? ( sys-libs/gdbm )
76 guile? ( >=dev-scheme/guile-1.4 )
77 mysql? ( virtual/mysql )
78 odbc? ( || ( dev-db/unixODBC dev-db/libiodbc ) )
79 postgres? ( dev-db/postgresql-server )
80 readline? ( sys-libs/readline )
81 snmp? ( net-analyzer/net-snmp )
82 virtual/pam
83 "
84 RDEPEND="${DEPEND}"
85
86 S="${WORKDIR}/${MY_P}"
87
88 RESTRICT="test"
89
90 src_prepare() {
91 epatch "${FILESDIR}"/${P}-qa-false-positives.patch
92 }
93
94 src_configure() {
95 econf \
96 --disable-maintainer-mode \
97 --enable-client \
98 --enable-pam \
99 --enable-server \
100 --libdir=/usr/$(get_libdir) \
101 --with-pamdir=/usr/$(getpam_mod_dir) \
102 $(use_enable dbm) \
103 $(use_enable debug) \
104 $(use_enable nls) \
105 $(use_enable snmp) \
106 $(use_enable static-libs static) \
107 $(use_with guile) \
108 $(use_with guile server-guile) \
109 $(use_with mysql) \
110 $(use_with odbc) \
111 $(use_with postgres) \
112 $(use_with readline)
113 }
114
115 src_install() {
116 default
117
118 prune_libtool_files
119 }