blob: a311d23e9c916eb2dee3be0fae445125f36bd8ff (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/ganttproject/ganttproject-1.9.11.ebuild,v 1.2 2004/08/24 03:10:36 zx Exp $
inherit eutils java-pkg
IUSE="doc gnome"
DESCRIPTION="Project Management tool to create Gantt Charts"
SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip"
HOMEPAGE="http://ganttproject.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc"
DEPEND=">=virtual/jdk-1.4
>=dev-java/ant-1.5.4"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/build.xml.patch
epatch ${FILESDIR}/ganttcalendar.patch
}
src_compile() {
ant || die "Failed building classes"
if use doc; then
ant javadocs || die "Failed building javadocs"
fi
echo "#! /bin/sh" > ganttproject
echo "export CLASSPATH=$(java-config -p ganttproject)" >> ganttproject
echo "java net.sourceforge.ganttproject.GanttProject $@" >> ganttproject
}
src_install () {
java-pkg_dojar build/*.jar
java-pkg_dojar lib/optional/*.jar
exeinto /usr/bin
doexe ganttproject
dodoc AUTHORS COPYING README
if use doc; then
dohtml -r build/docs/api
fi
if use gnome; then
mkdir -p ${D}/usr/share/gnome/apps/Office/
mkdir -p ${D}/usr/share/pixmaps
cp ${FILESDIR}/ganttproject.desktop ${D}/usr/share/gnome/apps/Office/
cp data/resources/icons/ganttproject.png ${D}/usr/share/pixmaps
fi
}
|