components/ant/Makefile
changeset 116 ae6a90899b42
child 151 f9e42a3f7095
equal deleted inserted replaced
115:c360825c3a3f 116:ae6a90899b42
       
     1 #
       
     2 # CDDL HEADER START
       
     3 #
       
     4 # The contents of this file are subject to the terms of the
       
     5 # Common Development and Distribution License (the "License").
       
     6 # You may not use this file except in compliance with the License.
       
     7 #
       
     8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
       
     9 # or http://www.opensolaris.org/os/licensing.
       
    10 # See the License for the specific language governing permissions
       
    11 # and limitations under the License.
       
    12 #
       
    13 # When distributing Covered Code, include this CDDL HEADER in each
       
    14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
       
    15 # If applicable, add the following below this CDDL HEADER, with the
       
    16 # fields enclosed by brackets "[]" replaced with your own identifying
       
    17 # information: Portions Copyright [yyyy] [name of copyright owner]
       
    18 #
       
    19 # CDDL HEADER END
       
    20 #
       
    21 
       
    22 #
       
    23 # Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
       
    24 #
       
    25 
       
    26 include ../../make-rules/shared-macros.mk
       
    27 
       
    28 COMPONENT_NAME=		apache-ant
       
    29 COMPONENT_VERSION=	1.7.1
       
    30 COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
       
    31 COMPONENT_ARCHIVE=	$(COMPONENT_SRC)-src.tar.bz2
       
    32 COMPONENT_ARCHIVE_HASH=	sha1:8a468d3ce1e84739a78f779770416a8bd502eaf5
       
    33 COMPONENT_ARCHIVE_URL=	http://archive.apache.org/dist/ant/source/$(COMPONENT_ARCHIVE)
       
    34 
       
    35 include ../../make-rules/prep.mk
       
    36 include ../../make-rules/justmake.mk
       
    37 include ../../make-rules/ips.mk
       
    38 
       
    39 GMAKE=./build.sh
       
    40 
       
    41 ANT_ENV+=JAVA_HOME=$(JAVA_HOME)
       
    42 ANT_ENV+=CLASSPATH=/usr/share/lib/java/junit.jar:/usr/share/antlr-2.7.7/antlr.jar
       
    43 
       
    44 ANT_DIST_DIRS+=-Ddist.dir=$(PROTO_DIR)
       
    45 ANT_DIST_DIRS+=-Ddist.bin=$(PROTO_DIR)/usr/bin
       
    46 ANT_DIST_DIRS+=-Ddist.etc=$(PROTO_DIR)/usr/share/lib/ant
       
    47 ANT_DIST_DIRS+=-Ddist.docs=$(PROTO_DIR)/usr/share/doc/ant
       
    48 ANT_DIST_DIRS+=-Ddist.javadocs=$(PROTO_DIR)/usr/share/doc/ant/manual/api
       
    49 ANT_DIST_DIRS+=-Ddist.lib=$(PROTO_DIR)/usr/share/lib/ant
       
    50 
       
    51 COMPONENT_BUILD_TARGETS=build
       
    52 COMPONENT_BUILD_ENV+=$(ANT_ENV)
       
    53 
       
    54 COMPONENT_INSTALL_TARGETS=$(ANT_DIST_DIRS) dist
       
    55 COMPONENT_INSTALL_ENV+=$(ANT_ENV)
       
    56 
       
    57 include ../../make-rules/shared-targets.mk
       
    58 
       
    59 MAN1FILES=ant.1 
       
    60 
       
    61 $(PROTOMAN1FILES): $(PROTOUSRSHAREMAN1DIR)
       
    62 	$(CP) $(COMPONENT_DIR)/$(@F).sunman $@ 
       
    63 
       
    64 build:	$(BUILD_32)
       
    65 
       
    66 install: $(INSTALL_32) $(PROTOMAN1FILES)
       
    67 
       
    68 test:  build
       
    69 	@cd $(BUILD_DIR_32); $(ENV) $(ANT_ENV) ./build.sh test
       
    70 
       
    71 BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
       
    72 
       
    73 include ../../make-rules/depend.mk