blob: be545043a919d1b04f06d20bfd342249c6d75399 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-apache-bsf/ant-apache-bsf-1.7.0-r1.ebuild,v 1.3 2007/06/01 19:50:15 caster Exp $
ANT_TASK_DEPNAME="bsf-2.3"
inherit eutils ant-tasks
KEYWORDS="amd64 ~ia64 ppc ppc64 x86 ~x86-fbsd"
# ant-nodeps contains <script> task which is needed for this
# although it's not a build dep through import
DEPEND=">=dev-java/bsf-2.3.0-r3"
RDEPEND="${DEPEND}
~dev-java/ant-nodeps-${PV}"
JAVA_PKG_FILTER_COMPILER="jikes"
src_install() {
ant-tasks_src_install
java-pkg_register-dependency ant-nodeps
}
built_with_use_warn() {
if ! built_with_use --missing false -o dev-java/bsf ${1}; then
elog "If you want to use ${2} in <script> tasks in build.xml files,"
elog "dev-java/bsf must be installed with \"${3-${1}}\" USE flag"
fi
}
pkg_postinst() {
built_with_use_warn python Python
built_with_use_warn "rhino javascript" JavaScript "rhino or javascript"
built_with_use_warn tcl TCL
elog "Also, >=dev-java/bsf-2.4.0-r1 adds optional support for groovy,"
elog "ruby and beanshell. See its postinst elog messages for instructions."
}
|