components/ptp/Makefile
changeset 1580 dece556dd5e7
child 1948 2d1537e7942d
equal deleted inserted replaced
1579:59f52cde58cc 1580:dece556dd5e7
       
     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) 2013, Oracle and/or its affiliates. All rights reserved.
       
    22 #
       
    23 
       
    24 include ../../make-rules/shared-macros.mk
       
    25 
       
    26 COMPONENT_NAME=		ptpd
       
    27 COMPONENT_VERSION=	2.2.0
       
    28 IPS_COMPONENT_VERSION=	$(COMPONENT_VERSION)
       
    29 COMPONENT_PROJECT_URL=	http://ptpd.sourceforge.net/
       
    30 COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
       
    31 COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
       
    32 COMPONENT_ARCHIVE_HASH=	\
       
    33     sha256:f2266a22db84318d8b9ce266ea83772c03438c31f4993fa9643fa675a07c26b4
       
    34 COMPONENT_ARCHIVE_URL= \
       
    35 	http://downloads.sourceforge.net/project/ptpd/ptpd/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)
       
    36 COMPONENT_BUGDB=	service/ptpd
       
    37 
       
    38 include ../../make-rules/prep.mk
       
    39 include ../../make-rules/justmake.mk
       
    40 include ../../make-rules/ips.mk
       
    41 
       
    42 PATCH_LEVEL =	1
       
    43 
       
    44 PKG_PROTO_DIRS += $(BUILD_DIR_64)
       
    45 
       
    46 COMPILER =      gcc
       
    47 
       
    48 COMPONENT_BUILD_ENV  +=         CC=$(CC)
       
    49 
       
    50 # Enable ASLR for this component
       
    51 ASLR_MODE = $(ASLR_ENABLE)
       
    52 
       
    53 build:		$(BUILD_64)
       
    54 
       
    55 install:	$(INSTALL_64)
       
    56 
       
    57 test:		$(NO_TESTS)
       
    58 
       
    59 BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
       
    60 
       
    61 include ../../make-rules/depend.mk
       
    62 
       
    63