components/nethack/Makefile
changeset 301 ab9eef4f4029
child 532 8ec8ea5dd20e
equal deleted inserted replaced
300:6bbccb36ba62 301:ab9eef4f4029
       
     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) 2011, Oracle and/or its affiliates. All rights reserved.
       
    24 #
       
    25 
       
    26 include ../../make-rules/shared-macros.mk
       
    27 
       
    28 COMPONENT_NAME=		nethack
       
    29 COMPONENT_VERSION=	3.4.3
       
    30 COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
       
    31 COMPONENT_ARCHIVE=	$(COMPONENT_NAME)-343-src.tgz
       
    32 COMPONENT_ARCHIVE_HASH=	sha1:c26537093c38152bc0fbcec20468d975b35f59fd
       
    33 COMPONENT_ARCHIVE_URL=	http://sourceforge.net/projects/$(COMPONENT_NAME)/files/$(COMPONENT_NAME)/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)/download
       
    34 
       
    35 include ../../make-rules/prep.mk
       
    36 include ../../make-rules/justmake.mk
       
    37 include ../../make-rules/ips.mk
       
    38 
       
    39 PATCH_LEVEL=0
       
    40 
       
    41 # Need to use Makefiles in the sys/unix directory and copy them into various
       
    42 # other directories.
       
    43 #
       
    44 COMPONENT_PREP_ACTION= (cd $(SOURCE_DIR)/sys/unix ; sh setup.sh)
       
    45 
       
    46 COMPONENT_INSTALL_ARGS += CHOWN=true
       
    47 COMPONENT_INSTALL_ARGS += CHGRP=true
       
    48 COMPONENT_INSTALL_ARGS += ROOT=$(PROTO_DIR)
       
    49 
       
    50 PKG_PROTO_DIRS += $(COMPONENT_SRC)/doc
       
    51 
       
    52 # common targets
       
    53 build:		$(BUILD_32)
       
    54 
       
    55 install:	$(INSTALL_32)
       
    56 	sed -e 's/^!\(NetHack.tomb\)/\1/' -e 's/^!\(NetHack.pet\)/\1/' \
       
    57 		-e 's/^!\(NetHack.tile_file\)/\1/' \
       
    58 		$(COMPONENT_SRC)/win/X11/NetHack.ad \
       
    59 		> $(PROTO_DIR)/usr/lib/nethack/NetHack.ad
       
    60 
       
    61 test:		$(NO_TESTS)
       
    62 
       
    63 BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
       
    64 
       
    65 include ../../make-rules/depend.mk