You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
45 lines
1.2 KiB
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-owanttask/ant-owanttask-1.1-r12.ebuild,v 1.14 2012/04/15 18:09:59 vapier Exp $
|
|
|
|
inherit eutils java-pkg-2 java-ant-2
|
|
|
|
DESCRIPTION="ObjectWeb's Ant tasks"
|
|
HOMEPAGE="http://monolog.objectweb.org"
|
|
MY_P="owanttask-${PV}"
|
|
SRC_URI="http://www.gentoo.org/~karltk/java/distfiles/${MY_P}-gentoo.tar.bz2"
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ia64 ppc ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
|
|
IUSE=""
|
|
COMMON_DEP="dev-java/xalan"
|
|
DEPEND=">=virtual/jdk-1.4
|
|
${COMMON_DEP}"
|
|
RDEPEND=">=virtual/jre-1.4
|
|
>=dev-java/ant-core-1.7.0
|
|
${COMMON_DEP}"
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
epatch "${FILESDIR}/${P}-classpath.patch"
|
|
|
|
cp -f "${FILESDIR}/MultipleCopy.java" src/org/objectweb/util/ant
|
|
|
|
mkdir lib
|
|
cd lib
|
|
java-pkg_jar-from ant-core ant.jar
|
|
java-pkg_jar-from xalan
|
|
}
|
|
|
|
src_install() {
|
|
java-pkg_dojar output/lib/ow_util_ant_tasks.jar
|
|
}
|
|
|
|
pkg_postinst() {
|
|
ewarn "The MultipleCopy task is not compatible with ant-1.7.0 and newer"
|
|
ewarn "Attempt to use it will break building."
|
|
}
|