diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2006-12-20 23:15:58 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2006-12-20 23:15:58 +0000 |
commit | e64bf19cebbcd178351cb0523d94958aaf67e7d4 (patch) | |
tree | c4ae286c1b08d834622c2cfa609d3567eeaf421d /dev-java/cdegroot-db/cdegroot-db-0.08-r1.ebuild | |
parent | version bump, new filepicker useflag to get the firefox-1 filepicker (diff) | |
download | historical-e64bf19cebbcd178351cb0523d94958aaf67e7d4.tar.gz historical-e64bf19cebbcd178351cb0523d94958aaf67e7d4.tar.bz2 historical-e64bf19cebbcd178351cb0523d94958aaf67e7d4.zip |
Ported to generation 2.
Package-Manager: portage-2.1.2_rc3-r6
Diffstat (limited to 'dev-java/cdegroot-db/cdegroot-db-0.08-r1.ebuild')
-rw-r--r-- | dev-java/cdegroot-db/cdegroot-db-0.08-r1.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dev-java/cdegroot-db/cdegroot-db-0.08-r1.ebuild b/dev-java/cdegroot-db/cdegroot-db-0.08-r1.ebuild new file mode 100644 index 000000000000..860b89c2a667 --- /dev/null +++ b/dev-java/cdegroot-db/cdegroot-db-0.08-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/cdegroot-db/cdegroot-db-0.08-r1.ebuild,v 1.1 2006/12/20 23:15:58 betelgeuse Exp $ + +inherit eutils java-pkg-2 java-ant-2 + +DESCRIPTION="OO database written in Java" +HOMEPAGE="http://www.cdegroot.com/software/db/" +SRC_URI="http://www.cdegroot.com/software/db/download/com.${P/-/.}.tar.gz" + +LICENSE="cdegroot" +SLOT="1" +KEYWORDS="amd64 x86 ppc64 ppc" +IUSE="doc source" + +DEPEND=">=virtual/jdk-1.4 + dev-java/ant-core + source? ( app-arch/zip )" +RDEPEND=">=virtual/jre-1.4" + +S=${WORKDIR}/com.${P/-/.} + +src_unpack() { + unpack ${A} + cd ${S} + rm -rf src/db/test + + cp ${FILESDIR}/build.xml ${S}/build.xml + epatch ${FILESDIR}/${P}-gentoo.patch +} + +EANT_DOC_TARGET="docs" + +src_install() { + java-pkg_dojar dist/${PN}.jar + + dodoc TODO VERSION CHANGES BUGS README + use doc && java-pkg_dojavadoc docs + use source && java-pkg_dosrc src/* +} |