blob: 4f8783d74e8cf2d2f5ba216e5f80d6904a747660 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# 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.34.ebuild,v 1.1 2009/07/15 18:08:45 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}"
sed -i \
-e '/^CXXFLAGS/s:=:+=:' \
-e '/^CXX=/d' \
Makefile
tc-export CXX
}
src_install() {
emake install DESTDIR="${D}" || die
dodoc readme.txt
}
|