blob: 67a4020287e28b843ddbd18dab0997643b876258 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdebindings/kdebindings-3.3.0.ebuild,v 1.6 2004/09/15 02:33:12 weeve Exp $
# TODO: add gnustep, objc bindings
inherit kde-dist flag-o-matic eutils
DESCRIPTION="KDE library bindings for languages other than c++"
KEYWORDS="~x86 sparc ppc"
IUSE="mozilla java python ruby gtk"
DEPEND="=kde-base/kdebase-${PV}*
~kde-base/kdenetwork-${PV}
gtk? ( =x11-libs/gtk+-1.2* )
=dev-libs/glib-1.2*
python? ( dev-lang/python )
java? ( virtual/jdk )
ruby? ( virtual/ruby )
mozilla? ( net-www/mozilla )"
src_unpack() {
kde_src_unpack
epatch ${FILESDIR}/3.3.0-sip-Makefile.am.patch
if ! use mozilla ; then
# disable mozilla bindings/xpart, because configure doesn't seem to do so
# even when it doesn't detect the mozilla headers
cd ${S}/xparts
cp Makefile.am Makefile.am.orig
sed -e 's:mozilla::' Makefile.am.orig > Makefile.am
fi
cd ${S} && make -f admin/Makefile.common
}
src_compile() {
use python || myconf="$myconf --without-python"
use java && myconf="$myconf --with-java=`java-config --jdk-home`" || myconf="$myconf --without-java"
use ruby || myconf="$myconf --without-ruby"
# obj bindings are officially broken
#myconf="$myconf --enable-objc"
# we need to have csant (from pnet, from portable.NET) in portage for qtsharp
# export DO_NOT_COMPILE="$DO_NOT_COMPILE qtsharp"
export LIBPYTHON="`python-config`"
# fix bug #14756 fex. Doesn't compile well with -j2.
export MAKEOPTS="$MAKEOPTS -j1"
use hppa && append-flags -ffunction-sections
kde_src_compile
}
|