mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
60d1a83c2a
- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
73 lines
2.3 KiB
Makefile
73 lines
2.3 KiB
Makefile
# Created by: Jean-Marc Zucconi <jmz@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= doom
|
|
PORTVERSION= 1.10
|
|
PORTREVISION= 5
|
|
CATEGORIES= games
|
|
MASTER_SITES= IDSOFTWARE/source
|
|
DISTNAME= doomsrc
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= DOOM: the game and the sound server
|
|
|
|
LICENSE= IDSOFTWARE
|
|
LICENSE_NAME= ID SOFTWARE LICENSE
|
|
LICENSE_FILE= ${WRKSRC}/linuxdoom-${PORTVERSION}/DOOMLIC.TXT
|
|
LICENSE_PERMS= dist-mirror pkg-mirror
|
|
|
|
NO_CDROM= Redistribution is limited, see license; Requested by id Software
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
USES= gmake zip
|
|
USE_XORG= x11 sm xextproto xext
|
|
NO_WRKSUBDIR= yes
|
|
|
|
DATADIR= ${DMDIR}
|
|
|
|
post-extract:
|
|
@cd ${WRKDIR} && ${TAR} xzf linuxdoom-1.10.src.tgz && ${TAR} xzf sndserv.tgz
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} 's|<linux/soundcard.h>|<sys/soundcard.h>|g'\
|
|
${WRKSRC}/sndserv/linux.c \
|
|
${WRKSRC}/linuxdoom-1.10/i_sound.c
|
|
${REINPLACE_CMD} 's|<errnos.h>|<errno.h>|g' \
|
|
${WRKSRC}/linuxdoom-1.10/i_video.c
|
|
${REINPLACE_CMD} 's|#include <alloca.h>|//#include <alloca.h>|g'\
|
|
${WRKSRC}/linuxdoom-1.10/r_data.c
|
|
${REINPLACE_CMD} 's|#include <alloca.h>|//#include <alloca.h>|g'\
|
|
${WRKSRC}/linuxdoom-1.10/w_wad.c
|
|
${REINPLACE_CMD} 's|<malloc.c>|<stdlib.h>|g'\
|
|
${WRKSRC}/linuxdoom-1.10/w_wad.c \
|
|
${WRKSRC}/sndserv/soundsrv.c \
|
|
${WRKSRC}/sndserv/wadread.c
|
|
${REINPLACE_CMD} 's|<values.h>|<limits.h>|g'\
|
|
${WRKSRC}/linuxdoom-1.10/m_bbox.h \
|
|
${WRKSRC}/linuxdoom-1.10/doomtype.h
|
|
${REINPLACE_CMD} 's|%%LOCALBASE%%|${LOCALBASE}|g'\
|
|
${WRKSRC}/linuxdoom-1.10/Makefile
|
|
@${FIND} ${WRKSRC} -type f | ${XARGS} ${REINPLACE_CMD} \
|
|
-E -e 's|#include +<malloc.h>|#include <stdlib.h>|g'
|
|
|
|
do-build:
|
|
@cd ${WRKDIR}/linuxdoom-1.10 && ${SETENV} ${MAKE_ENV} \
|
|
${MAKE_CMD} X11BASE=${LOCALBASE}
|
|
@cd ${WRKDIR}/sndserv && ${SETENV} ${MAKE_ENV} ${MAKE_CMD}
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/libexec/doom
|
|
${INSTALL_PROGRAM} ${WRKDIR}/linuxdoom-1.10/linux/linuxxdoom \
|
|
${STAGEDIR}${PREFIX}/libexec/doom/xdoom
|
|
${INSTALL_PROGRAM} ${WRKDIR}/sndserv/linux/sndserver \
|
|
${STAGEDIR}${PREFIX}/libexec/doom/sndserver
|
|
@(${ECHO_CMD} "#!${SH}"; ${ECHO_CMD} "cd ${PREFIX}/libexec/doom"; \
|
|
${ECHO_CMD} 'export PATH=.:$$PATH';${ECHO_CMD} "export DOOMWADDIR=${DATADIR}"; \
|
|
${ECHO_CMD} "./xdoom $$*") > ${STAGEDIR}${PREFIX}/bin/doom
|
|
@${CHMOD} ugo+x ${STAGEDIR}${PREFIX}/bin/doom
|
|
|
|
.include "${.CURDIR}/../doom-data/Makefile.include"
|
|
|
|
.include <bsd.port.mk>
|