components/foomatic/fppd/Makefile
changeset 335 223d5bf98b72
child 609 775168282b2f
equal deleted inserted replaced
334:38c78ad8b01e 335:223d5bf98b72
       
     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 # Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
       
    22 #
       
    23 include ../../../make-rules/shared-macros.mk
       
    24 
       
    25 COMPONENT_NAME=		foomatic-filters-ppds
       
    26 COMPONENT_VERSION=	20080818
       
    27 COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
       
    28 COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
       
    29 COMPONENT_ARCHIVE_HASH=	sha1:2a955af43f52cd7d8b3a158e68c825f90feba790
       
    30 COMPONENT_ARCHIVE_URL=	$(EXTERNAL_ARCHIVE_MIRROR)/$(COMPONENT_ARCHIVE)
       
    31 COMPONENT_PROJECT_URL=	http://www.linuxfoundation.org/collaborate/workgroups/openprinting/database/foomatic
       
    32 
       
    33 include ../../../make-rules/prep.mk
       
    34 include ../../../make-rules/ips.mk
       
    35 
       
    36 CACHE_FILE=$(PROTOUSRLIBDIR)/lp/caches/SUNWfoomatic.cache
       
    37 
       
    38 $(SOURCE_DIR)/.built: $(SOURCE_DIR)/.prep $(COMPONENT_DIR)/nolicense $(COMPONENT_DIR)/supportedonly.sh
       
    39 	$(MKDIR) $(BUILD_DIR)
       
    40 	$(SHELL) $(COMPONENT_DIR)/supportedonly.sh $(BUILD_DIR) \
       
    41 		$(SOURCE_DIR)/share/ppd $(CACHE_FILE) $(COMPONENT_DIR)/nolicense
       
    42 	$(TOUCH) $@
       
    43 
       
    44 # move tree of .ppd-s to proto and gzip it
       
    45 $(SOURCE_DIR)/.installed: $(SOURCE_DIR)/.built
       
    46 	$(MKDIR) $(PROTOUSRSHAREDIR)/ppd
       
    47 	$(CLONEY) $(SOURCE_DIR)/share/ppd $(PROTOUSRSHAREDIR)/ppd/SUNWfoomatic
       
    48 	gzip -rf $(PROTOUSRSHAREDIR)/ppd/SUNWfoomatic
       
    49 	$(TOUCH) $@
       
    50 
       
    51 # common targets
       
    52 build:	$(SOURCE_DIR)/.built
       
    53 
       
    54 install:	$(SOURCE_DIR)/.installed
       
    55 
       
    56 test:	$(NO_TESTS)
       
    57 
       
    58 clean::
       
    59 	$(RM) -r $(BUILD_DIR)
       
    60 
       
    61 include ../../../make-rules/depend.mk