summaryrefslogtreecommitdiff
path: root/package/ant
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-01-23 08:12:50 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-01-23 08:12:50 +0100
commit2548d641ca7adfe3dcf31d09bb2f9b047b186a0f (patch)
tree8ed2357d972dbf5b69645916c23856dfad713405 /package/ant
parent053ce49e8a9588bbd729e25ab6a33f8f5190350d (diff)
remove jtools/java host dir. use host stuff instead.
fix arm building.
Diffstat (limited to 'package/ant')
-rw-r--r--package/ant/Makefile42
1 files changed, 42 insertions, 0 deletions
diff --git a/package/ant/Makefile b/package/ant/Makefile
new file mode 100644
index 000000000..5476596eb
--- /dev/null
+++ b/package/ant/Makefile
@@ -0,0 +1,42 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= ant
+PKG_VERSION:= 1.8.4
+PKG_RELEASE:= 1
+PKG_MD5SUM:= c474fa9d0c35a24037c23b6e476862c1
+PKG_DESCR:= ant utility
+PKG_SECTION:= lang
+PKG_SITES:= http://archive.apache.org/dist/ant/source/
+
+DISTFILES:= apache-$(PKG_NAME)-$(PKG_VERSION)-src.tar.bz2
+WRKDIST= $(WRKDIR)/apache-$(PKG_NAME)-$(PKG_VERSION)
+
+PKG_ARCH_DEPENDS:= native
+
+include $(TOPDIR)/mk/host.mk
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call HOST_template,ANT,ant,$(PKG_VERSION)-${PKG_RELEASE}))
+
+HOST_STYLE:= manual
+
+host-build:
+ if [ ! -f $(WRKBUILD)/lib/optional/junit-4.9b2.jar ];then \
+ cd $(WRKBUILD)/lib/optional; wget http://openadk.org/distfiles/junit-4.9b2.jar; \
+ fi
+ cp $(STAGING_HOST_DIR)/usr/share/java/ecj.jar $(WRKBUILD)/lib/optional
+ cd ${WRKBUILD}; export BOOTJAVAC_OPTS="-bootclasspath $(STAGING_HOST_DIR)/usr/share/classpath/glibj.zip" \
+ LD_LIBRARY_PATH=$(STAGING_HOST_DIR)/usr/lib:$(STAGING_HOST_DIR)/usr/lib64 \
+ JAVA_HOME=$(STAGING_HOST_DIR)/usr/lib/jvm ; \
+ $(BASH) build.sh
+
+ant-hostinstall:
+ cd $(WRKBUILD)/dist; \
+ $(CP) bin/* $(STAGING_HOST_DIR)/usr/bin ; \
+ $(CP) lib/* $(STAGING_HOST_DIR)/usr/lib
+
+include ${TOPDIR}/mk/host-bottom.mk
+include ${TOPDIR}/mk/pkg-bottom.mk