summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Weber <xmw@gentoo.org>2015-02-27 10:14:25 +0000
committerMichael Weber <xmw@gentoo.org>2015-02-27 10:14:25 +0000
commit66f52cc0cca55bc2c3b2639bbe05f0eb02d4fdbb (patch)
treefae3843b16207e5899fc7919420d268d45c2cd53 /dev-util/cppcheck
parentRevbump for previous RDEPEND change (diff)
downloadgentoo-2-66f52cc0cca55bc2c3b2639bbe05f0eb02d4fdbb.tar.gz
gentoo-2-66f52cc0cca55bc2c3b2639bbe05f0eb02d4fdbb.tar.bz2
gentoo-2-66f52cc0cca55bc2c3b2639bbe05f0eb02d4fdbb.zip
Fix prefix installation (bug 531760, thanks Andrey Hippo)
(Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
Diffstat (limited to 'dev-util/cppcheck')
-rw-r--r--dev-util/cppcheck/ChangeLog6
-rw-r--r--dev-util/cppcheck/cppcheck-1.66.ebuild8
-rw-r--r--dev-util/cppcheck/cppcheck-1.67.ebuild6
3 files changed, 14 insertions, 6 deletions
diff --git a/dev-util/cppcheck/ChangeLog b/dev-util/cppcheck/ChangeLog
index 6a4bd058f9c7..2b4e4aa0a27a 100644
--- a/dev-util/cppcheck/ChangeLog
+++ b/dev-util/cppcheck/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/cppcheck
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/ChangeLog,v 1.60 2015/02/15 19:11:30 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/ChangeLog,v 1.61 2015/02/27 10:14:25 xmw Exp $
+
+ 27 Feb 2015; Michael Weber <xmw@gentoo.org> cppcheck-1.66.ebuild,
+ cppcheck-1.67.ebuild:
+ Fix prefix installation (bug 531760, thanks Andrey Hippo)
15 Feb 2015; Mikle Kolyada <zlogene@gentoo.org> cppcheck-1.67.ebuild:
Add ~arm keyword
diff --git a/dev-util/cppcheck/cppcheck-1.66.ebuild b/dev-util/cppcheck/cppcheck-1.66.ebuild
index 677275231310..71aaebb74a67 100644
--- a/dev-util/cppcheck/cppcheck-1.66.ebuild
+++ b/dev-util/cppcheck/cppcheck-1.66.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/cppcheck-1.66.ebuild,v 1.2 2014/11/28 13:02:40 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/cppcheck-1.66.ebuild,v 1.3 2015/02/27 10:14:25 xmw Exp $
EAPI=5
@@ -81,7 +81,9 @@ src_test() {
}
src_install() {
- emake install DESTDIR="${D}"
+ # it's not autotools-based, so "${ED}" here, not "${D}", bug 531760
+ emake install DESTDIR="${ED}"
+
insinto "/usr/share/${PN}/cfg"
doins cfg/*.cfg
if use qt4 ; then
diff --git a/dev-util/cppcheck/cppcheck-1.67.ebuild b/dev-util/cppcheck/cppcheck-1.67.ebuild
index 4eebcda43cb1..abd387040b1a 100644
--- a/dev-util/cppcheck/cppcheck-1.67.ebuild
+++ b/dev-util/cppcheck/cppcheck-1.67.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/cppcheck-1.67.ebuild,v 1.2 2015/02/15 19:11:30 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/cppcheck-1.67.ebuild,v 1.3 2015/02/27 10:14:25 xmw Exp $
EAPI=5
@@ -81,7 +81,9 @@ src_test() {
}
src_install() {
- emake install DESTDIR="${D}"
+ # it's not autotools-based, so "${ED}" here, not "${D}", bug 531760
+ emake install DESTDIR="${ED}"
+
insinto "/usr/share/${PN}/cfg"
doins cfg/*.cfg
if use qt4 ; then