blob: e1e37e559389caac662b93eb1cafd6aeaba7fc98 (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdebindings/kdebindings-3.1_rc6.ebuild,v 1.1 2003/01/05 13:09:43 hannes Exp $
# TODO: add gnustep, objc bindings
inherit kde-dist
DESCRIPTION="KDE library bindings for languages other than c++"
KEYWORDS="~x86"
newdepend "~kde-base/kdebase-${PV}
=x11-libs/gtk+-1.2*
sys-devel/perl
python? ( dev-lang/python )
java? ( virtual/jdk )
=dev-libs/glib-1.2*
~kde-base/kdenetwork-${PV}
mozilla? ( net-www/mozilla )"
use python || myconf="$myconf --without-python"
use java && myconf="$myconf --with-java=$(java-config --jdk-home)" || myconf="$myconf --without-java"
# 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`"
#src_unpack()
#{
# base_src_unpack
#
# if [ -z "`use mozilla`" ]; then
# # disable mozilla bindings/xpart
# cd ${S}
# cp configure configure.orig
# sed -e 's:mozilla_incldirs=:# mozilla_incldirs=:' configure.orig > configure
# chmod +x configure
# fi
#}
|