components/foomatic/db-engine/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-db-engine
       
    26 COMPONENT_VERSION=	3.0-20080903
       
    27 COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
       
    28 COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
       
    29 COMPONENT_ARCHIVE_HASH=	sha1:1545c98b4ec57271b9df3d65f7691c59bca94ccd
       
    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/configure.mk
       
    35 include ../../../make-rules/ips.mk
       
    36 
       
    37 CONFIGURE_OPTIONS +=	CFLAGS="$(CFLAGS)" 
       
    38 CONFIGURE_OPTIONS +=	PERL=$(PERL)
       
    39 CONFIGURE_OPTIONS +=	FILEUTIL=/bin/true
       
    40 
       
    41 # the build system does not support building outside of the source tree
       
    42 COMPONENT_PRE_CONFIGURE_ACTION = $(CLONEY) $(SOURCE_DIR) $(@D) ;
       
    43 
       
    44 # setup perl build
       
    45 COMPONENT_PRE_CONFIGURE_ACTION += cd $(@D)/lib ; $(PERL) Makefile.PL
       
    46 
       
    47 # install perl modules
       
    48 COMPONENT_PRE_INSTALL_ACTION = \
       
    49  ( cd $(@D)/lib ; $(GMAKE) install_vendor DESTDIR=$(PROTO_DIR) )
       
    50 
       
    51 # the perl .packlist contains the path to the file as built rather than
       
    52 # as installed. Fix to be installed path, ie remove PROTO_DIR.
       
    53 VENDORARCH= $(shell $(PERL) -e 'use Config; print $$Config{vendorarch}')
       
    54 PACKLIST=   $(VENDORARCH)/auto/Foomatic/.packlist
       
    55 COMPONENT_POST_INSTALL_ACTION = \
       
    56  sed -e "s/$(subst /,\\/,$(PROTO_DIR))//g" $(PROTO_DIR)/$(PACKLIST) \
       
    57      >> $(PROTO_DIR)/$(PACKLIST).fixed ; \
       
    58  $(MV) $(PROTO_DIR)/$(PACKLIST).fixed $(PROTO_DIR)/$(PACKLIST)
       
    59 
       
    60 
       
    61 # common targets
       
    62 build:		$(BUILD_32)
       
    63 
       
    64 install:	$(INSTALL_32)
       
    65 
       
    66 test:		$(NO_TESTS)
       
    67 
       
    68 BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
       
    69 
       
    70 include ../../../make-rules/depend.mk