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/freeradius-client: metadata.xml ChangeLog freeradius-client-1.1.6.ebuild
Date: Wed, 04 Mar 2009 01:24:10
Message-Id: E1LebkS-0007ul-KC@stork.gentoo.org
1 mrness 09/03/03 21:01:56
2
3 Added: metadata.xml ChangeLog
4 freeradius-client-1.1.6.ebuild
5 Log:
6 Initial import from bug 234098
7 (Portage version: 2.1.6.7/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 net-dialup/freeradius-client/metadata.xml
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/freeradius-client/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/freeradius-client/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>net-dialup</herd>
21 <maintainer>
22 <email>mrness@g.o</email>
23 <name>Alin Nastac</name>
24 </maintainer>
25 <longdescription>FreeRADIUS Client is a framework and library for writing
26 RADIUS Clients which additionally includes radlogin, a flexible RADIUS
27 aware login replacement, a command line program to send RADIUS accounting
28 records, an utility allowing to send RADIUS AAA requests from command
29 line or from shell scripts and a utility to query the status of a (Merit)
30 RADIUS server.</longdescription>
31 <use>
32 <flag name='scp'>Add service type hints derived from username
33 prefix</flag>
34 <flag name='shadow'>Enable shadow password support</flag>
35 </use>
36 </pkgmetadata>
37
38
39
40 1.1 net-dialup/freeradius-client/ChangeLog
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/freeradius-client/ChangeLog?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/freeradius-client/ChangeLog?rev=1.1&content-type=text/plain
44
45 Index: ChangeLog
46 ===================================================================
47 # ChangeLog for net-dialup/freeradius-client
48 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
49 # $Header: /var/cvsroot/gentoo-x86/net-dialup/freeradius-client/ChangeLog,v 1.1 2009/03/03 21:01:56 mrness Exp $
50
51 *freeradius-client-1.1.6 (03 Mar 2009)
52
53 03 Mar 2009; Alin Năstac <mrness@g.o> +metadata.xml,
54 +freeradius-client-1.1.6.ebuild:
55 Initial import from bug 234098, thanks to MATSUU Takuto <matsuu@g.o>.
56
57
58
59
60 1.1 net-dialup/freeradius-client/freeradius-client-1.1.6.ebuild
61
62 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/freeradius-client/freeradius-client-1.1.6.ebuild?rev=1.1&view=markup
63 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/freeradius-client/freeradius-client-1.1.6.ebuild?rev=1.1&content-type=text/plain
64
65 Index: freeradius-client-1.1.6.ebuild
66 ===================================================================
67 # Copyright 1999-2009 Gentoo Foundation
68 # Distributed under the terms of the GNU General Public License v2
69 # $Header: /var/cvsroot/gentoo-x86/net-dialup/freeradius-client/freeradius-client-1.1.6.ebuild,v 1.1 2009/03/03 21:01:56 mrness Exp $
70
71 EAPI="2"
72
73 DESCRIPTION="FreeRADIUS Client framework"
74 HOMEPAGE="http://wiki.freeradius.org/Radiusclient"
75 SRC_URI="ftp://ftp.freeradius.org/pub/freeradius/${P}.tar.bz2"
76
77 LICENSE="BSD"
78 SLOT="0"
79 KEYWORDS="~amd64 ~x86"
80 IUSE="scp shadow"
81
82 DEPEND="!net-dialup/radiusclient
83 !net-dialup/radiusclient-ng"
84 RDEPEND="${DEPEND}"
85
86 src_configure() {
87 econf \
88 $(use_enable scp) \
89 $(use_enable shadow) \
90 --with-secure-path || die "econf failed"
91 }
92
93 src_install() {
94 emake DESTDIR="${D}" install || die "emake install failed"
95
96 dodoc BUGS README* doc/ChangeLog doc/login.example doc/release-method.txt
97 newdoc doc/README README.login.example
98 dohtml doc/instop.html
99 }