0d2725682b
structure (i.e. include/SDL for includes and sdl-config for configuration binary) - Update graphics/sdl_ttf to version 2.0.8 - Update graphics/sdl_image to version 1.2.5 - Update audio/sdl_mixer to version 1.2.7 - Update net/sdl_net to version 1.2.6 - Update Mk/bsd.sdl.mk accordingly - Fix dependent ports to fit the new directory structure and avoid several API breakages - Bump up portrevisions for all dependent ports to allow them to be upgraded by portupgrade/portmaster etc tools Approved by: kris (portmgr), sem (mentor)
63 lines
1.9 KiB
Makefile
63 lines
1.9 KiB
Makefile
# New ports collection makefile for: noegnud-nethack-deet
|
|
# Date created: 7 April 2004
|
|
# Whom: Leland Wang <llwang@infor.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= noegnud
|
|
PORTVERSION= 0.8.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://www.darkarts.co.za/projects/noegnud/downloads/${PORTVERSION}/:noegnud \
|
|
${MASTER_SITE_SOURCEFORGE:S/$/:nethack/}
|
|
MASTER_SITE_SUBDIR= nethack/:nethack
|
|
PKGNAMESUFFIX= -nethack-deet
|
|
DISTFILES= ${DISTNAME}_linux_src-minimal${EXTRACT_SUFX}:noegnud \
|
|
nethack-342.tgz:nethack
|
|
EXTRACT_ONLY= ${DISTNAME}_linux_src-minimal${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= llwang@infor.org
|
|
COMMENT= The noeGNUd UI for Nethack with DeeT's hack font patch
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/share/${NOEGNUDVERSION}/data/gui:${PORTSDIR}/games/noegnud-data
|
|
|
|
NOEGNUDVERSION= ${PORTNAME}-0.8.0
|
|
USE_BISON= yes
|
|
USE_GL= yes
|
|
WANT_SDL= yes
|
|
USE_SDL= sdl image mixer
|
|
USE_BZIP2= yes
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/variants
|
|
PATCH_WRKSRC= ${WRKDIR}/${DISTNAME}
|
|
ALL_TARGET= nh342-dt
|
|
INSTALL_TARGET= install_nh342-dt
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
pre-everything::
|
|
.if ${HAVE_SDL}
|
|
@${ECHO_MSG} "This port depends on SDL with OpenGL support."
|
|
@${ECHO_MSG} "If your SDL does not support OpenGL, hit ^C now and reinstall SDL"
|
|
@${ECHO_MSG} "with OpenGL support turned on."
|
|
.endif
|
|
|
|
post-extract:
|
|
@${CP} ${DISTDIR}/nethack-342.tgz ${WRKSRC}/tarballs
|
|
(cd ${WRKSRC} && ${MAKE} nethack-3.4.2-deet)
|
|
|
|
post-patch:
|
|
(cd ${WRKSRC} && ${MAKE} ${NOEGNUDVERSION}-nethack-3.4.2-deet)
|
|
@(${PATCH} ${PATCH_ARGS} < ${FILESDIR}/noegnud-nethack-deet.patch)
|
|
.if ${OSVERSION} < 502103
|
|
@${REINPLACE_CMD} -e 's/regex\.h/gnuregex\.h/' \
|
|
${WRKSRC}/nethack-3.4.2-deet/src/sounds.c \
|
|
${PATCH_WRKSRC}/noegnud/noegnud_textcolour.c \
|
|
${PATCH_WRKSRC}/noegnud/noegnud_textcolour.h \
|
|
${PATCH_WRKSRC}/noegnud/noegnud_textcolouring.c
|
|
.endif
|
|
|
|
do-configure:
|
|
(cd ${WRKSRC} && ${MAKE} ${NOEGNUDVERSION}-nethack-3.4.2-deet/Makefile)
|
|
|
|
.include <bsd.port.post.mk>
|