jer         14/05/24 10:25:05

  Modified:             ChangeLog
  Added:                gnuradius-1.6.1-r1.ebuild
  Log:
  Use proper libdir. Disable USE=pam as the build system will use PAM when it 
pleases. Prune .la file (bug #451766). Clean up patch.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  Changes    Path
1.23                 net-dialup/gnuradius/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/gnuradius/ChangeLog?rev=1.23&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/gnuradius/ChangeLog?rev=1.23&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/gnuradius/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dialup/gnuradius/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog   12 May 2013 03:58:40 -0000      1.22
+++ ChangeLog   24 May 2014 10:25:05 -0000      1.23
@@ -1,6 +1,13 @@
 # ChangeLog for net-dialup/gnuradius
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/gnuradius/ChangeLog,v 1.22 
2013/05/12 03:58:40 patrick Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/gnuradius/ChangeLog,v 1.23 
2014/05/24 10:25:05 jer Exp $
+
+*gnuradius-1.6.1-r1 (24 May 2014)
+
+  24 May 2014; Jeroen Roovers <j...@gentoo.org> +gnuradius-1.6.1-r1.ebuild,
+  files/gnuradius-1.6.1-qa-false-positives.patch:
+  Use proper libdir. Disable USE=pam as the build system will use PAM when it
+  pleases. Prune .la file (bug #451766). Clean up patch.
 
   12 May 2013; Patrick Lauer <patr...@gentoo.org> gnuradius-1.6.1.ebuild:
   Move epatch to src_prepare phase



1.1                  net-dialup/gnuradius/gnuradius-1.6.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/gnuradius/gnuradius-1.6.1-r1.ebuild?rev=1.1&view=markup
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

Index: gnuradius-1.6.1-r1.ebuild
===================================================================
# Copyright 1999-2014 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-r1.ebuild,v 1.1 
2014/05/24 10:25:05 jer Exp $

EAPI=5

inherit eutils multilib 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="
        dbm debug guile mysql nls odbc postgres readline snmp static-libs
"

DEPEND="
        !net-dialup/cistronradius
        !net-dialup/freeradius
        dbm? ( sys-libs/gdbm )
        guile? ( >=dev-scheme/guile-1.4 )
        mysql? ( virtual/mysql )
        odbc? ( || ( dev-db/unixODBC dev-db/libiodbc ) )
        postgres? ( dev-db/postgresql-server )
        readline? ( sys-libs/readline )
        snmp? ( net-analyzer/net-snmp )
        virtual/pam
"
RDEPEND="${DEPEND}"

S="${WORKDIR}/${MY_P}"

RESTRICT="test"

src_prepare() {
        epatch "${FILESDIR}"/${P}-qa-false-positives.patch
}

src_configure() {
        econf \
                --disable-maintainer-mode \
                --enable-client \
                --enable-pam \
                --enable-server \
                --libdir=/usr/$(get_libdir) \
                --with-pamdir=/usr/$(getpam_mod_dir) \
                $(use_enable dbm) \
                $(use_enable debug) \
                $(use_enable nls) \
                $(use_enable snmp) \
                $(use_enable static-libs static) \
                $(use_with guile) \
                $(use_with guile server-guile) \
                $(use_with mysql) \
                $(use_with odbc) \
                $(use_with postgres) \
                $(use_with readline)
}

src_install() {
        default

        prune_libtool_files
}




Reply via email to