diff options
author | madpilot <madpilot@FreeBSD.org> | 2017-12-13 05:29:57 +0800 |
---|---|---|
committer | madpilot <madpilot@FreeBSD.org> | 2017-12-13 05:29:57 +0800 |
commit | 449af9e6fba8571d4b2b208d7c8553b21bb3716c (patch) | |
tree | 854bdaba20de06958c822081f4c989c3ce7d6e10 /multimedia/libva-utils/Makefile | |
parent | 748dd2c8af2a8dea4db277433f60d310d27b3d1c (diff) | |
download | freebsd-ports-gnome-449af9e6fba8571d4b2b208d7c8553b21bb3716c.tar.gz freebsd-ports-gnome-449af9e6fba8571d4b2b208d7c8553b21bb3716c.tar.zst freebsd-ports-gnome-449af9e6fba8571d4b2b208d7c8553b21bb3716c.zip |
- Update libva to 2.0.0
- Update libva-intel-driver to 2.0.0
- Update libva-utils to 2.0.0
- Bump dependent ports due to shlib bump
- Import upstream patch to fix multimedia/mpv [1]
- Import upstream patch to fix multimedia/gstreamer1-vaapi [2]
Approved by: cpm [1], multimedia (timeout) [2]
Obtained from: https://github.com/mpv-player/mpv/commit/2ecf240b1cd20875991a5b18efafbe799864ff7f [1]
https://cgit.freedesktop.org/gstreamer/gstreamer-vaapi/commit/gst-libs/gst/vaapi/gstvaapiutils.c?id=777bba473e3ed1c7b8b7f7f0322892851c70dfd9 [2]
Differential Revision: https://reviews.freebsd.org/D12761
Diffstat (limited to 'multimedia/libva-utils/Makefile')
-rw-r--r-- | multimedia/libva-utils/Makefile | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/multimedia/libva-utils/Makefile b/multimedia/libva-utils/Makefile index 91bea94aa695..a9ddbd133cef 100644 --- a/multimedia/libva-utils/Makefile +++ b/multimedia/libva-utils/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= libva-utils -PORTVERSION= 1.8.3 +PORTVERSION= 2.0.0 CATEGORIES= multimedia MAINTAINER= madpilot@FreeBSD.org @@ -16,6 +16,7 @@ USES= autoreconf gmake libtool pkgconfig tar:bzip2 #USE_XORG= glproto pciaccess xext xfixes #USE_GL= gl GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip USE_GITHUB= yes GH_ACCOUNT= 01org @@ -26,19 +27,8 @@ GH_ACCOUNT= 01org OPTIONS_DEFINE= DEBUG -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MDEBUG} -CFLAGS+= -D_DEBUG -.else -CFLAGS+= -DNDEBUG -.endif - -.include <bsd.port.pre.mk> - -.if defined(STRIP) && ${STRIP} != "" -INSTALL_TARGET= install-strip -.endif +DEBUG_CFLAGS= -D_DEBUG +DEBUG_CFLAGS_OFF= -DNDEBUG #post-patch: .SILENT # ${REINPLACE_CMD} -e 's|\($$libdir\)/dri|\1/va|' \ @@ -50,4 +40,4 @@ INSTALL_TARGET= install-strip # ${WRKSRC}/doc/Makefile.am # ${REINPLACE_CMD} 's/-ldl//' ${WRKSRC}/va/Makefile.am -.include <bsd.port.post.mk> +.include <bsd.port.mk> |