diff options
author | Michael Weber <xmw@gentoo.org> | 2011-11-15 22:11:40 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2011-11-15 22:11:40 +0000 |
commit | 7c97d66b205c5793d34057564330d4e002eeabf2 (patch) | |
tree | 704e9b0e39adc60915d3f8bb69c07dba21f8560e /net-misc/batctl | |
parent | Stable on amd64 wrt bug #390569 (diff) | |
download | gentoo-2-7c97d66b205c5793d34057564330d4e002eeabf2.tar.gz gentoo-2-7c97d66b205c5793d34057564330d4e002eeabf2.tar.bz2 gentoo-2-7c97d66b205c5793d34057564330d4e002eeabf2.zip |
Fix installation (Makefile changes), EAPI-4 (thanks Franz Schrober, bug 390619)
(Portage version: 2.1.10.11/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/batctl')
-rw-r--r-- | net-misc/batctl/ChangeLog | 6 | ||||
-rw-r--r-- | net-misc/batctl/batctl-2011.3.0.ebuild | 7 |
2 files changed, 8 insertions, 5 deletions
diff --git a/net-misc/batctl/ChangeLog b/net-misc/batctl/ChangeLog index 564e0236e7ce..838ee63477ff 100644 --- a/net-misc/batctl/ChangeLog +++ b/net-misc/batctl/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-misc/batctl # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/batctl/ChangeLog,v 1.3 2011/11/13 23:36:39 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/batctl/ChangeLog,v 1.4 2011/11/15 22:11:40 xmw Exp $ + + 15 Nov 2011; Michael Weber <xmw@gentoo.org> batctl-2011.3.0.ebuild: + Fix installation (Makefile changes), EAPI-4 (thanks Franz Schrober, bug + 390619) *batctl-2011.3.0 (13 Nov 2011) diff --git a/net-misc/batctl/batctl-2011.3.0.ebuild b/net-misc/batctl/batctl-2011.3.0.ebuild index 2767d2d7af72..a96de29f3036 100644 --- a/net-misc/batctl/batctl-2011.3.0.ebuild +++ b/net-misc/batctl/batctl-2011.3.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/batctl/batctl-2011.3.0.ebuild,v 1.1 2011/11/13 23:36:39 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/batctl/batctl-2011.3.0.ebuild,v 1.2 2011/11/15 22:11:40 xmw Exp $ EAPI=4 @@ -27,11 +27,10 @@ pkg_setup() { } src_compile() { - emake CC="$(tc-getCC)" V=1 + emake CC="$(tc-getCC)" V=1 REVISION=gentoo-"${PVR}" } src_install() { - emake INSTALL_PREFIX="${D}" install + emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install dodoc README - doman man/* } |