| 1 |
caster |
1.1 |
# Eclass for building dev-java/ant-* packages |
| 2 |
|
|
# |
| 3 |
caster |
1.11 |
# Copyright 1999-2012 Gentoo Foundation |
| 4 |
caster |
1.1 |
# Distributed under the terms of the GNU General Public License, v2 or later |
| 5 |
|
|
# Author Vlastimil Babka <caster@gentoo.org> |
| 6 |
sera |
1.12 |
# $Header: /var/cvsroot/gentoo-x86/eclass/ant-tasks.eclass,v 1.11 2012/03/03 22:39:14 caster Exp $ |
| 7 |
caster |
1.1 |
|
| 8 |
caster |
1.4 |
# we set ant-core dep ourselves, restricted |
| 9 |
|
|
JAVA_ANT_DISABLE_ANT_CORE_DEP=true |
| 10 |
|
|
# rewriting build.xml for are the testcases has no reason atm |
| 11 |
|
|
JAVA_PKG_BSFIX_ALL=no |
| 12 |
|
|
inherit versionator java-pkg-2 java-ant-2 |
| 13 |
caster |
1.1 |
|
| 14 |
|
|
EXPORT_FUNCTIONS src_unpack src_compile src_install |
| 15 |
|
|
|
| 16 |
|
|
# ----------------------------------------------------------------------------- |
| 17 |
|
|
# @eclass-begin |
| 18 |
|
|
# @eclass-shortdesc Eclass for building dev-java/ant-* packages |
| 19 |
|
|
# @eclass-maintainer java@gentoo.org |
| 20 |
|
|
# |
| 21 |
|
|
# This eclass provides functionality and default ebuild variables for building |
| 22 |
|
|
# dev-java/ant-* packages easily. |
| 23 |
betelgeuse |
1.2 |
# |
| 24 |
caster |
1.1 |
# ----------------------------------------------------------------------------- |
| 25 |
|
|
|
| 26 |
|
|
# ----------------------------------------------------------------------------- |
| 27 |
|
|
# @variable-preinherit ANT_TASK_JDKVER |
| 28 |
|
|
# @variable-default 1.4 |
| 29 |
|
|
# |
| 30 |
|
|
# Affects the >=virtual/jdk version set in DEPEND string. Defaults to 1.4, can |
| 31 |
|
|
# be overriden from ebuild BEFORE inheriting this eclass. |
| 32 |
|
|
# ----------------------------------------------------------------------------- |
| 33 |
|
|
ANT_TASK_JDKVER=${ANT_TASK_JDKVER-1.4} |
| 34 |
|
|
|
| 35 |
|
|
# ----------------------------------------------------------------------------- |
| 36 |
|
|
# @variable-preinherit ANT_TASK_JREVER |
| 37 |
|
|
# @variable-default 1.4 |
| 38 |
|
|
# |
| 39 |
|
|
# Affects the >=virtual/jre version set in DEPEND string. Defaults to 1.4, can |
| 40 |
|
|
# be overriden from ebuild BEFORE inheriting this eclass. |
| 41 |
|
|
# ----------------------------------------------------------------------------- |
| 42 |
|
|
ANT_TASK_JREVER=${ANT_TASK_JREVER-1.4} |
| 43 |
|
|
|
| 44 |
|
|
# ----------------------------------------------------------------------------- |
| 45 |
|
|
# @variable-internal ANT_TASK_NAME |
| 46 |
|
|
# @variable-default the rest of $PN after "ant-" |
| 47 |
|
|
# |
| 48 |
|
|
# The name of this ant task as recognized by ant's build.xml, derived from $PN. |
| 49 |
|
|
# ----------------------------------------------------------------------------- |
| 50 |
|
|
ANT_TASK_NAME="${PN#ant-}" |
| 51 |
|
|
|
| 52 |
|
|
# ----------------------------------------------------------------------------- |
| 53 |
|
|
# @variable-preinherit ANT_TASK_DEPNAME |
| 54 |
|
|
# @variable-default $ANT_TASK_NAME |
| 55 |
|
|
# |
| 56 |
|
|
# Specifies JAVA_PKG_NAME (PN{-SLOT} used with java-pkg_jar-from) of the package |
| 57 |
|
|
# that this one depends on. Defaults to the name of ant task, ebuild can |
| 58 |
|
|
# override it before inheriting this eclass. |
| 59 |
|
|
# ----------------------------------------------------------------------------- |
| 60 |
|
|
ANT_TASK_DEPNAME=${ANT_TASK_DEPNAME-${ANT_TASK_NAME}} |
| 61 |
|
|
|
| 62 |
|
|
# ----------------------------------------------------------------------------- |
| 63 |
caster |
1.11 |
# @variable-preinherit ANT_TASK_DISABLE_VM_DEPS |
| 64 |
|
|
# @variable-default unset |
| 65 |
|
|
# |
| 66 |
|
|
# If set, no JDK/JRE deps are added. |
| 67 |
|
|
# ----------------------------------------------------------------------------- |
| 68 |
|
|
|
| 69 |
|
|
# ----------------------------------------------------------------------------- |
| 70 |
caster |
1.1 |
# @variable-internal ANT_TASK_PV |
| 71 |
|
|
# @variable-default Just the number in $PV without any beta/RC suffixes |
| 72 |
|
|
# |
| 73 |
|
|
# Version of ant-core this task is intended to register and thus load with. |
| 74 |
|
|
# ----------------------------------------------------------------------------- |
| 75 |
|
|
ANT_TASK_PV="${PV}" |
| 76 |
|
|
|
| 77 |
|
|
# special care for beta/RC releases |
| 78 |
caster |
1.6 |
if [[ ${PV} == *beta2* ]]; then |
| 79 |
|
|
MY_PV=${PV/_beta2/beta} |
| 80 |
|
|
UPSTREAM_PREFIX="http://people.apache.org/dist/ant/v1.7.1beta2/src" |
| 81 |
|
|
GENTOO_PREFIX="http://dev.gentoo.org/~caster/distfiles" |
| 82 |
caster |
1.1 |
ANT_TASK_PV=$(get_version_component_range 1-3) |
| 83 |
|
|
elif [[ ${PV} == *_rc* ]]; then |
| 84 |
|
|
MY_PV=${PV/_rc/RC} |
| 85 |
caster |
1.6 |
UPSTREAM_PREFIX="http://dev.gentoo.org/~caster/distfiles" |
| 86 |
|
|
GENTOO_PREFIX="http://dev.gentoo.org/~caster/distfiles" |
| 87 |
caster |
1.1 |
ANT_TASK_PV=$(get_version_component_range 1-3) |
| 88 |
|
|
else |
| 89 |
|
|
# default for final releases |
| 90 |
|
|
MY_PV=${PV} |
| 91 |
caster |
1.6 |
UPSTREAM_PREFIX="mirror://apache/ant/source" |
| 92 |
sera |
1.12 |
case ${PV} in |
| 93 |
|
|
1.8.4) |
| 94 |
|
|
GENTOO_PREFIX="http://dev.gentoo.org/~sera/distfiles" |
| 95 |
|
|
;; |
| 96 |
|
|
*) |
| 97 |
|
|
GENTOO_PREFIX="http://dev.gentoo.org/~caster/distfiles" |
| 98 |
|
|
;; |
| 99 |
|
|
esac |
| 100 |
caster |
1.1 |
fi |
| 101 |
|
|
|
| 102 |
|
|
# source/workdir name |
| 103 |
|
|
MY_P="apache-ant-${MY_PV}" |
| 104 |
|
|
|
| 105 |
|
|
# ----------------------------------------------------------------------------- |
| 106 |
|
|
# Default values for standard ebuild variables, can be overriden from ebuild. |
| 107 |
|
|
# ----------------------------------------------------------------------------- |
| 108 |
|
|
DESCRIPTION="Apache Ant's optional tasks depending on ${ANT_TASK_DEPNAME}" |
| 109 |
|
|
HOMEPAGE="http://ant.apache.org/" |
| 110 |
caster |
1.6 |
SRC_URI="${UPSTREAM_PREFIX}/${MY_P}-src.tar.bz2 |
| 111 |
|
|
${GENTOO_PREFIX}/ant-${PV}-gentoo.tar.bz2" |
| 112 |
caster |
1.1 |
LICENSE="Apache-2.0" |
| 113 |
|
|
SLOT="0" |
| 114 |
|
|
IUSE="" |
| 115 |
|
|
|
| 116 |
caster |
1.11 |
RDEPEND="~dev-java/ant-core-${PV}" |
| 117 |
|
|
DEPEND="${RDEPEND}" |
| 118 |
|
|
|
| 119 |
|
|
if [[ -z "${ANT_TASK_DISABLE_VM_DEPS}" ]]; then |
| 120 |
|
|
RDEPEND=">=virtual/jre-${ANT_TASK_JREVER} |
| 121 |
|
|
${DEPEND}" |
| 122 |
|
|
DEPEND=">=virtual/jdk-${ANT_TASK_JDKVER} |
| 123 |
|
|
${RDEPEND}" |
| 124 |
|
|
fi |
| 125 |
caster |
1.1 |
|
| 126 |
caster |
1.7 |
# we need direct blockers with old ant-tasks for file collisions - bug #252324 |
| 127 |
|
|
if version_is_at_least 1.7.1 ; then |
| 128 |
|
|
DEPEND="${DEPEND} |
| 129 |
|
|
!dev-java/ant-tasks" |
| 130 |
|
|
fi |
| 131 |
|
|
|
| 132 |
betelgeuse |
1.5 |
# Would run the full ant test suite for every ant task |
| 133 |
|
|
RESTRICT="test" |
| 134 |
|
|
|
| 135 |
caster |
1.6 |
S="${WORKDIR}/${MY_P}" |
| 136 |
|
|
|
| 137 |
caster |
1.1 |
# ------------------------------------------------------------------------------ |
| 138 |
|
|
# @eclass-src_unpack |
| 139 |
|
|
# |
| 140 |
|
|
# Is split into two parts, defaults to both of them ('all'). |
| 141 |
|
|
# base: performs the unpack, build.xml replacement and symlinks ant.jar from |
| 142 |
|
|
# ant-core |
| 143 |
|
|
# jar-dep: symlinks the jar file(s) from dependency package |
| 144 |
|
|
# ------------------------------------------------------------------------------ |
| 145 |
|
|
ant-tasks_src_unpack() { |
| 146 |
|
|
[[ -z "${1}" ]] && ant-tasks_src_unpack all |
| 147 |
|
|
|
| 148 |
|
|
while [[ -n "${1}" ]]; do |
| 149 |
|
|
case ${1} in |
| 150 |
|
|
base) |
| 151 |
|
|
unpack ${A} |
| 152 |
|
|
cd "${S}" |
| 153 |
|
|
|
| 154 |
|
|
# replace build.xml with our modified for split building |
| 155 |
serkan |
1.8 |
mv -f "${WORKDIR}"/build.xml . |
| 156 |
caster |
1.1 |
|
| 157 |
|
|
cd lib |
| 158 |
|
|
# remove bundled xerces |
| 159 |
|
|
rm -f *.jar |
| 160 |
|
|
|
| 161 |
|
|
# ant.jar to build against |
| 162 |
|
|
java-pkg_jar-from --build-only ant-core ant.jar;; |
| 163 |
|
|
jar-dep) |
| 164 |
|
|
# get jar from the dependency package |
| 165 |
caster |
1.6 |
if [[ -n "${ANT_TASK_DEPNAME}" ]]; then |
| 166 |
|
|
java-pkg_jar-from ${ANT_TASK_DEPNAME} |
| 167 |
|
|
fi;; |
| 168 |
caster |
1.1 |
all) |
| 169 |
|
|
ant-tasks_src_unpack base jar-dep;; |
| 170 |
|
|
esac |
| 171 |
|
|
shift |
| 172 |
|
|
done |
| 173 |
|
|
|
| 174 |
|
|
} |
| 175 |
|
|
|
| 176 |
|
|
# ------------------------------------------------------------------------------ |
| 177 |
|
|
# @eclass-src_compile |
| 178 |
|
|
# |
| 179 |
|
|
# Compiles the jar with installed ant-core. |
| 180 |
|
|
# ------------------------------------------------------------------------------ |
| 181 |
|
|
ant-tasks_src_compile() { |
| 182 |
|
|
ANT_TASKS="none" eant -Dbuild.dep=${ANT_TASK_NAME} jar-dep |
| 183 |
|
|
} |
| 184 |
|
|
|
| 185 |
|
|
# ------------------------------------------------------------------------------ |
| 186 |
|
|
# @eclass-src_install |
| 187 |
|
|
# |
| 188 |
|
|
# Installs the jar and registers its presence for the ant launcher script. |
| 189 |
|
|
# Version param ensures it won't get loaded (thus break) when ant-core is |
| 190 |
|
|
# updated to newer version. |
| 191 |
|
|
# ------------------------------------------------------------------------------ |
| 192 |
|
|
ant-tasks_src_install() { |
| 193 |
|
|
java-pkg_dojar build/lib/${PN}.jar |
| 194 |
|
|
java-pkg_register-ant-task --version "${ANT_TASK_PV}" |
| 195 |
caster |
1.6 |
|
| 196 |
|
|
# create the compatibility symlink |
| 197 |
|
|
if version_is_at_least 1.7.1_beta2; then |
| 198 |
|
|
dodir /usr/share/ant/lib |
| 199 |
|
|
dosym /usr/share/${PN}/lib/${PN}.jar /usr/share/ant/lib/${PN}.jar |
| 200 |
|
|
fi |
| 201 |
caster |
1.1 |
} |