blob: 91f0e153ae600c3e430d1727189596f10ab6d939 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/freemind/freemind-0.7.1-r1.ebuild,v 1.2 2005/05/05 23:01:01 swegener Exp $
inherit java-pkg eutils
DESCRIPTION="Mind-mapping software written in Java"
HOMEPAGE="http://freemind.sf.net"
SRC_URI="mirror://sourceforge/freemind/${PN}-src-${PV//./_}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc ppc amd64"
IUSE="doc jikes"
DEPEND="dev-java/ant
>=virtual/jdk-1.4
jikes? ( dev-java/jikes )"
RDEPEND=">=virtual/jre-1.4"
S=${WORKDIR}/${PN}
src_compile() {
local antflags="jar browser"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
use doc && antflags="${antflags} doc"
ant ${antflags} || die "Compiling failed!"
}
src_install() {
cd ${WORKDIR}/bin/dist
insinto /opt/${PN}/lib
doins lib/*.jar browser/*.jar
echo "#!/bin/sh" > ${PN}.sh
echo "cd /opt/${PN}" >> ${PN}.sh
echo "'${JAVA_HOME}'/bin/java -jar lib/${PN}.jar" >> ${PN}.sh
cp -R ${S}/doc ${D}/opt/${PN}
use doc && java-pkg_dohtml -r doc/
into /opt
newbin ${PN}.sh ${PN}
mv ${S}/images/FreeMindWindowIcon.png ${S}/images/freemind.png
doicon ${S}/images/freemind.png
make_desktop_entry freemind Freemind freemind.png Utility
}
|