diff options
author | Tobias Kortkamp <tobik@FreeBSD.org> | 2019-02-26 12:55:57 +0000 |
---|---|---|
committer | Tobias Kortkamp <tobik@FreeBSD.org> | 2019-02-26 12:55:57 +0000 |
commit | 341e321419a71ae69861cda7178bfb36becd11ac (patch) | |
tree | d520467b0e52b15d2278213a238dc70d111fc22f /audio/openal-soft/Makefile | |
parent | fabbba245e24c15441e54128f545394d2feeac9e (diff) | |
download | ports-341e321419a71ae69861cda7178bfb36becd11ac.tar.gz ports-341e321419a71ae69861cda7178bfb36becd11ac.zip |
audio/openal-soft: Use Qt 5 for configuration utility
Notes
Notes:
svn path=/head/; revision=493962
Diffstat (limited to 'audio/openal-soft/Makefile')
-rw-r--r-- | audio/openal-soft/Makefile | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/audio/openal-soft/Makefile b/audio/openal-soft/Makefile index 8fb063e3783b..069c11cca76d 100644 --- a/audio/openal-soft/Makefile +++ b/audio/openal-soft/Makefile @@ -2,7 +2,7 @@ PORTNAME= openal-soft PORTVERSION= 1.19.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= http://openal-soft.org/openal-releases/ @@ -37,12 +37,12 @@ OPTIONS_DEFINE= EXAMPLES CONFIG JACK OSS PORTAUDIO PULSEAUDIO SDL SNDIO OPTIONS_DEFAULT= OSS OPTIONS_SUB= yes -CONFIG_DESC= Install configuration utility (needs Qt 4.x) +CONFIG_DESC= Install configuration utility (needs Qt 5) CONFIG_CMAKE_BOOL_OFF= ALSOFT_NO_CONFIG_UTIL -CONFIG_CMAKE_ON= -DALSOFT_NO_QT5:BOOL=ON -CONFIG_USES= qt:4 -CONFIG_USE= QT=corelib,gui,qmake_build,moc_build,rcc_build,uic_build +CONFIG_CMAKE_ON= -DALSOFT_NO_QT5:BOOL=OFF +CONFIG_USES= qt:5 +CONFIG_USE= QT=core,gui,widgets,buildtools_build,qmake_build JACK_CMAKE_BOOL= ALSOFT_REQUIRE_JACK ALSOFT_BACKEND_JACK JACK_LIB_DEPENDS= libjack.so:audio/jack @@ -62,13 +62,6 @@ SDL_USE= SDL=sdl2 SNDIO_CMAKE_BOOL= ALSOFT_REQUIRE_SNDIO ALSOFT_BACKEND_SNDIO SNDIO_LIB_DEPENDS= libsndio.so:audio/sndio -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MCONFIG} -DEPRECATED= Qt4 has been EOL since december 2015 -EXPIRATION_DATE= 2019-03-15 -.endif - post-patch: @${REINPLACE_CMD} 's|/etc/openal|${ETCDIR}|' \ ${WRKSRC}/Alc/alconfig.c |