blob: e719c35ff3e4cf03878bc3374604ae63e03ae715 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/borg/borg-1.4.ebuild,v 1.6 2006/01/24 22:10:34 chutzpah Exp $
inherit java-pkg
DESCRIPTION="Calendar and task tracker, written in Java"
HOMEPAGE="http://borg-calendar.sourceforge.net/"
SRC_URI="mirror://sourceforge/borg-calendar/borg_src_${PV}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND=">=virtual/jdk-1.4
app-arch/unzip
dev-java/ant-core"
RDEPEND=">=virtual/jre-1.4"
S="${WORKDIR}/borg_src/BORG Calendar Common/"
src_compile() {
cd ant
local antflags="borg-jar"
ant ${antflags} || die "compile problem"
}
src_install() {
java-pkg_dojar dist/${PN}.jar
echo "#!/bin/sh" > ${PN}
echo "cd /usr/share/${PN}" >> ${PN}
echo "\${JAVA_HOME}/bin/java -jar \$(java-config -p borg) \$*" >> ${PN}
dobin ${PN}
}
|