components/openstack/horizon/Makefile
changeset 1760 353323c7bdc1
child 1820 f3a6bd7bd4a6
equal deleted inserted replaced
1759:b412ae0aa701 1760:353323c7bdc1
       
     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) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
       
    24 #
       
    25 include ../../../make-rules/shared-macros.mk
       
    26 
       
    27 COMPONENT_NAME=		horizon
       
    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:fb24b6d8b38d199a8ab0174335df63c7612e74a02e4f0883ee8a3181ce07b4ab
       
    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=	utility/horizon
       
    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 COMPONENT_POST_INSTALL_ACTION += \
       
    52 	($(MKDIR) $(PROTO_DIR)/usr/lib/python2.6/vendor-packages/openstack_dashboard/static/solaris/css; \
       
    53 	 $(CP) files/branding/css/solaris.css $(PROTO_DIR)/usr/lib/python2.6/vendor-packages/openstack_dashboard/static/solaris/css; \
       
    54 	 $(MKDIR) $(PROTO_DIR)/usr/lib/python2.6/vendor-packages/openstack_dashboard/static/solaris/img; \
       
    55 	 $(CP) files/branding/img/* $(PROTO_DIR)/usr/lib/python2.6/vendor-packages/openstack_dashboard/static/solaris/img; \
       
    56 	 $(MKDIR) $(PROTO_DIR)/usr/lib/python2.6/vendor-packages/openstack_dashboard/static/solaris/theme; \
       
    57 	 $(CP) files/branding/theme/_stylesheets.html $(PROTO_DIR)/usr/lib/python2.6/vendor-packages/openstack_dashboard/static/solaris/theme)
       
    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