mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
04d6f52202
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707
43 lines
1017 B
Makefile
43 lines
1017 B
Makefile
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= slade
|
|
PORTVERSION= 3.1.1.4
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Modern editor for Doom-engine based games and source ports
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= zip:archivers/zip
|
|
LIB_DEPENDS= libsfml-system.so:devel/sfml \
|
|
libftgl.so:graphics/ftgl \
|
|
libfreeimage.so:graphics/freeimage
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= sirjuddington
|
|
GH_PROJECT= ${PORTNAME:tu}
|
|
|
|
USES= cmake compiler:c++11-lib pkgconfig
|
|
USE_WX= 3.0+
|
|
USE_GL= glew
|
|
USE_CXXSTD= c++11
|
|
|
|
PLIST_FILES= bin/slade share/slade3/slade.pk3
|
|
|
|
OPTIONS_DEFINE= FLUIDSYNTH
|
|
OPTIONS_DEFAULT= FLUIDSYNTH
|
|
|
|
FLUIDSYNTH_LIB_DEPENDS= libfluidsynth.so:audio/fluidsynth
|
|
FLUIDSYNTH_RUN_DEPENDS= ${LOCALBASE}/share/sounds/sf2/FluidR3_GM.sf2:audio/fluid-soundfont
|
|
FLUIDSYNTH_CMAKE_OFF= -DNO_FLUIDSYNTH:BOOL=ON
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,"alsa","oss", ; \
|
|
/share\/sounds\/sf2/s,/usr,${LOCALBASE},g' \
|
|
${WRKSRC}/src/Audio/MIDIPlayer.cpp
|
|
|
|
.include <bsd.port.mk>
|