diff options
author | Max Brazhnikov <makc@FreeBSD.org> | 2015-11-19 18:38:21 +0800 |
---|---|---|
committer | Max Brazhnikov <makc@FreeBSD.org> | 2015-11-19 18:38:21 +0800 |
commit | c954c8d482b9bf23c164d73cfe322373f1c52cf9 (patch) | |
tree | 0384c85013e279752f329d79a4b56dde3cd1206d /multimedia | |
parent | b35dbeb52abb3ce8666d47ee9a65525ffb1c8919 (diff) | |
download | freebsd-ports-gnome-c954c8d482b9bf23c164d73cfe322373f1c52cf9.tar.gz freebsd-ports-gnome-c954c8d482b9bf23c164d73cfe322373f1c52cf9.tar.zst freebsd-ports-gnome-c954c8d482b9bf23c164d73cfe322373f1c52cf9.zip |
multimedia/mkvtoolnix:
- Fix gettext detection. Building the port with NLS and without QT5 option
reveals the problem.
Reported by: olgeni
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/mkvtoolnix/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/multimedia/mkvtoolnix/Makefile b/multimedia/mkvtoolnix/Makefile index b6214590437b..4e7f876731c2 100644 --- a/multimedia/mkvtoolnix/Makefile +++ b/multimedia/mkvtoolnix/Makefile @@ -59,8 +59,8 @@ MAKE_ENV+= V=1 .include <bsd.port.options.mk> -.if ${OSVERSION} < 1000000 post-patch: +.if ${OSVERSION} < 1000000 @${REINPLACE_CMD} -e 's|std::llround|llround|g' \ ${WRKSRC}/src/common/hevc.cpp \ ${WRKSRC}/src/common/mpeg4_p10.cpp \ @@ -82,6 +82,8 @@ post-patch: ${WRKSRC}/src/output/p_tta.cpp \ ${WRKSRC}/src/output/p_wavpack.cpp .endif + ${REINPLACE_CMD} -e '/LIBS="-lintl/s,-liconv,$$ICONV_LIBS,' \ + ${WRKSRC}/configure post-configure-NLS-off: # https://github.com/mbunkus/mkvtoolnix/issues/1501 |