Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dialup/cistronradius: ChangeLog cistronradius-1.6.8-r1.ebuild
Date: Mon, 01 Apr 2013 13:40:29
Message-Id: 20130401134024.6D3102171D@flycatcher.gentoo.org
1 pinkbyte 13/04/01 13:40:24
2
3 Modified: ChangeLog
4 Added: cistronradius-1.6.8-r1.ebuild
5 Log:
6 Revision bump: fix QA issues, bump to EAPI 5, add epatch_user, respect LDFLAGS, wrt bug #332727
7
8 (Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
9
10 Revision Changes Path
11 1.19 net-dialup/cistronradius/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/cistronradius/ChangeLog?rev=1.19&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/cistronradius/ChangeLog?rev=1.19&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/cistronradius/ChangeLog?r1=1.18&r2=1.19
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-dialup/cistronradius/ChangeLog,v
20 retrieving revision 1.18
21 retrieving revision 1.19
22 diff -u -r1.18 -r1.19
23 --- ChangeLog 18 Oct 2008 07:15:40 -0000 1.18
24 +++ ChangeLog 1 Apr 2013 13:40:24 -0000 1.19
25 @@ -1,6 +1,13 @@
26 # ChangeLog for net-dialup/cistronradius
27 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/cistronradius/ChangeLog,v 1.18 2008/10/18 07:15:40 mrness Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/cistronradius/ChangeLog,v 1.19 2013/04/01 13:40:24 pinkbyte Exp $
31 +
32 +*cistronradius-1.6.8-r1 (01 Apr 2013)
33 +
34 + 01 Apr 2013; Sergey Popov <pinkbyte@g.o>
35 + +cistronradius-1.6.8-r1.ebuild:
36 + Revision bump: fix QA issues, bump to EAPI 5, add epatch_user, respect
37 + LDFLAGS, wrt bug #332727
38
39 18 Oct 2008; Alin Năstac <mrness@g.o> cistronradius-1.6.8.ebuild:
40 Pass Makefile parameters through emake command line (#240872).
41
42
43
44 1.1 net-dialup/cistronradius/cistronradius-1.6.8-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/cistronradius/cistronradius-1.6.8-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/cistronradius/cistronradius-1.6.8-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: cistronradius-1.6.8-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2013 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-dialup/cistronradius/cistronradius-1.6.8-r1.ebuild,v 1.1 2013/04/01 13:40:24 pinkbyte Exp $
54
55 EAPI=5
56
57 inherit eutils toolchain-funcs
58
59 DESCRIPTION="An authentication and accounting server for terminal servers that speak the RADIUS protocol"
60 SRC_URI="ftp://ftp.radius.cistron.nl/pub/radius/radiusd-cistron-${PV}.tar.gz"
61 HOMEPAGE="http://www.radius.cistron.nl/"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="-* ~x86"
66
67 DEPEND="!net-dialup/freeradius
68 !net-dialup/gnuradius"
69 RDEPEND="${DEPEND}"
70
71 S="${WORKDIR}/radiusd-cistron-${PV}"
72
73 src_prepare() {
74 epatch "${FILESDIR}/${P}-gcc41.patch"
75 sed -i -e "s:SHAREDIR/::g" raddb/dictionary || die
76 mv src/checkrad.pl src/checkrad || die
77
78 epatch_user
79 }
80
81 src_compile() {
82 emake -C src \
83 CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \
84 BINDIR=/usr/bin SBINDIR=/usr/sbin \
85 MANDIR=/usr/share/man SHAREDIR=/usr/share/radius
86 }
87
88 src_install() {
89 insinto /etc/raddb
90 doins raddb/*
91 dodoc README doc/{ChangeLog,FAQ.txt,README*}
92 doman doc/{*.1,*.8,*.5rad,*.8rad}
93
94 exeinto /usr/sbin
95 doexe src/{checkrad,radiusd,radrelay}
96 exeinto /usr/bin
97 doexe src/{radclient,radlast,radtest,radwho,radzap}
98
99 newinitd "${FILESDIR}/cistronradius.rc" cistronradius
100 }