# 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-r1.ebuild,v 1.1 2006/09/12 19:54:03 nelchael Exp $ inherit java-pkg-2 java-ant-2 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 eant borg-jar || 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} }