You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-java/glassfish-persistence/glassfish-persistence-1.0.e...

35 lines
885 B

# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/glassfish-persistence/glassfish-persistence-1.0.ebuild,v 1.5 2007/08/19 20:04:22 wltjr Exp $
inherit java-pkg-2 java-ant-2
DESCRIPTION="Glassfish implementation of persistence API"
HOMEPAGE="https://glassfish.dev.java.net/"
SRC_URI="http://download.java.net/javaee5/fcs_branch/promoted/source/glassfish-9_0-b48-src.zip"
LICENSE="CDDL"
SLOT="0"
KEYWORDS="amd64 x86 ~x86-fbsd"
IUSE=""
DEPEND=">=virtual/jdk-1.5
app-arch/unzip"
RDEPEND=">=virtual/jre-1.5"
MODULE="persistence-api"
S="${WORKDIR}/glassfish"
src_compile() {
cd ${S}/${MODULE}
eant all
}
src_install() {
cd ${WORKDIR}/publish/glassfish
java-pkg_newjar lib/javaee.jar
dodir /usr/share/${PN}/lib/schemas
cp lib/schemas/*.xsd ${D}/usr/share/${PN}/lib/schemas
}