components/openstack/glance/Makefile
branchs11-update
changeset 3028 5e73a3a3f66a
child 1944 56ac2df1785b
equal deleted inserted replaced
3027:3bcf7d43558b 3028:5e73a3a3f66a
       
     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) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
       
    24 #
       
    25 include ../../../make-rules/shared-macros.mk
       
    26 
       
    27 COMPONENT_NAME=		glance
       
    28 COMPONENT_CODENAME=	grizzly
       
    29 COMPONENT_VERSION=	2013.1.4
       
    30 COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
       
    31 COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
       
    32 COMPONENT_ARCHIVE_HASH=	\
       
    33     sha256:dfb8070a12bbf5761db1c55d21db4772fe81ed903d57cf991618e5224cbdcd67
       
    34 COMPONENT_ARCHIVE_URL=	http://launchpad.net/$(COMPONENT_NAME)/$(COMPONENT_CODENAME)/$(COMPONENT_VERSION)/+download/$(COMPONENT_ARCHIVE)
       
    35 COMPONENT_PROJECT_URL=	http://www.openstack.org/
       
    36 COMPONENT_BUGDB=	service/glance
       
    37 IPS_COMPONENT_VERSION=	0.$(COMPONENT_VERSION) 
       
    38 
       
    39 include $(WS_TOP)/make-rules/prep.mk
       
    40 include $(WS_TOP)/make-rules/setup.py.mk
       
    41 include $(WS_TOP)/make-rules/ips.mk
       
    42 
       
    43 ASLR_MODE = $(ASLR_NOT_APPLICABLE)
       
    44 
       
    45 # Since this is an app, and doesn't provide any public library interfaces, we
       
    46 # only need to deliver one version.  The manifest is parameterized, though.
       
    47 PYTHON_VERSIONS=	2.6
       
    48 
       
    49 PKG_MACROS +=		PYVER=$(PYTHON_VERSIONS)
       
    50 
       
    51 # glance-api and glance-registry depend on the glance-db svc so copy
       
    52 # the manifests into the proto directory for pkgdepend to find
       
    53 COMPONENT_POST_INSTALL_ACTION += \
       
    54 	($(MKDIR) $(PROTO_DIR)/lib/svc/manifest/application/openstack; \
       
    55  	 $(CP) files/glance-db.xml $(PROTO_DIR)/lib/svc/manifest/application/openstack; \
       
    56  	 $(CP) files/glance-api.xml $(PROTO_DIR)/lib/svc/manifest/application/openstack; \
       
    57  	 $(CP) files/glance-registry.xml $(PROTO_DIR)/lib/svc/manifest/application/openstack)
       
    58 
       
    59 # common targets
       
    60 build:		$(BUILD_NO_ARCH)
       
    61 
       
    62 install:	$(INSTALL_NO_ARCH)
       
    63 
       
    64 test:		$(NO_TESTS)
       
    65 
       
    66 BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
       
    67 
       
    68 include $(WS_TOP)/make-rules/depend.mk