diff options
author | 2011-07-27 23:38:38 +0000 | |
---|---|---|
committer | 2011-07-27 23:38:38 +0000 | |
commit | 47c6f996c4b1bf070d1ec627b9715047f8523bd9 (patch) | |
tree | 41f4174c68a1835ba32e872ac38b54b76c89f904 /dev-util/cppcheck | |
parent | When building nsplugin symlink it to system location. Fixes bug #375299. Also... (diff) | |
download | gentoo-2-47c6f996c4b1bf070d1ec627b9715047f8523bd9.tar.gz gentoo-2-47c6f996c4b1bf070d1ec627b9715047f8523bd9.tar.bz2 gentoo-2-47c6f996c4b1bf070d1ec627b9715047f8523bd9.zip |
Version bump
(Portage version: 2.1.10.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/cppcheck')
-rw-r--r-- | dev-util/cppcheck/ChangeLog | 8 | ||||
-rw-r--r-- | dev-util/cppcheck/cppcheck-1.46.1.ebuild | 83 | ||||
-rw-r--r-- | dev-util/cppcheck/cppcheck-1.49.ebuild (renamed from dev-util/cppcheck/cppcheck-1.47.ebuild) | 6 |
3 files changed, 10 insertions, 87 deletions
diff --git a/dev-util/cppcheck/ChangeLog b/dev-util/cppcheck/ChangeLog index ee9dde6597a9..3eaff53e974a 100644 --- a/dev-util/cppcheck/ChangeLog +++ b/dev-util/cppcheck/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-util/cppcheck # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/ChangeLog,v 1.24 2011/04/27 21:19:02 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/ChangeLog,v 1.25 2011/07/27 23:38:38 xmw Exp $ + +*cppcheck-1.49 (27 Jul 2011) + + 27 Jul 2011; Michael Weber <xmw@gentoo.org> -cppcheck-1.46.1.ebuild, + -cppcheck-1.47.ebuild, +cppcheck-1.49.ebuild: + Version bump (thanks to Christian Strahl, bug 376579), removing old versions. *cppcheck-1.48 (27 Apr 2011) diff --git a/dev-util/cppcheck/cppcheck-1.46.1.ebuild b/dev-util/cppcheck/cppcheck-1.46.1.ebuild deleted file mode 100644 index 2ba5e723b2a0..000000000000 --- a/dev-util/cppcheck/cppcheck-1.46.1.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/cppcheck-1.46.1.ebuild,v 1.2 2011/01/08 20:18:03 arfrever Exp $ - -EAPI="3" -PYTHON_DEPEND="htmlreport? 2" - -inherit distutils 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? ( dev-python/pygments ) - qt4? ( x11-libs/qt-gui:4 - x11-libs/qt-assistant:4 )" -RDEPEND="${DEPEND}" - -pkg_setup() { - if use htmlreport ; then - python_set_active_version 2 - python_pkg_setup - fi -} - -src_prepare() { - if use htmlreport ; then - pushd htmlreport - python_convert_shebangs -r 2 . - distutils_src_prepare - popd - fi -} - -src_configure() { - tc-export CXX - if use qt4 ; then - pushd gui - qt4-r2_src_configure - popd - fi -} - -src_compile() { - emake || die - if use qt4 ; then - pushd gui - qt4-r2_src_compile - popd - fi - if use htmlreport ; then - pushd htmlreport - distutils_src_compile - popd - fi -} - -src_install() { - emake install DESTDIR="${D}" || die - dodoc readme.txt || die - if use qt4 ; then - dobin gui/${PN}-gui || die - dodoc readme_gui.txt gui/{projectfile.txt,gui.cppcheck} || die - fi - if use htmlreport ; then - pushd htmlreport - distutils_src_install - popd - fi -} - -pkg_postinst() { - use htmlreport && distutils_pkg_postinst -} - -pkg_postrm() { - use htmlreport && distutils_pkg_postrm -} diff --git a/dev-util/cppcheck/cppcheck-1.47.ebuild b/dev-util/cppcheck/cppcheck-1.49.ebuild index 8ca0ddbb3f7f..69dbb1781390 100644 --- a/dev-util/cppcheck/cppcheck-1.47.ebuild +++ b/dev-util/cppcheck/cppcheck-1.49.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/cppcheck-1.47.ebuild,v 1.2 2011/04/12 22:51:39 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/cppcheck-1.49.ebuild,v 1.1 2011/07/27 23:38:38 xmw Exp $ EAPI="3" PYTHON_DEPEND="htmlreport? 2" @@ -17,8 +17,8 @@ KEYWORDS="~amd64 ~x86" IUSE="htmlreport qt4" DEPEND="htmlreport? ( dev-python/pygments ) - qt4? ( x11-libs/qt-gui:4 - x11-libs/qt-assistant:4 )" + qt4? ( x11-libs/qt-gui:4 + x11-libs/qt-assistant:4 )" RDEPEND="${DEPEND}" DISTUTILS_SETUP_FILES=("htmlreport|setup.py") |