forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-util/cppcheck: Version bump (bug 560104, thanks Christian Strahl).
Package-Manager: portage-2.2.20.1
- Loading branch information
Showing
2 changed files
with
107 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST cppcheck-1.69.tar.bz2 1052984 SHA256 4bd5c8031258ef29764a4c92666384238a625beecbb2aceeb7065ec388c7532e SHA512 30f239bcdf4cb1fcc254271bf55f3fdc1ec22e7d26f0704218390cfce1d4cf3ef41f385f4e463ede1a1a401e87d81b1d66a462c7b07e045d46aebd2354384a01 WHIRLPOOL e341c8b8f133fd19188700d53d6f02ab5deffc10fdfedbc9474931596850c10027a91e445998a3884f8f30908581e428fe4c629397b14660a0fe7b852e48b3a4 | ||
DIST cppcheck-1.70.tar.bz2 1111291 SHA256 c6aaafd41b4c2050f3fb96a4aa159507007403a163d05361bd9544e5baf18f39 SHA512 c2223edce22739e555eca114bc39d8f66229ec26fb122c976e3dcf88957bfd6b37c170e183f22611ea2d17ac22b33da78440f820c044f6099ac901bd6c4f1b8d WHIRLPOOL 0b6c52d13ff8c9c8dfdf383e419edd311a484a89d695dbf9409f1ea608c1dc5bbc20fcb03bc0469495a35b61a43a90ccf1e76cd191cf28326f929020d66083b6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
PYTHON_COMPAT=( python{2_7,3_3,3_4} ) | ||
|
||
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" | ||
IUSE="htmlreport pcre qt4" | ||
|
||
RDEPEND="htmlreport? ( dev-python/pygments[${PYTHON_USEDEP}] ) | ||
>=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 | ||
|
||
epatch_user | ||
} | ||
|
||
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 | ||
else | ||
rm "${ED}/usr/bin/cppcheck-htmlreport" || die | ||
fi | ||
doman ${PN}.1 | ||
dodoc readme.txt | ||
dodoc -r triage | ||
} |