2006-08-02 22:14:46 +02:00
|
|
|
# New ports collection makefile for: eduke32
|
|
|
|
# Date Created: 1 Aug 2006
|
|
|
|
# Whom: alepulver
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= eduke32
|
2008-02-16 22:38:12 +01:00
|
|
|
PORTVERSION= 20080206
|
2008-03-13 15:28:35 +01:00
|
|
|
PORTREVISION= 1
|
2006-08-02 22:14:46 +02:00
|
|
|
CATEGORIES= games
|
2008-02-16 22:38:12 +01:00
|
|
|
MASTER_SITES= http://wiki.eduke32.com/stuff/
|
|
|
|
DISTFILES= ${PORTNAME}_src_${PORTVERSION}${EXTRACT_SUFX}
|
2007-06-05 07:46:05 +02:00
|
|
|
|
|
|
|
MAINTAINER= olivier@gid0.org
|
2006-08-02 22:14:46 +02:00
|
|
|
COMMENT= Duke Nukem 3D Port based on JFDuke and EDuke
|
|
|
|
|
|
|
|
USE_ZIP= yes
|
|
|
|
USE_GMAKE= yes
|
|
|
|
USE_GL= yes
|
|
|
|
USE_GNOME= gtk20
|
|
|
|
USE_SDL= mixer sdl
|
2008-02-16 22:38:12 +01:00
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}_src_${PORTVERSION}/${PORTNAME}
|
2007-06-05 07:46:05 +02:00
|
|
|
|
|
|
|
OPTIONS= MIDI "Enable MIDI support" on
|
|
|
|
|
|
|
|
.include "${.CURDIR}/../duke3d-data/Makefile.include"
|
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2008-02-22 11:21:53 +01:00
|
|
|
.if ${ARCH} == "i386"
|
|
|
|
BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm
|
|
|
|
.endif
|
|
|
|
|
2007-06-05 07:46:05 +02:00
|
|
|
.if !defined(WITHOUT_MIDI)
|
|
|
|
RUN_DEPENDS+= timidity:${PORTSDIR}/audio/timidity
|
|
|
|
.endif
|
2006-08-02 22:14:46 +02:00
|
|
|
|
|
|
|
post-patch:
|
2008-02-22 11:21:53 +01:00
|
|
|
.if ${ARCH} != "i386"
|
|
|
|
@${REINPLACE_CMD} -Ee 's|^(NOASM =).*|\1 1|' ${WRKSRC}/Makefile
|
|
|
|
.endif
|
2006-08-02 22:14:46 +02:00
|
|
|
@${REINPLACE_CMD} -Ee \
|
2008-02-16 22:38:12 +01:00
|
|
|
's|^(CC=).*|\1${CC}|; \
|
2006-08-02 22:14:46 +02:00
|
|
|
s|^(CXX=).*|\1${CXX}|; \
|
|
|
|
s|/usr/X11R6|${X11BASE}|; \
|
|
|
|
s|sdl-config|${SDL_CONFIG}|' \
|
|
|
|
${WRKSRC}/Makefile \
|
2008-02-16 22:38:12 +01:00
|
|
|
${WRKSRC}/../build/Makefile \
|
|
|
|
${WRKSRC}/../build/Makefile.shared
|
2006-08-02 22:14:46 +02:00
|
|
|
@${REINPLACE_CMD} -e 's|/usr/share/games/eduke32|${DN3DDIR}|' \
|
|
|
|
${WRKSRC}/source/game.c ${WRKSRC}/source/astub.c
|
|
|
|
|
|
|
|
do-install:
|
|
|
|
.for f in eduke32 mapster32
|
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin
|
|
|
|
.endfor
|
|
|
|
.if !defined(NOPORTDOCS)
|
2007-06-05 07:46:05 +02:00
|
|
|
. for f in ChangeLog *.sample
|
2006-08-02 22:14:46 +02:00
|
|
|
${MKDIR} ${DOCSDIR}
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
2007-06-05 07:46:05 +02:00
|
|
|
. endfor
|
2006-08-02 22:14:46 +02:00
|
|
|
.endif
|
|
|
|
|
2007-06-05 07:46:05 +02:00
|
|
|
.include <bsd.port.post.mk>
|