2014-01-09 11:02:15 +04:00
|
|
|
# Copyright 1999-2014 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2014-01-13 01:26:28 +04:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/cppcheck-1.63-r1.ebuild,v 1.1 2014/01/12 02:05:54 xmw Exp $
|
2014-01-09 11:02:15 +04:00
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
|
|
|
|
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
|
|
|
|
|
|
|
|
inherit distutils-r1 eutils qt4-r2 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="htmlreport qt4"
|
|
|
|
|
|
|
|
DEPEND="htmlreport? ( ${PYTHON_DEPS} )
|
|
|
|
qt4? ( dev-qt/qtgui:4 )"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
tc-export CXX
|
|
|
|
if use qt4 ; then
|
|
|
|
pushd gui
|
|
|
|
qt4-r2_src_configure
|
|
|
|
popd
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() {
|
2014-01-13 01:26:28 +04:00
|
|
|
emake CFGDIR="/usr/share/${PN}/cfg"
|
2014-01-09 11:02:15 +04:00
|
|
|
if use qt4 ; then
|
|
|
|
pushd gui
|
|
|
|
qt4-r2_src_compile
|
|
|
|
popd
|
|
|
|
fi
|
|
|
|
if use htmlreport ; then
|
|
|
|
pushd htmlreport
|
|
|
|
distutils-r1_src_compile
|
|
|
|
popd
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
emake install DESTDIR="${D}"
|
|
|
|
dodoc readme.txt
|
2014-01-13 01:26:28 +04:00
|
|
|
insinto "/usr/share/${PN}/cfg"
|
|
|
|
doins cfg/*.cfg
|
2014-01-09 11:02:15 +04:00
|
|
|
if use qt4 ; then
|
|
|
|
dobin gui/${PN}-gui
|
|
|
|
dodoc readme_gui.txt gui/{projectfile.txt,gui.cppcheck}
|
|
|
|
fi
|
|
|
|
if use htmlreport ; then
|
|
|
|
pushd htmlreport
|
|
|
|
distutils-r1_src_install
|
|
|
|
popd
|
|
|
|
find "${D}" -name "*.egg-info" -delete
|
|
|
|
fi
|
|
|
|
}
|