blob: 84660981b39b466c90a9ae55f885807587b26f7b (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/qtjava/qtjava-3.5.2.ebuild,v 1.5 2006/05/30 05:09:31 josejx Exp $
KMNAME=kdebindings
KM_MAKEFILESREV=1
MAXKDEVER=$PV
KM_DEPRANGE="$PV $MAXKDEVER"
inherit kde-meta
DESCRIPTION="Java bindings for QT"
HOMEPAGE="http://developer.kde.org/language-bindings/java/qtjava.html"
KEYWORDS="amd64 ppc ~ppc64 x86"
IUSE=""
DEPEND="virtual/jdk"
PATCHES="$FILESDIR/no-gtk-glib-check.diff"
src_compile() {
myconf="$myconf --with-java=`java-config --jdk-home`"
kde-meta_src_compile
}
# Doesn't really need kde, only qt? But then, it installs by default into $KDEDIR/...
# Someone who's into java should look over this...
src_install() {
kde-meta_src_install
mkdir -p $D/usr/share/qtjava
cat > $D/usr/share/qtjava/package.env << EOF
DESCRIPTION=Java bindings for QT
CLASSPATH=:$PREFIX/lib/java/qtjava.jar:
EOF
}
|