freebsd-ports/games/mangband/Makefile
Baptiste Daroussin 8d27ddb9bd Add a new macro to deal with conflict between ncurses from base and ncurses from ports.
If a ports is linked against ncurses from base or from the ports, it should then add:
USE_NCURSES=yes

it is also possible to specify the hard dependency on the ports ncurses or one the base one adding the following macros:
WITH_NCURSES_PORT=yes or WITH_NCURSES_BASE=yes

PR:		ports/155269
Submitted by:	me
Reviwed by:	pav@
Approved by:	portmgr (pav@)
Exp-run by:	portmgr (pav@)
2011-04-11 08:34:17 +00:00

73 lines
1.9 KiB
Makefile

# New ports collection makefile for: mangband
# Date created: Thu Jun 11 11:40:54 UTC 2009
# Whom: driedfruit
#
# $FreeBSD$
#
PORTNAME= mangband
PORTVERSION= 1.1.2
CATEGORIES= games
MASTER_SITES= http://www.mangband.org/ http://www.mangband.org/download/
MAINTAINER= flambard@mangband.org
COMMENT= Free online multiplayer real-time roguelike game
ALL_TARGET= mangclient mangband
WRKSRC= ${WRKDIR}/${DISTNAME}/src
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_NCURSES= yes
MAKE_ARGS= "DATADIR=${DATADIR}"
OPTIONS= GCU "Display module GCU" On \
X11 "Display module X11" Off \
SDL "Display module SDL" Off \
.include <bsd.port.pre.mk>
.if defined(WITH_GCU)
CONFIGURE_ARGS+= --with-gcu
.else
CONFIGURE_ARGS+= --without-gcu
.endif
.if defined(WITH_X11)
LIB_DEPENDS+= X11.6:${PORTSDIR}/x11/libX11
CONFIGURE_ARGS+= --with-x11
.else
CONFIGURE_ARGS+= --without-x11
.endif
.if defined(WITH_SDL)
LIB_DEPENDS+= SDL-1.2:${PORTSDIR}/devel/sdl12
CONFIGURE_ARGS+= --with-sdl
.else
CONFIGURE_ARGS+= --without-sdl
.endif
do-install:
@${INSTALL_PROGRAM} -o root -g games -m 2550 \
${WRKSRC}/mangband ${PREFIX}/bin
@${INSTALL_PROGRAM} ${WRKSRC}/mangclient ${PREFIX}/bin
@${CP} ${WRKDIR}/${DISTNAME}/mangband.cfg ${PREFIX}/etc
@echo "# FreeBSD Hacks" >> ${PREFIX}/etc/mangband.cfg
@echo "EDIT_DIR = \"${DATADIR}/edit\"" >> ${PREFIX}/etc/mangband.cfg
@echo "SAVE_DIR = \"${DATADIR}/save\"" >> ${PREFIX}/etc/mangband.cfg
@echo "DATA_DIR = \"${DATADIR}/data\"" >> ${PREFIX}/etc/mangband.cfg
@${MKDIR} ${EXAMPLESDIR}
@echo "[MAngband]" >> ${EXAMPLESDIR}/mangrc
@echo "LibDir ${DATADIR}" >> ${EXAMPLESDIR}/mangrc
@${MKDIR} ${DATADIR}
@cd ${WRKSRC}/../lib && ${PAX} -rw * ${DATADIR}
@${CHMOD} 750 ${DATADIR}/*
@${CHMOD} 755 ${DATADIR}/user
@${CHMOD} 755 ${DATADIR}/xtra
@${CHOWN} -R root:games ${DATADIR}/*
@${CHOWN} ${SHAREOWN}:${SHAREGRP} ${DATADIR}
.include <bsd.port.post.mk>