components/apr-util-1_5/Makefile
branchs11-update
changeset 3802 c3fd3eae5cb1
child 3996 20c0f21bbe1e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/apr-util-1_5/Makefile	Wed Feb 04 04:20:03 2015 -0800
@@ -0,0 +1,91 @@
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
+# or http://www.opensolaris.org/os/licensing.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+# Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
+#
+include ../../make-rules/shared-macros.mk
+
+COMPONENT_NAME=		apr-util
+COMPONENT_VERSION=	1.5.4
+COMPONENT_PROJECT_URL=	http://apr.apache.org/
+COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
+COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
+COMPONENT_ARCHIVE_HASH=	\
+    sha256:976a12a59bc286d634a21d7be0841cc74289ea9077aa1af46be19d1a6e844c19
+COMPONENT_ARCHIVE_URL=	http://archive.apache.org/dist/apr/$(COMPONENT_ARCHIVE)
+COMPONENT_BUGDB=	utility/apache
+
+TPNO=			20776
+
+CONFIGURE_DEFAULT_DIRS=no
+
+include ../../make-rules/prep.mk
+include ../../make-rules/configure.mk
+include ../../make-rules/ips.mk
+
+# Micro version for easy libraries packaging
+MICRO_VERSION:= $(shell echo $(COMPONENT_VERSION) | awk -F. '{ print $$3 }')
+PKG_MACROS+= MICRO_VERSION=$(MICRO_VERSION)
+
+PATCH_LEVEL=0
+
+CONFIGURE_PREFIX=/usr/apr-util/1.5
+
+CONFIGURE_OPTIONS +=	--with-mysql=/usr/mysql/5.5
+CONFIGURE_OPTIONS +=	--with-expat=/usr
+CONFIGURE_OPTIONS +=	--with-sqlite3=/usr
+CONFIGURE_OPTIONS +=	--with-ldap=ldap_r-2.4
+CONFIGURE_OPTIONS +=	--with-ldap-include=/usr/include/openldap
+CONFIGURE_OPTIONS +=	--without-odbc
+CONFIGURE_OPTIONS +=	CFLAGS="$(CFLAGS)"
+CONFIGURE_OPTIONS.32 +=	--enable-layout=Solaris
+CONFIGURE_OPTIONS.64 +=	--enable-layout=Solaris-$(MACH64)
+CONFIGURE_OPTIONS.32 +=	--with-apr=/usr/apr/1.5/bin/apr-1-config
+CONFIGURE_OPTIONS.64 +=	--with-apr=/usr/apr/1.5/bin/$(MACH64)/apr-1-config
+CONFIGURE_OPTIONS.32 +=	MYSQL_CONFIG=/usr/mysql/5.5/bin/$(MACH32)/mysql_config
+
+PATH=$(SPRO_VROOT)/bin:/usr/bin:/usr/gnu/bin
+ifeq   ($(strip $(PARFAIT_BUILD)),yes)
+PATH=$(PARFAIT_TOOLS):$(SPRO_VROOT)/bin:/usr/bin:/usr/gnu/bin
+endif
+
+COMPONENT_TEST_TARGETS= test
+
+$(INSTALL_64): COMPONENT_POST_INSTALL_ACTION += \
+        cd $(SOURCE_DIR); \
+        sed 's;OUTPUT_DIRECTORY=.*;OUTPUT_DIRECTORY=$(PROTO_DIR)$(CONFIGURE_PREFIX);' \
+          docs/doxygen.conf | doxygen - ;
+
+# Some patches need configure script recreation.
+COMPONENT_PREP_ACTION += (cd $(@D); autoconf);
+
+ASLR_MODE = $(ASLR_NOT_APPLICABLE)
+
+configure:	$(CONFIGURE_32_and_64)
+
+build: $(BUILD_32_and_64)
+
+install: $(INSTALL_32_and_64)
+
+test: $(TEST_32_and_64)
+
+BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
+
+include ../../make-rules/depend.mk