diff options
author | Jeroen Roovers <jer@gentoo.org> | 2014-05-06 04:12:34 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2014-05-06 04:12:34 +0000 |
commit | aa774ffa1cc2b2ec8f683befd2c44c6b8a10b66e (patch) | |
tree | d44ade7a74b9816dc901e637c6ac4ae15b26d704 /net-dialup | |
parent | Make the dep on kde-misc/baloo-kcmadv a PDEPEND to break the circular dep. (diff) | |
download | gentoo-2-aa774ffa1cc2b2ec8f683befd2c44c6b8a10b66e.tar.gz gentoo-2-aa774ffa1cc2b2ec8f683befd2c44c6b8a10b66e.tar.bz2 gentoo-2-aa774ffa1cc2b2ec8f683befd2c44c6b8a10b66e.zip |
Force LIBTOOL=libtool so that make does not try to run it with /bin/sh (bug #509472).
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-dialup')
-rw-r--r-- | net-dialup/freeradius/ChangeLog | 6 | ||||
-rw-r--r-- | net-dialup/freeradius/freeradius-2.2.5.ebuild | 8 |
2 files changed, 11 insertions, 3 deletions
diff --git a/net-dialup/freeradius/ChangeLog b/net-dialup/freeradius/ChangeLog index bb27300f8401..8c0626f146ff 100644 --- a/net-dialup/freeradius/ChangeLog +++ b/net-dialup/freeradius/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-dialup/freeradius # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/freeradius/ChangeLog,v 1.123 2014/05/04 23:53:03 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/freeradius/ChangeLog,v 1.124 2014/05/06 04:12:34 jer Exp $ + + 06 May 2014; Jeroen Roovers <jer@gentoo.org> freeradius-2.2.5.ebuild: + Force LIBTOOL=libtool so that make does not try to run it with /bin/sh (bug + #509472). 04 May 2014; Jeroen Roovers <jer@gentoo.org> freeradius-3.0.2-r1.ebuild: Fix run_dir sed script. diff --git a/net-dialup/freeradius/freeradius-2.2.5.ebuild b/net-dialup/freeradius/freeradius-2.2.5.ebuild index c9dc69c1b502..7fa0cfa8b7a0 100644 --- a/net-dialup/freeradius/freeradius-2.2.5.ebuild +++ b/net-dialup/freeradius/freeradius-2.2.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/freeradius/freeradius-2.2.5.ebuild,v 1.3 2014/05/04 08:20:23 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/freeradius/freeradius-2.2.5.ebuild,v 1.4 2014/05/06 04:12:34 jer Exp $ EAPI=5 @@ -150,6 +150,10 @@ src_configure() { ${myconf} } +src_compile() { + emake LIBTOOL=libtool +} + src_install() { dodir /etc diropts -m0750 -o root -g radius @@ -159,7 +163,7 @@ src_install() { keepdir /var/log/radius/radacct diropts - emake R="${D}" install + emake LIBTOOL=libtool R="${D}" install fowners -R root:radius /etc/raddb |