diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-01-16 22:04:24 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-01-16 22:04:24 +0000 |
commit | 11a1c81b6f5c6bd5a4ab5567d459c53df56412c9 (patch) | |
tree | 50b89e74caca6ad4b07a2c48387278ae6eb04a43 /kde-base/smoke | |
parent | Bump to 3.5.6 (prerelease). (diff) | |
download | gentoo-2-11a1c81b6f5c6bd5a4ab5567d459c53df56412c9.tar.gz gentoo-2-11a1c81b6f5c6bd5a4ab5567d459c53df56412c9.tar.bz2 gentoo-2-11a1c81b6f5c6bd5a4ab5567d459c53df56412c9.zip |
Bump to 3.5.6 (prerelease).
(Portage version: 2.1.2)
Diffstat (limited to 'kde-base/smoke')
-rw-r--r-- | kde-base/smoke/ChangeLog | 9 | ||||
-rw-r--r-- | kde-base/smoke/files/digest-smoke-3.5.6 | 3 | ||||
-rw-r--r-- | kde-base/smoke/smoke-3.5.6.ebuild | 39 |
3 files changed, 49 insertions, 2 deletions
diff --git a/kde-base/smoke/ChangeLog b/kde-base/smoke/ChangeLog index 7285eceba2a3..08df50bd6757 100644 --- a/kde-base/smoke/ChangeLog +++ b/kde-base/smoke/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/smoke -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/smoke/ChangeLog,v 1.40 2006/10/03 13:20:24 flameeyes Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/smoke/ChangeLog,v 1.41 2007/01/16 22:04:24 flameeyes Exp $ + +*smoke-3.5.6 (16 Jan 2007) + + 16 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> +smoke-3.5.6.ebuild: + Bump to 3.5.6 (prerelease). 03 Oct 2006; Diego Pettenò <flameeyes@gentoo.org> smoke-3.5.2.ebuild: Bump to 3.5.5 (pre-release). diff --git a/kde-base/smoke/files/digest-smoke-3.5.6 b/kde-base/smoke/files/digest-smoke-3.5.6 new file mode 100644 index 000000000000..68a27e497ff5 --- /dev/null +++ b/kde-base/smoke/files/digest-smoke-3.5.6 @@ -0,0 +1,3 @@ +MD5 d26b5f54f062b765a949d66657c2ab3c kdebindings-3.5.6.tar.bz2 5421905 +RMD160 3c6547c5eb4baa9efe0e94473d4daf4e14514f80 kdebindings-3.5.6.tar.bz2 5421905 +SHA256 9fad26d5827d996cbd88d9267883b5bc444f228d9fc8e0312db56e5f6d7363d8 kdebindings-3.5.6.tar.bz2 5421905 diff --git a/kde-base/smoke/smoke-3.5.6.ebuild b/kde-base/smoke/smoke-3.5.6.ebuild new file mode 100644 index 000000000000..530e95285533 --- /dev/null +++ b/kde-base/smoke/smoke-3.5.6.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/smoke/smoke-3.5.6.ebuild,v 1.1 2007/01/16 22:04:24 flameeyes Exp $ + +KMNAME=kdebindings +KMEXTRACTONLY="kalyptus/" +KM_MAKEFILESREV=1 +MAXKDEVER=3.5.5 +KM_DEPRANGE="$PV $MAXKDEVER" +inherit kde-meta + +DESCRIPTION="Scripting Meta Object Kompiler Engine: a language-agnostic bindings generator for qt and kde" +HOMEPAGE="http://developer.kde.org/language-bindings/smoke/" + +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" +DEPEND="dev-lang/perl + dev-python/qscintilla" # QScintilla is an optional dep, there's a configure flag for it, but I don't want + # to introduce a local noqscintilla use flag as it's a light dep. + # Of course it'd be nice if someone told me what the difference is between a smoke + # compiled with and without qscintilla support. --danarmak +PATCHES="$FILESDIR/no-gtk-glib-check.diff" + +# enable-final works, but requires at least 1.5GB of RAM to complete without swapping, +# so it's best to turn it off here. (I don't have that much RAM, so can't estimate +# how much would be enough, but it's at least that much... --danarmak) +src_compile() { + # Remove this to avoid strange errors + rm -f "${S}/kalyptus/configure.in" + + kde-meta_src_compile myconf + # override myconf's setting of enable-final + myconf="$myconf --disable-final" + + # Needs patch to fix paralell building again + MAKEOPTS="$MAKEOPTS -j1" + + kde-meta_src_compile configure make +} |