diff options
Diffstat (limited to 'www/qdecoder/Makefile')
-rw-r--r-- | www/qdecoder/Makefile | 50 |
1 files changed, 8 insertions, 42 deletions
diff --git a/www/qdecoder/Makefile b/www/qdecoder/Makefile index 37f44b969ce2..675ce389f970 100644 --- a/www/qdecoder/Makefile +++ b/www/qdecoder/Makefile @@ -6,7 +6,7 @@ # PORTNAME= qdecoder -PORTVERSION= 11.0.0 +PORTVERSION= 12.0.2 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/ \ ftp://ftp.qdecoder.org/pub/qDecoder/ @@ -19,57 +19,23 @@ GNU_CONFIGURE= yes USE_LDCONFIG= yes MAKE_ARGS= exec_prefix="${PREFIX}" -OPTIONS= Q_DEBUG "enable debuging output" off \ - Q_CGI "enable CGI APIs" on \ - Q_SOCKET "enable socket APIs" on \ - Q_IPC "enable IPC APIs" on \ - Q_DATASTRUCTURE "enable data-structure APIs" on \ - Q_MYSQL "enable MySQL database supports" off \ - Q_LFS "enable large-file supports" off \ - Q_SENDFILE "use sendfile() if possible" off +OPTIONS_DEFINE= DEBUG PLIST_FILES= include/qdecoder.h \ lib/libqdecoder.a \ lib/libqdecoder.so \ - lib/libqdecoder.so.11 + lib/libqdecoder.so.12 -.if !defined(NOPORTEXAMPLES) -PORTEXAMPLES= * -.endif - -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -.if defined(WITH_Q_DEBUG) +.if defined(WITH_DEBUG) CONFIGURE_ARGS+="--enable-debug" .endif -.if defined(WITH_Q_LFS) -CONFIGURE_ARGS+="--enable-lfs" -.endif - -.if defined(WITH_Q_SENDFILE) -CONFIGURE_ARGS+="--enable-sendfile" -.endif - -.if defined(WITH_Q_MYSQL) -CONFIGURE_ARGS+="--enable-mysql=${LOCALBASE}/include/mysql" -USE_MYSQL=yes -.endif - -.if defined(WITHOUT_Q_CGI) -CONFIGURE_ARGS+="--disable-cgi" -.endif - -.if defined(WITHOUT_Q_SOCKET) -CONFIGURE_ARGS+="--disable-socket" -.endif - -.if defined(WITHOUT_Q_IPC) -CONFIGURE_ARGS+="--disable-ipc" -.endif +.include <bsd.port.pre.mk> -.if defined(WITHOUT_Q_DATASTRUCTURE) -CONFIGURE_ARGS+="--disable-datastructure" +.if !defined(NOPORTEXAMPLES) +PORTEXAMPLES= * .endif post-install: |