blob: a524384b2c6a303e66dddd550e01bf7c37eb11b6 (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/libglade-java/libglade-java-2.12.2-r1.ebuild,v 1.1 2006/03/28 04:18:10 nichoj Exp $
# Must be before the gnome.org inherit
GNOME_TARBALL_SUFFIX="gz"
inherit java-pkg eutils gnome.org
DESCRIPTION="Java bindings for Glade"
HOMEPAGE="http://java-gnome.sourceforge.net/"
# Not on gnome.org mirrors yet :-(
SRC_URI="http://research.operationaldynamics.com/linux/java-gnome/dist/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="2.12"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc gcj gnome source"
DEPS=">=gnome-base/libglade-2.5.1
>=dev-java/glib-java-0.2.3
>=dev-java/libgnome-java-2.8.0
gnome? ( >=gnome-base/libgnomeui-2.12.0 >=gnome-base/libgnomecanvas-2.12.0 )
dev-util/pkgconfig"
DEPEND=">=virtual/jdk-1.4
>=sys-apps/sed-4
${DEPS}"
RDEPEND=">=virtual/jre-1.4
${DEPS}"
JARNAME="glade${SLOT}.jar"
pkg_setup() {
if use gcj ; then
if ! built_with_use sys-devel/gcc gcj ; then
ewarn
ewarn "You must build gcc with the gcj support to build with gcj"
ewarn
ebeep 5
die "No GCJ support found!"
fi
fi
}
src_compile() {
# this gcj deal is a workaround for http://bugzilla.gnome.org/show_bug.cgi?id=336149
local myflags
use gcj || myflags="${myflags} --without-gcj-compile"
econf ${myflags} \
$(use_with doc javadocs) \
$(use_with gnome) \
--with-jardir=/usr/share/${PN}-${SLOT}/lib \
|| die "configure failed"
emake || die "compile failed"
# Fix the broken pkgconfig file
sed -i \
-e "s:classpath.*$:classpath=\${prefix}/share/${PN}-${SLOT}/lib/${JARNAME}:" \
${S}/glade-java.pc
}
src_install() {
emake DESTDIR=${D} install || die "install failed"
# Examples as documentation
use doc || rm -rf ${D}/usr/share/doc/${PF}/examples
# Use the jars installed by make
# and build our own package.env file.
# NOTE: dojar puts the jar in the wrong place! (/usr/share/${PN}/lib)
cat <<-END > ${D}/usr/share/${PN}-${SLOT}/package.env
DESCRIPTION=${DESCRIPTION}
CLASSPATH=/usr/share/${PN}-${SLOT}/lib/${JARNAME}
END
use source && java-pkg_dosrc ${S}/src/java/*
}
|