caster 08/12/09 23:28:00
Modified: ChangeLog ant-apache-bsf-1.7.1.ebuild
Log:
Actually put -r0 back to EAPI=1.
(Portage version: 2.2_rc17/cvs/Linux 2.6.27-gentoo-r1-perfctr x86_64, RepoMan options: --force)
Revision Changes Path
1.17 dev-java/ant-apache-bsf/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/ant-apache-bsf/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/ant-apache-bsf/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/ant-apache-bsf/ChangeLog?r1=1.16&r2=1.17
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/ant-apache-bsf/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog 9 Dec 2008 23:15:07 -0000 1.16
+++ ChangeLog 9 Dec 2008 23:28:00 -0000 1.17
@@ -1,6 +1,10 @@
# ChangeLog for dev-java/ant-apache-bsf
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-apache-bsf/ChangeLog,v 1.16 2008/12/09 23:15:07 caster Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-apache-bsf/ChangeLog,v 1.17 2008/12/09 23:28:00 caster Exp $
+
+ 09 Dec 2008; Vlastimil Babka <caster@g.o>
+ ant-apache-bsf-1.7.1.ebuild:
+ Actually put -r0 back to EAPI=1.
*ant-apache-bsf-1.7.1-r1 (09 Dec 2008)
1.3 dev-java/ant-apache-bsf/ant-apache-bsf-1.7.1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/ant-apache-bsf/ant-apache-bsf-1.7.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/ant-apache-bsf/ant-apache-bsf-1.7.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/ant-apache-bsf/ant-apache-bsf-1.7.1.ebuild?r1=1.2&r2=1.3
Index: ant-apache-bsf-1.7.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/ant-apache-bsf/ant-apache-bsf-1.7.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ant-apache-bsf-1.7.1.ebuild 27 Sep 2008 11:48:47 -0000 1.2
+++ ant-apache-bsf-1.7.1.ebuild 9 Dec 2008 23:28:00 -0000 1.3
@@ -1,8 +1,8 @@
# Copyright 1999-2008 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.1.ebuild,v 1.2 2008/09/27 11:48:47 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-apache-bsf/ant-apache-bsf-1.7.1.ebuild,v 1.3 2008/12/09 23:28:00 caster Exp $
-EAPI=2
+EAPI=1
ANT_TASK_DEPNAME="bsf-2.3"
@@ -12,12 +12,10 @@
# ant-nodeps contains <script> task which is needed for this
# although it's not a build dep through import
-DEPEND=">=dev-java/bsf-2.4.0-r1:2.3[python?,javascript?,tcl?]"
+DEPEND=">=dev-java/bsf-2.4.0-r1:2.3"
RDEPEND="${DEPEND}
~dev-java/ant-nodeps-${PV}"
-IUSE="python javascript tcl"
-
JAVA_PKG_FILTER_COMPILER="jikes"
src_install() {
@@ -25,7 +23,17 @@
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 javascript 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."
}
|