76 lines
2 KiB
Text
76 lines
2 KiB
Text
# $NetBSD: Makefile.common,v 1.28 2012/10/06 11:54:47 asau Exp $
|
|
#
|
|
# used by games/nethack/Makefile
|
|
# used by games/nethack-lib/Makefile
|
|
# used by games/nethack-x11/Makefile
|
|
# used by games/nethack-tty/Makefile
|
|
# used by games/nethack-qt/Makefile
|
|
|
|
NETHACK_BASEVER= 3.4.3
|
|
NETHACK_VERSION= ${NETHACK_BASEVER}
|
|
NETHACK_DISTVER= ${NETHACK_BASEVER:S/.//g}
|
|
NETHACK_DIR= nethackdir340
|
|
|
|
DISTNAME= nethack-${NETHACK_DISTVER}-src
|
|
CATEGORIES= games
|
|
MASTER_SITES= ftp://ftp.sourceforge.net/pub/sourceforge/n/ne/nethack/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= pooka@NetBSD.org
|
|
HOMEPAGE= http://www.nethack.org/
|
|
LICENSE= nethack-license
|
|
|
|
MAKE_JOBS_SAFE= no
|
|
|
|
.if !defined(META_PACKAGE)
|
|
|
|
WRKSRC= ${WRKDIR}/nethack-${NETHACK_BASEVER}
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_SCRIPT= ./sys/unix/setup.sh
|
|
USE_TOOLS+= gzip yacc lex awk
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} == "Darwin" || ${OPSYS} == "Linux"
|
|
SUBST_CLASSES+= ttylib
|
|
SUBST_MESSAGE.ttylib= Configuring to use ncurses
|
|
SUBST_STAGE.ttylib= post-patch
|
|
SUBST_FILES.ttylib= sys/unix/Makefile.src
|
|
SUBST_SED.ttylib= -e 's,^WINTTYLIB = -ltermlib,WINTTYLIB = -lncurses,'
|
|
.endif
|
|
.include "../../mk/curses.buildlink3.mk"
|
|
|
|
.if ${OPSYS} == "Linux"
|
|
NETHACK_OS= SYSV
|
|
.endif
|
|
NETHACK_OS?= BSD
|
|
|
|
SUBST_CLASSES+= os
|
|
SUBST_MESSAGE.os= Configuring for ${NETHACK_OS}
|
|
SUBST_STAGE.os= post-patch
|
|
SUBST_FILES.os= include/unixconf.h
|
|
SUBST_SED.os= -e 's,__NETHACK_OS__,${NETHACK_OS},'
|
|
|
|
USE_GAMESGROUP= yes
|
|
NETHACK_USER= ${GAMES_USER}
|
|
NETHACK_GROUP= ${GAMES_GROUP}
|
|
BUILD_DEFS+= GAMES_USER GAMES_GROUP
|
|
GAMEPERM= ${NETHACK_USER} ${NETHACK_GROUP} 2555
|
|
|
|
GAMEDIR= ${PREFIX}/share/${NETHACK_DIR}
|
|
VARDIR= /var/games/nethack340
|
|
MAKE_ENV+= GAMEDIR=${GAMEDIR:Q}
|
|
MAKE_ENV+= VARDIR=${VARDIR:Q}
|
|
|
|
pre-configure:
|
|
@${CHMOD} 755 ${WRKSRC}/sys/unix/setup.sh
|
|
|
|
post-patch:
|
|
@${MV} ${WRKSRC}/include/config.h ${WRKSRC}/config.h-pre
|
|
@${SED} -e 's|@PREFIX@|${PREFIX}|g' \
|
|
-e 's|@GZIP_PROGRAM@|'`${ECHO} ${GZIP_CMD} \
|
|
| ${AWK} '{ print $$1 }'`'|g' \
|
|
< ${WRKSRC}/config.h-pre > ${WRKSRC}/include/config.h
|
|
@${RM} -f ${WRKSRC}/config.h-pre
|
|
|
|
.endif # !NO_BUILD
|