diff options
Diffstat (limited to 'dev-db/henplus/henplus-0.9.5-r2.ebuild')
-rw-r--r-- | dev-db/henplus/henplus-0.9.5-r2.ebuild | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/dev-db/henplus/henplus-0.9.5-r2.ebuild b/dev-db/henplus/henplus-0.9.5-r2.ebuild deleted file mode 100644 index e4c48ba4f8fc..000000000000 --- a/dev-db/henplus/henplus-0.9.5-r2.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/henplus/henplus-0.9.5-r2.ebuild,v 1.8 2006/10/05 14:55:40 gustavoz Exp $ - -inherit java-pkg eutils - -DESCRIPTION="HenPlus is a SQL shell that can handle multiple sessions in parallel. The commandline interface with the usual history functions features TAB-completion for commands, tables and columns. Database connect via JDBC." -HOMEPAGE="http://henplus.sf.net" -SRC_URI="mirror://sourceforge/henplus/${P}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ppc x86" -IUSE="jikes" - -RDEPEND=">=virtual/jre-1.3 - dev-java/libreadline-java" -DEPEND=">=virtual/jdk-1.3 - ${RDEPEND} - >=dev-java/ant-1.4.1 - jikes? ( >=dev-java/jikes-1.17 )" - - -src_unpack() { - unpack ${A} - cd ${S} - epatch ${FILESDIR}/henplus.patch -} - -src_compile() { - local antflags="jar" - use jikes && antflags="${antflags} -Dbuild.compiler=jikes" - export CLASSPATH="$CLASSPATH:$(java-pkg_getjars libreadline-java)" - - ant ${antflags} || die "compile problem" -} - -src_install () { - java-pkg_dojar build/*.jar - dodoc README - dobin bin/henplus -} - |