61 lines
2.0 KiB
Bash
61 lines
2.0 KiB
Bash
|
# Copyright 1999-2007 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: /var/cvsroot/gentoo-x86/dev-java/bsf/bsf-2.4.0.ebuild,v 1.4 2007/07/11 19:58:37 mr_bones_ Exp $
|
||
|
|
||
|
JAVA_PKG_IUSE="doc examples source"
|
||
|
inherit java-pkg-2 eutils java-ant-2 versionator
|
||
|
|
||
|
MY_PV=$(replace_version_separator 3 '-')
|
||
|
MY_V=1.1.0
|
||
|
|
||
|
DESCRIPTION="A Java Management Console framework used for remote server management."
|
||
|
HOMEPAGE="http://directory.fedoraproject.org/"
|
||
|
SRC_URI="http://ftp.mars.arge.at/fedora-ds/idm-console-framework-${MY_PV}.tar.bz2
|
||
|
ftp://mars.arge.at/fedora-ds/idm-console-framework-${MY_PV}.tar.bz2"
|
||
|
LICENSE="LGPL-2.1"
|
||
|
SLOT="1.1"
|
||
|
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
|
||
|
IUSE=""
|
||
|
|
||
|
S="${WORKDIR}/idm-console-framework-${MY_PV}"
|
||
|
|
||
|
COMMON_DEP="=dev-java/jss-4*
|
||
|
dev-java/ldapsdk"
|
||
|
RDEPEND="=virtual/jre-1.5*
|
||
|
${COMMON_DEP}"
|
||
|
DEPEND=">=virtual/jdk-1.5
|
||
|
${COMMON_DEP}"
|
||
|
|
||
|
# Force 1.5 to be used for building
|
||
|
JAVA_PKG_NV_DEPEND="=virtual/jdk-1.5*"
|
||
|
|
||
|
src_unpack() {
|
||
|
unpack ${A}
|
||
|
cd ${S}
|
||
|
java-pkg_jarfrom ldapsdk-4.1 ldapjdk.jar
|
||
|
java-pkg_jarfrom jss-3.4 xpclass.jar jss4.jar
|
||
|
}
|
||
|
|
||
|
src_compile() {
|
||
|
eant -Dbuilt.dir=${S}/build \
|
||
|
-Dldapjdk.local.location=${S} \
|
||
|
-Djss.local.location=${S} ${antflags}
|
||
|
|
||
|
use doc && eant -Dbuilt.dir=${S}/build \
|
||
|
-Dldapjdk.local.location=${S} \
|
||
|
-Djss.local.location=${S} ${antflags} javadocs
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
java-pkg_newjar ${S}/build/release/jars/idm-console-mcc-${MY_V}.jar idm-console-mcc.jar
|
||
|
java-pkg_newjar ${S}/build/release/jars/idm-console-mcc-${MY_V}_en.jar idm-console-mcc_en.jar
|
||
|
java-pkg_newjar ${S}/build/release/jars/idm-console-nmclf-${MY_V}.jar idm-console-nmclf.jar
|
||
|
java-pkg_newjar ${S}/build/release/jars/idm-console-nmclf-${MY_V}_en.jar idm-console-nmclf_en.jar
|
||
|
java-pkg_newjar ${S}/build/release/jars/idm-console-base-${MY_V}.jar idm-console-base.jar
|
||
|
# dodoc CHANGES.txt NOTICE.txt README.txt RELEASE-NOTE.txt TODO.txt || die
|
||
|
|
||
|
# use doc && java-pkg_dojavadoc build/javadocs
|
||
|
use examples && java-pkg_doexamples examples
|
||
|
use source && java-pkg_dosrc src/com
|
||
|
}
|