You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
2.2 KiB
107 lines
2.2 KiB
10 years ago
|
# Copyright 1999-2015 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
9 years ago
|
# $Id$
|
||
10 years ago
|
|
||
|
EAPI=5
|
||
|
|
||
10 years ago
|
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
|
||
10 years ago
|
|
||
|
inherit distutils-r1 eutils flag-o-matic qt4-r2 toolchain-funcs
|
||
|
|
||
|
DESCRIPTION="static analyzer of C/C++ code"
|
||
|
HOMEPAGE="http://cppcheck.sourceforge.net"
|
||
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
|
||
|
|
||
|
LICENSE="GPL-3"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64 ~arm ~x86"
|
||
10 years ago
|
IUSE="htmlreport pcre qt4"
|
||
10 years ago
|
|
||
9 years ago
|
RDEPEND="htmlreport? ( dev-python/pygments[${PYTHON_USEDEP}] )
|
||
10 years ago
|
>=dev-libs/tinyxml2-2
|
||
|
qt4? ( dev-qt/qtgui:4 )
|
||
|
pcre? ( dev-libs/libpcre )"
|
||
|
DEPEND="${RDEPEND}
|
||
|
app-text/docbook-xsl-stylesheets
|
||
|
dev-libs/libxslt
|
||
|
virtual/pkgconfig"
|
||
|
|
||
|
src_prepare() {
|
||
|
# Drop bundled libs, patch Makefile generator and re-run it
|
||
|
rm -r externals || die
|
||
|
epatch "${FILESDIR}"/${PN}-1.69-tinyxml2.patch
|
||
|
tc-export CXX
|
||
|
emake dmake
|
||
|
./dmake || die
|
||
|
|
||
|
epatch "${FILESDIR}"/${PN}-1.69-c++0x.patch
|
||
9 years ago
|
|
||
|
epatch_user
|
||
10 years ago
|
}
|
||
|
|
||
|
src_configure() {
|
||
|
if use pcre ; then
|
||
|
sed -e '/HAVE_RULES=/s:=no:=yes:' \
|
||
|
-i Makefile
|
||
|
fi
|
||
|
if use qt4 ; then
|
||
|
pushd gui
|
||
|
qt4-r2_src_configure
|
||
|
popd
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
src_compile() {
|
||
|
export LIBS="$(pkg-config --libs tinyxml2)"
|
||
|
emake ${PN} man \
|
||
|
CFGDIR="${EROOT}usr/share/${PN}/cfg" \
|
||
|
DB2MAN="${EROOT}usr/share/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl"
|
||
|
|
||
|
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_test() {
|
||
|
# safe final version
|
||
|
mv -v ${PN}{,.final}
|
||
|
mv -v lib/library.o{,.final}
|
||
|
mv -v cli/cppcheckexecutor.o{,.final}
|
||
|
#trigger recompile with CFGDIR inside ${S}
|
||
|
emake check CFGDIR="${S}/cfg"
|
||
|
# restore
|
||
|
mv -v ${PN}{.final,}
|
||
|
mv -v lib/library.o{.final,}
|
||
|
mv -v cli/cppcheckexecutor.o{.final,}
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
# 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
|
||
|
dobin gui/${PN}-gui
|
||
|
dodoc readme_gui.txt gui/{projectfile.txt,gui.${PN}}
|
||
|
fi
|
||
|
if use htmlreport ; then
|
||
|
pushd htmlreport
|
||
|
distutils-r1_src_install
|
||
|
popd
|
||
|
find "${D}" -name "*.egg-info" -delete
|
||
9 years ago
|
else
|
||
|
rm "${ED}/usr/bin/cppcheck-htmlreport" || die
|
||
10 years ago
|
fi
|
||
|
doman ${PN}.1
|
||
|
dodoc readme.txt
|
||
10 years ago
|
dodoc -r triage
|
||
10 years ago
|
}
|