f08eaf3413
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@2329 6952d904-891a-0410-993b-d76249ca496b
46 lines
979 B
Bash
46 lines
979 B
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI="2"
|
|
|
|
JAVA_PKG_IUSE="source doc"
|
|
JAVA_ANT_REWRITE_CLASSPATH="true"
|
|
EANT_GENTOO_CLASSPATH="swt-3.4,isfreetype,isnativec,isrt,jna"
|
|
|
|
inherit java-pkg-2 java-ant-2
|
|
|
|
DESCRIPTION="This is a window toolkit and basic rendering abstraction layer."
|
|
HOMEPAGE="http://opensource.intarsys.de/"
|
|
SRC_URI="mirror://sourceforge/jpodrenderer/isCWT.${PV}.zip"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
COMMON_DEP="dev-java/jna:0
|
|
dev-java/swt:3.4
|
|
dev-java/isrt:0
|
|
dev-java/isnativec:0
|
|
dev-java/isfreetype:0"
|
|
RDEPEND=">=virtual/jre-1.5
|
|
${COMMON_DEP}"
|
|
DEPEND=">=virtual/jdk-1.5
|
|
${COMMON_DEP}
|
|
app-arch/unzip"
|
|
|
|
S="${WORKDIR}"/distribution
|
|
|
|
src_prepare() {
|
|
cp "${FILESDIR}"/build.* "${S}"
|
|
}
|
|
|
|
src_install() {
|
|
java-pkg_dojar build/iscwt/dist/iscwt.jar
|
|
|
|
use source && java-pkg_dosrc src/*
|
|
|
|
use doc && java-pkg_dojavadoc build/iscwt/javadoc
|
|
}
|