diff options
author | Dominik Kapusta <ayoy@gentoo.org> | 2010-01-20 23:40:41 +0000 |
---|---|---|
committer | Dominik Kapusta <ayoy@gentoo.org> | 2010-01-20 23:40:41 +0000 |
commit | 349f79c25b51d0b6c39c53cd37cd4f7796c11c96 (patch) | |
tree | b16cc84e37ba96af77309226c7d8f5e6e4afa173 /dev-python/generatorrunner | |
parent | Version bumped. (diff) | |
download | gentoo-2-349f79c25b51d0b6c39c53cd37cd4f7796c11c96.tar.gz gentoo-2-349f79c25b51d0b6c39c53cd37cd4f7796c11c96.tar.bz2 gentoo-2-349f79c25b51d0b6c39c53cd37cd4f7796c11c96.zip |
Version bump
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/generatorrunner')
-rw-r--r-- | dev-python/generatorrunner/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/generatorrunner/generatorrunner-0.3.3.ebuild | 30 |
2 files changed, 38 insertions, 2 deletions
diff --git a/dev-python/generatorrunner/ChangeLog b/dev-python/generatorrunner/ChangeLog index 09f908d43b43..82d30130dbaa 100644 --- a/dev-python/generatorrunner/ChangeLog +++ b/dev-python/generatorrunner/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/generatorrunner -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/generatorrunner/ChangeLog,v 1.1 2009/12/20 16:24:49 ayoy Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/generatorrunner/ChangeLog,v 1.2 2010/01/20 23:40:41 ayoy Exp $ + +*generatorrunner-0.3.3 (20 Jan 2010) + + 20 Jan 2010; Dominik Kapusta <ayoy@gentoo.org> + +generatorrunner-0.3.3.ebuild: + Version bump *generatorrunner-0.3.2 (20 Dec 2009) diff --git a/dev-python/generatorrunner/generatorrunner-0.3.3.ebuild b/dev-python/generatorrunner/generatorrunner-0.3.3.ebuild new file mode 100644 index 000000000000..5aca3000e62d --- /dev/null +++ b/dev-python/generatorrunner/generatorrunner-0.3.3.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/generatorrunner/generatorrunner-0.3.3.ebuild,v 1.1 2010/01/20 23:40:41 ayoy Exp $ + +EAPI="2" + +inherit cmake-utils + +DESCRIPTION="A tool that controls bindings generation" +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" + +DEPEND="~dev-python/apiextractor-${PV} + >=x11-libs/qt-core-4.5.0" +RDEPEND="${DEPEND}" + +src_prepare() { + sed -e 's:cmake-${CMAKE_MAJOR_VERSION}\.${CMAKE_MINOR_VERSION}:cmake:' \ + -i CMakeLists.txt || die "sed failed" +} + +src_install() { + cmake-utils_src_install + dodoc AUTHORS ChangeLog || die "dodoc failed" +} |