# # CDDL HEADER START # # The contents of this file are subject to the terms of the # Common Development and Distribution License (the "License"). # You may not use this file except in compliance with the License. # # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE # or http://www.opensolaris.org/os/licensing. # See the License for the specific language governing permissions # and limitations under the License. # # When distributing Covered Code, include this CDDL HEADER in each # file and include the License file at usr/src/OPENSOLARIS.LICENSE. # If applicable, add the following below this CDDL HEADER, with the # fields enclosed by brackets "[]" replaced with your own identifying # information: Portions Copyright [yyyy] [name of copyright owner] # # CDDL HEADER END # # # Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved. # Copyright 2018 Harry Liebel # Copyright 2023 Niklas Poslovski # BUILD_STYLE = justmake include ../../../make-rules/shared-macros.mk COMPONENT_NAME= nethack COMPONENT_VERSION= 3.6.7 COMPONENT_PROJECT_URL= https://www.nethack.org COMPONENT_SRC= NetHack-$(COMPONENT_VERSION) COMPONENT_ARCHIVE= $(COMPONENT_NAME)-367-src.tgz COMPONENT_ARCHIVE_HASH= \ sha256:98cf67df6debf9668a61745aa84c09bcab362e5d33f5b944ec5155d44d2aacb2 COMPONENT_ARCHIVE_URL= $(COMPONENT_PROJECT_URL)/download/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE) COMPONENT_FMRI= games/nethack COMPONENT_LICENSE= Nethack COMPONENT_LICENSE_FILE= $(COMPONENT_NAME).license COMPONENT_SUMMARY= A single-player dungeon exploration game COMPONENT_DESCRIPTION= Nethack is a turn-based single-player dungeon exploration game related to Hack and Rogue. The primary interface is a pseudo-graphical display rendered in text in a terminal, and controlled by the keyboard. COMPONENT_CLASSIFICATION="Applications/Games" TEST_TARGET = $(NO_TESTS) include $(WS_MAKE_RULES)/common.mk PATH=$(PATH.gnu) # Need to use Makefiles in the sys/unix directory and copy them into various # other directories. # COMPONENT_PREP_ACTION= (cd $(SOURCE_DIR)/sys/unix ; sh setup.sh) COMPONENT_INSTALL_ARGS += CHOWN=true COMPONENT_INSTALL_ARGS += CHGRP=true COMPONENT_INSTALL_ARGS += ROOT=$(PROTO_DIR) COMPONENT_BUILD_ENV += CC=$(CC) COMPONENT_BUILD_ENV += CFLAGS="$(CFLAGS)" COMPONENT_BUILD_ENV += LFLAGS="$(CFLAGS)" COMPONENT_INSTALL_ENV += CC=$(CC) COMPONENT_INSTALL_ENV += CFLAGS="$(CFLAGS)" COMPONENT_INSTALL_ENV += LFLAGS="$(CFLAGS)" PKG_PROTO_DIRS += $(COMPONENT_SRC)/doc PKG_PROTO_DIRS += $(COMPONENT_SRC)/sys/unix COMPONENT_POST_INSTALL_ACTION = \ sed -e 's/^!\(NetHack.tomb\)/\1/' -e 's/^!\(NetHack.pet\)/\1/' \ -e 's/^!\(NetHack.tile_file\)/\1/' \ $(COMPONENT_SRC)/win/X11/NetHack.ad \ > $(PROTO_DIR)/usr/lib/nethack/NetHack.ad # Manually added dependencies REQUIRED_PACKAGES += developer/parser/bison-38 REQUIRED_PACKAGES += developer/lexer/flex # Auto-generated dependencies REQUIRED_PACKAGES += library/ncurses REQUIRED_PACKAGES += shell/ksh93 REQUIRED_PACKAGES += system/library REQUIRED_PACKAGES += x11/library/libx11 REQUIRED_PACKAGES += x11/library/toolkit/libxaw7 REQUIRED_PACKAGES += x11/library/toolkit/libxt