diff options
author | Tomás Touceda <chiiph@gentoo.org> | 2010-10-06 20:47:52 +0000 |
---|---|---|
committer | Tomás Touceda <chiiph@gentoo.org> | 2010-10-06 20:47:52 +0000 |
commit | 811ba9b0d6c4ef9eb4fdab56ac4d28106dc33888 (patch) | |
tree | f7dbe8718eaf217e76638bbb57c0369556c2f3d3 /dev-python/apiextractor | |
parent | Version bump, fixes bug 326397, bug 323053 (gcc 4.5 compilation) and bug 3385... (diff) | |
download | gentoo-2-811ba9b0d6c4ef9eb4fdab56ac4d28106dc33888.tar.gz gentoo-2-811ba9b0d6c4ef9eb4fdab56ac4d28106dc33888.tar.bz2 gentoo-2-811ba9b0d6c4ef9eb4fdab56ac4d28106dc33888.zip |
Version bump
(Portage version: 2.2_rc88/cvs/Linux i686)
Diffstat (limited to 'dev-python/apiextractor')
-rw-r--r-- | dev-python/apiextractor/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/apiextractor/apiextractor-0.8.0.ebuild | 41 |
2 files changed, 47 insertions, 1 deletions
diff --git a/dev-python/apiextractor/ChangeLog b/dev-python/apiextractor/ChangeLog index b6d450f3cd18..abae02aae0d5 100644 --- a/dev-python/apiextractor/ChangeLog +++ b/dev-python/apiextractor/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/apiextractor # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/apiextractor/ChangeLog,v 1.7 2010/09/13 15:32:53 ayoy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/apiextractor/ChangeLog,v 1.8 2010/10/06 20:47:52 chiiph Exp $ + +*apiextractor-0.8.0 (06 Oct 2010) + + 06 Oct 2010; Tomas Touceda <chiiph@gentoo.org> +apiextractor-0.8.0.ebuild: + Version bump *apiextractor-0.7.0-r1 (13 Sep 2010) diff --git a/dev-python/apiextractor/apiextractor-0.8.0.ebuild b/dev-python/apiextractor/apiextractor-0.8.0.ebuild new file mode 100644 index 000000000000..28c9530b9b10 --- /dev/null +++ b/dev-python/apiextractor/apiextractor-0.8.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/apiextractor/apiextractor-0.8.0.ebuild,v 1.1 2010/10/06 20:47:52 chiiph Exp $ + +EAPI="2" + +inherit cmake-utils virtualx + +DESCRIPTION="Library used to create an internal representation of an API in order to create Python bindings" +HOMEPAGE="http://www.pyside.org/" +SRC_URI="http://www.pyside.org/files/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug test" + +RDEPEND=">=dev-libs/boost-1.41.0[python] + dev-libs/libxml2 + dev-libs/libxslt + >=x11-libs/qt-core-4.5.0 + >=x11-libs/qt-xmlpatterns-4.5.0" + +DEPEND="${RDEPEND} + dev-util/pkgconfig + test? ( >=x11-libs/qt-test-4.5.0 )" + +src_configure() { + mycmakeargs="$(cmake-utils_use_build test TESTS)" + cmake-utils_src_configure +} + +src_test() { + # bug 299766 + Xemake test -C "${CMAKE_BUILD_DIR}/tests" || die "running tests failed" +} + +src_install() { + cmake-utils_src_install + dodoc AUTHORS ChangeLog || die "dodoc failed" +} |