blob: 54905a3b69e7a2bbf6072e09a36be5dc94e23892 (
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-tv/tvbrowser/tvbrowser-2.1.ebuild,v 1.3 2006/02/02 16:34:12 chutzpah Exp $
inherit eutils java-pkg libtool flag-o-matic
DESCRIPTION="Themeable and easy to use TV Guide - written in Java"
HOMEPAGE="http://www.tvbrowser.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip
themes? ( http://www.tvbrowser.org/downloads/themepacks/allthemepacks.zip )"
SLOT="0"
KEYWORDS="~x86 ~amd64"
RDEPEND="|| ( ( x11-libs/libXt
x11-libs/libSM
x11-libs/libICE
x11-libs/libXext
x11-libs/libXtst
x11-libs/libX11
x11-libs/libXau
x11-libs/libXdmcp
)
virtual/x11
)
>=virtual/jre-1.4
dev-java/junit
dev-java/commons-net
dev-java/jgoodies-forms
dev-java/bsh
dev-java/skinlf"
DEPEND=">=virtual/jdk-1.4
${RDEPEND}
>=dev-java/ant-core-1.5.4
app-arch/unzip
source? ( app-arch/zip )"
LICENSE="GPL-2"
IUSE="doc jikes themes source"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-makefiles.patch
local J_ARCH
case "${ARCH}" in
x86) J_ARCH=i386 ;;
amd64) J_ARCH=amd64 ;;
*) die "not supported arch for this ebuild" ;;
esac
sed -i ${S}/deployment/x11/src/Makefile.am \
-e "s-/lib/i386/-/lib/${J_ARCH}/-"
cd ${S}/lib
rm *.jar
java-pkg_jar-from junit
java-pkg_jar-from commons-net
java-pkg_jar-from jgoodies-forms forms.jar forms-1.0.5.jar
java-pkg_jar-from bsh bsh.jar bsh-2.0b1.jar
java-pkg_jar-from skinlf
cd ${S}/deployment/x11
rm configure
libtoolize --copy --force
autoreconf
}
src_compile() {
local antflags="runtime-linux"
use doc && antflags="${antflags} public-doc"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
cd ${S}
mkdir public
ant ${antflags} || die "compilation failed !"
# second part: systray-module
cd ${S}/deployment/x11
append-flags -fPIC
econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
use source && java-pkg_dosrc src/*
use doc && java-pkg_dohtml -r doc/*
cd runtime/${PN}_linux
java-pkg_dojar ${PN}.jar
local todir="/usr/share/${PN}"
if [ ${SLOT}q != "0q" ] ; then
todir="${todir}-${SLOT}"
fi
cp -a imgs ${D}/${todir}
cp -a plugins ${D}/${todir}
cp linux.properties ${D}/${todir}
cp libDesktopIndicator.so ${D}/${todir}
mkdir "${D}/usr/share/${PN}-themepacks"
cp themepacks/themepack.zip "${D}/usr/share/${PN}-themepacks"
if use themes; then
cd "${D}/usr/share/${PN}-themepacks"
unpack allthemepacks.zip
fi
mkdir ${D}/${todir}/bin
echo "#!/bin/bash" > "${D}/${todir}/bin/tvbrowser.sh"
echo "cd ${todir}" >> "${D}/${todir}/bin/tvbrowser.sh"
echo "export LD_LIBRARY_PATH=\${LD_LIBRARY_PATH}:${todir}" >> "${D}/${todir}/bin/tvbrowser.sh"
echo "\$(java-config -J) -jar lib/tvbrowser.jar" >> "${D}/${todir}/bin/tvbrowser.sh"
chmod +x "${D}/${todir}/bin/tvbrowser.sh"
dodir /usr/bin
dosym ${todir}/bin/tvbrowser.sh /usr/bin/tvbrowser
}
pkg_postinst() {
einfo
einfo "If you want Systray you have to use a jre >= 1.5 !"
einfo
}
|