diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-03-08 19:12:48 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-03-08 19:12:48 +0000 |
commit | cd65fa0b4340203cb5f1eaf005a106bfb7efbb7c (patch) | |
tree | 3aafbf5bbe26b7c5e4a08f403753b03c290ae1bc /dev-util | |
parent | Stable on alpha, bug #260288 (diff) | |
download | historical-cd65fa0b4340203cb5f1eaf005a106bfb7efbb7c.tar.gz historical-cd65fa0b4340203cb5f1eaf005a106bfb7efbb7c.tar.bz2 historical-cd65fa0b4340203cb5f1eaf005a106bfb7efbb7c.zip |
old
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/cppcheck/cppcheck-1.29.ebuild | 30 | ||||
-rw-r--r-- | dev-util/cppcheck/files/cppcheck-1.29-build.patch | 11 |
2 files changed, 0 insertions, 41 deletions
diff --git a/dev-util/cppcheck/cppcheck-1.29.ebuild b/dev-util/cppcheck/cppcheck-1.29.ebuild deleted file mode 100644 index 9e26ff04fb2e..000000000000 --- a/dev-util/cppcheck/cppcheck-1.29.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/cppcheck-1.29.ebuild,v 1.1 2009/03/06 20:13:04 vapier Exp $ - -inherit eutils toolchain-funcs - -DESCRIPTION="static analyzer of C/C++ code" -HOMEPAGE="http://apps.sourceforge.net/trac/cppcheck/" -SRC_URI="mirror://sourceforge/cppcheck/${P}.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-build.patch - sed -i \ - -e '/^CXXFLAGS/s:=:+=:' \ - -e 's:g++:$(CXX):' \ - Makefile - tc-export CXX -} - -src_install() { - emake install DESTDIR="${D}" || die - dodoc readme.txt -} diff --git a/dev-util/cppcheck/files/cppcheck-1.29-build.patch b/dev-util/cppcheck/files/cppcheck-1.29-build.patch deleted file mode 100644 index 01638dc9fcac..000000000000 --- a/dev-util/cppcheck/files/cppcheck-1.29-build.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/Makefile -+++ b/Makefile -@@ -71,7 +71,7 @@ TESTOBJ = test/testbufferoverrun.o \ - ###### Targets - - cppcheck: $(OBJECTS) -- g++ $(CXXFLAGS) -o cppcheck $(OBJECTS) -+ g++ $(CXXFLAGS) -o cppcheck $(OBJECTS) $(LDFLAGS) - - all: cppcheck testrunner tools - |