2012-09-27 02:31:15 -05:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
#
|
|
|
|
# This file is part of the LibreOffice project.
|
|
|
|
#
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_ExternalProject_ExternalProject,apache_commons_logging))
|
|
|
|
|
|
|
|
$(eval $(call gb_ExternalProject_use_unpacked,apache_commons_logging,apache_commons_logging))
|
|
|
|
|
2012-10-04 01:35:00 -05:00
|
|
|
# TODO: this should go into RepositoryExternal.mk
|
2012-10-04 02:24:38 -05:00
|
|
|
ifneq ($(SYSTEM_TOMCAT),YES)
|
2012-10-04 01:35:00 -05:00
|
|
|
$(eval $(call gb_ExternalProject_use_packages,apache_commons_logging,\
|
|
|
|
tomcat_inc \
|
|
|
|
))
|
|
|
|
endif
|
|
|
|
|
2012-09-27 02:31:15 -05:00
|
|
|
$(eval $(call gb_ExternalProject_register_targets,apache_commons_logging,\
|
|
|
|
build \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(call gb_ExternalProject_get_state_target,apache_commons_logging,build) :
|
2013-02-21 08:15:39 -06:00
|
|
|
$(call gb_ExternalProject_run,build,\
|
2012-09-27 07:33:53 -05:00
|
|
|
ANT_OPTS="$$ANT_OPTS -Dfile.encoding=ISO-8859-1" \
|
2012-10-10 05:52:28 -05:00
|
|
|
$(ICECREAM_RUN) "$(ANT)" \
|
2012-09-27 02:31:15 -05:00
|
|
|
-q \
|
|
|
|
-f build.xml \
|
2013-01-11 07:07:10 -06:00
|
|
|
-Dbuild.label="build-$(LIBO_VERSION_MAJOR).$(LIBO_VERSION_MINOR).$(LIBO_VERSION_MICRO).$(LIBO_VERSION_PATCH)" \
|
2012-09-27 02:31:15 -05:00
|
|
|
$(if $(filter YES,$(SYSTEM_TOMCAT))\
|
|
|
|
,-Dservletapi.jar=$(SERVLETAPI_JAR) \
|
|
|
|
,-Dservletapi.jar=$(SOLARVER)/$(INPATH)/bin/servlet-api.jar \
|
|
|
|
)\
|
|
|
|
$(if $(filter yes,$(JAVACISGCJ))\
|
|
|
|
,-Dbuild.compiler=gcj \
|
|
|
|
,-Dant.build.javac.source=$(JAVA_SOURCE_VER) \
|
|
|
|
-Dant.build.javac.target=$(JAVA_TARGET_VER) \
|
|
|
|
) \
|
|
|
|
$(if $(debug),-Dbuild.debug="on") \
|
2013-02-21 08:15:39 -06:00
|
|
|
compile build-jar \
|
|
|
|
)
|
2012-09-27 02:31:15 -05:00
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|