(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. 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, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275
66 lines
1.8 KiB
Makefile
66 lines
1.8 KiB
Makefile
# Created by: Igor Pokrovsky <tiamat@telegraph.spb.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= exult
|
|
PORTVERSION= 1.5.0.20160514
|
|
PORTREVISION= 2
|
|
CATEGORIES= games
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Ultima VII engine
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libvorbis.so:audio/libvorbis \
|
|
libpng.so:graphics/png
|
|
|
|
BROKEN_armv6= fails to compile: constant expression evaluates to -1 which cannot be narrowed to type char
|
|
BROKEN_aarch64= fails to compile: constant expression evaluates to -1 which cannot be narrowed to type char
|
|
|
|
USE_GITHUB= yes
|
|
GH_TAGNAME= b15afba
|
|
|
|
USES= autoreconf compiler:c++11-lib gmake libtool localbase pkgconfig
|
|
USE_XORG= xext
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-alsa \
|
|
--with-icondir=${PREFIX}/share/pixmaps
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
OPTIONS_DEFINE= DOCS FLUIDSYNTH GIMP STUDIO THUMBNAILER
|
|
OPTIONS_SINGLE= SDL
|
|
OPTIONS_SINGLE_SDL= SDL1 SDL2
|
|
OPTIONS_DEFAULT= SDL1 STUDIO
|
|
OPTIONS_SUB= yes
|
|
|
|
FLUIDSYNTH_LIB_DEPENDS= libfluidsynth.so:audio/fluidsynth
|
|
FLUIDSYNTH_CONFIGURE_ENABLE=\
|
|
fluidsynth
|
|
GIMP_DESC= GIMP plugin support
|
|
GIMP_LIB_DEPENDS= libgimp-2.0.so:graphics/gimp-app
|
|
GIMP_CONFIGURE_ENABLE= gimp-plugin
|
|
SDL1_DESC= Simple Direct Media Layer 1 support
|
|
SDL1_USE= sdl=mixer
|
|
SDL1_CONFIGURE_ARGS= --with-sdl=sdl12
|
|
SDL2_DESC= Simple Direct Media Layer 2 support
|
|
SDL2_USE= sdl=mixer2
|
|
SDL2_CONFIGURE_ARGS= --with-sdl=sdl2
|
|
STUDIO_DESC= Install Exult Studio
|
|
STUDIO_CONFIGURE_ENABLE=\
|
|
exult-studio exult-studio-support
|
|
STUDIO_USE= gnome=libglade2
|
|
THUMBNAILER_DESC= Gnome SHP thumbnailer support
|
|
THUMBNAILER_USES= shared-mime-info
|
|
THUMBNAILER_USE= gnome=libgnomeui
|
|
THUMBNAILER_CONFIGURE_ENABLE=\
|
|
gnome-shp-thumbnailer
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for i in FAQ NEWS README
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|