diff options
author | jdolecek <jdolecek@pkgsrc.org> | 2003-09-07 09:17:28 +0000 |
---|---|---|
committer | jdolecek <jdolecek@pkgsrc.org> | 2003-09-07 09:17:28 +0000 |
commit | ae0896465768ad38a2ca535039eba045eaba986b (patch) | |
tree | 32bef6037a886bb0ff0ef3ab54f6f65651e569c9 /devel/apache-ant/Makefile | |
parent | 095cef966f8bb0f75b67d8b1eee0ab4c20f2ecc4 (diff) | |
download | pkgsrc-ae0896465768ad38a2ca535039eba045eaba986b.tar.gz |
Update apache-ant to latest available 1.5.4 (1.5.3.1 is no longer available).
Also switch over to tar.bz2 archive.
Changes since 1.5.3:
Fixed bugs:
-----------
* The Visual Age for Java tasks didn't work (at least for versions 3.0
and higher). Bugzilla Report 10016.
* URL-encoding in <vaj*port> didn't work properly.
* VAJRemoteUtil called getAbsolutePath instead of getPath
causing problems when using a Windows VAJ server from a UNIX server.
Bugzilla Report 20457.
* VAJImport task failed with NullPointerException when using DirectoryScanner.
Bugzilla Report 22080.
Other changes:
--------------
* Shipped XML parser is now Xerces 2.5.0
* <javah> will invoke oldjavah on JDK 1.4.2. Bugzilla Report 18667.
* The VAJ tasks now support a haltonfailure attribute to conditionally
keep building even if they fail.
* It is now possible to use the latest (versioned or unversioned) edition
in <vajload> by using special wildcard characters. Also fixes
Bugzilla Report 2236.
Diffstat (limited to 'devel/apache-ant/Makefile')
-rw-r--r-- | devel/apache-ant/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/devel/apache-ant/Makefile b/devel/apache-ant/Makefile index f9bd5581f2b..9bc10340177 100644 --- a/devel/apache-ant/Makefile +++ b/devel/apache-ant/Makefile @@ -1,20 +1,20 @@ -# $NetBSD: Makefile,v 1.3 2003/08/23 15:09:51 jschauma Exp $ +# $NetBSD: Makefile,v 1.4 2003/09/07 09:17:29 jdolecek Exp $ # # NOTE: if you are depending on ant from another package, please be aware that # the ant team has CHANGED the version numbering scheme. A previous version # of ant was 3.1. Do NOT use dependency patterns such as >=1.3 which could pick # up this version by mistake. -DISTNAME= ${PKGNAME:C/.([0-9])$/-\1/}-src -PKGNAME= apache-ant-1.5.3.1 -WRKSRC= ${WRKDIR}/${PKGNAME_NOREV:C/.([0-9])$/-\1/} +DISTNAME= ${PKGNAME}-src +PKGNAME= apache-ant-1.5.4 +WRKSRC= ${WRKDIR}/${PKGNAME} CATEGORIES= devel java MASTER_SITES= ${MASTER_SITE_APACHE:=ant/source/} -EXTRACT_SUFX= .zip +EXTRACT_SUFX= .tar.bz2 MAINTAINER= jwise@NetBSD.org HOMEPAGE= http://ant.apache.org/ -COMMENT= Apache Project's Java-Based make(1) replacement +COMMENT= "Apache Project's Java-Based make(1) replacement" DEPENDS+= crimson>=1.1.3:../../textproc/crimson |