mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-21 08:42:23 +00:00
ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
41 lines
1003 B
Makefile
41 lines
1003 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= ecwolf
|
|
PORTVERSION= 1.3.3
|
|
PORTREVISION= 1
|
|
DISTVERSIONSUFFIX= -src
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://maniacsvault.net/ecwolf/files/ecwolf/1.x/
|
|
|
|
MAINTAINER= pkubaj@anongoth.pl
|
|
COMMENT= Source port for Wolfenstein 3D, Spear of Destiny
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/docs/license-gpl.txt
|
|
|
|
LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2
|
|
|
|
USES= cmake compiler:c++11-lang gnome jpeg localbase:ldflags \
|
|
pkgconfig sdl tar:xz
|
|
USE_GNOME= cairo gdkpixbuf2 gtk20
|
|
USE_SDL= mixer sdl
|
|
|
|
SUB_FILES= ecwolf pkg-message
|
|
SUB_LIST= PORTNAME=${PORTNAME}
|
|
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
share/${PORTNAME}/${PORTNAME} \
|
|
share/${PORTNAME}/${PORTNAME}.pk3
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${DATADIR}
|
|
${INSTALL_PROGRAM} ${BUILD_WRKSRC}/${PORTNAME} \
|
|
${STAGEDIR}${DATADIR}/
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} \
|
|
${STAGEDIR}${PREFIX}/bin/
|
|
${INSTALL_DATA} ${BUILD_WRKSRC}/${PORTNAME}.pk3 \
|
|
${STAGEDIR}${DATADIR}
|
|
|
|
.include <bsd.port.mk>
|