diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2009-10-06 18:47:07 +0000 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2009-10-06 18:47:07 +0000 |
commit | 8d73cc249245ae716ddecea8f1787df660809efb (patch) | |
tree | 2513ee0cea794bb6da3c0b5157c9e40b65830d4a /kde-base | |
parent | Version bump (diff) | |
download | gentoo-2-8d73cc249245ae716ddecea8f1787df660809efb.tar.gz gentoo-2-8d73cc249245ae716ddecea8f1787df660809efb.tar.bz2 gentoo-2-8d73cc249245ae716ddecea8f1787df660809efb.zip |
Version bump KDE 4.3.2
(Portage version: 2.2_rc44/cvs/Linux x86_64, RepoMan options: --force)
Diffstat (limited to 'kde-base')
-rw-r--r-- | kde-base/kdebindings-csharp/ChangeLog | 8 | ||||
-rw-r--r-- | kde-base/kdebindings-csharp/kdebindings-csharp-4.3.2.ebuild | 62 |
2 files changed, 69 insertions, 1 deletions
diff --git a/kde-base/kdebindings-csharp/ChangeLog b/kde-base/kdebindings-csharp/ChangeLog index c78f8b86a1c8..83685a3201da 100644 --- a/kde-base/kdebindings-csharp/ChangeLog +++ b/kde-base/kdebindings-csharp/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for kde-base/kdebindings-csharp # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdebindings-csharp/ChangeLog,v 1.5 2009/09/02 10:41:46 wired Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdebindings-csharp/ChangeLog,v 1.6 2009/10/06 18:47:07 alexxy Exp $ + +*kdebindings-csharp-4.3.2 (06 Oct 2009) + + 06 Oct 2009; Alexey Shvetsov <alexxy@gentoo.org> + +kdebindings-csharp-4.3.2.ebuild: + Version bump 02 Sep 2009; Alex Alexander <wired@gentoo.org> kdebindings-csharp-4.3.1.ebuild, diff --git a/kde-base/kdebindings-csharp/kdebindings-csharp-4.3.2.ebuild b/kde-base/kdebindings-csharp/kdebindings-csharp-4.3.2.ebuild new file mode 100644 index 000000000000..3283cc8ee6e9 --- /dev/null +++ b/kde-base/kdebindings-csharp/kdebindings-csharp-4.3.2.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdebindings-csharp/kdebindings-csharp-4.3.2.ebuild,v 1.1 2009/10/06 18:47:07 alexxy Exp $ + +EAPI="2" + +KMNAME="kdebindings" +KMMODULE="csharp" +WEBKIT_REQUIRED="optional" +inherit kde4-meta mono + +DESCRIPTION="C# bindings for KDE and Qt" +KEYWORDS="~amd64 ~x86" +IUSE="akonadi +phonon plasma qscintilla" + +COMMON_DEPEND=" + dev-lang/mono + >=kde-base/smoke-${PV}:${SLOT}[akonadi?,kdeprefix=,phonon?,qscintilla?,webkit?] +" + +DEPEND="${COMMON_DEPEND}" +RDEPEND="${COMMON_DEPEND}" + +KMEXTRACTONLY="smoke/" + +PATCHES=( "${FILESDIR}"/${PN}-build-fixes.patch ) + +pkg_setup() { + kde4-meta_pkg_setup + + if use plasma && ! use webkit; then + eerror + eerror "The plasma USE flag requires the webkit USE flag to be enabled." + eerror + eerror "Please enable webkit or disable plasma." + die "plasma requires webkit" + fi +} + +src_prepare() { + kde4-meta_src_prepare + + sed -i "/add_subdirectory( examples )/ s:^:#:" csharp/plasma/CMakeLists.txt +} + +src_configure() { + local mycmakeargs=" + $(cmake-utils_use_enable webkit QTWEBKIT_SHARP) + $(cmake-utils_use_enable plasma PLASMA_SHARP) + $(cmake-utils_use_enable phonon PHONON_SHARP) + $(cmake-utils_use_enable qscintilla QSCINTILLA_SHARP) + $(cmake-utils_use_enable akonadi KdepimLibs) + $(cmake-utils_use_enable akonadi) + " + kde4-meta_src_configure +} + +src_compile() { + # Parallel builds seem broken, check later + MAKEOPTS=-j1 + kde4-meta_src_compile +} |