View | Details | Raw Unified | Return to bug 206864 | Differences between
and this patch

Collapse All | Expand All

(-)x11/xpra/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	xpra
4
PORTNAME=	xpra
5
PORTVERSION=	0.15.10
5
PORTVERSION=	0.15.10
6
PORTREVISION=	1
6
CATEGORIES=	x11
7
CATEGORIES=	x11
7
MASTER_SITES=	http://xpra.org/src/
8
MASTER_SITES=	http://xpra.org/src/
8
9
(-)multimedia/gstreamer1-plugins-x265/Makefile (-1 / +1 lines)
Lines 1-6 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTREVISION=	0
3
PORTREVISION=	1
4
CATEGORIES=	multimedia
4
CATEGORIES=	multimedia
5
5
6
COMMENT=	GStreamer libx265 based H265 plugin
6
COMMENT=	GStreamer libx265 based H265 plugin
(-)multimedia/x265/Makefile (-7 / +7 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	x265
4
PORTNAME=	x265
5
PORTVERSION=	1.8
5
PORTVERSION=	1.9
6
CATEGORIES=	multimedia
6
CATEGORIES=	multimedia
7
MASTER_SITES=	http://bitbucket.org/multicoreware/${PORTNAME}/get/
7
MASTER_SITES=	http://bitbucket.org/multicoreware/${PORTNAME}/get/
8
DISTNAME=	${PORTVERSION}
8
DISTNAME=	${PORTVERSION}
Lines 16-29 Link Here
16
16
17
BUILD_DEPENDS=	yasm:${PORTSDIR}/devel/yasm
17
BUILD_DEPENDS=	yasm:${PORTSDIR}/devel/yasm
18
18
19
USES=		cmake tar:bz2
19
USES=		cmake pathfix tar:bz2
20
USE_LDCONFIG=	yes
20
USE_LDCONFIG=	yes
21
CMAKE_ARGS=	-DENABLE_TESTS=on -DPLATFORM_LIBS=md
22
EXTRACT_AFTER_ARGS+=	--exclude "md5*"
21
23
22
WRKSRC=		${WRKDIR}/multicoreware-${PORTNAME}-e27327f5da35/source
24
WRKSRC=		${WRKDIR}/multicoreware-${PORTNAME}-1d3b6e448e01/source
23
25
24
post-patch:
26
do-test:
25
	@${REINPLACE_CMD} -e \
27
	${WRKSRC}/test/TestBench
26
		's|$${LIB_INSTALL_DIR}/pkgconfig|libdata/pkgconfig|' \
27
		${WRKSRC}/CMakeLists.txt
28
28
29
.include <bsd.port.mk>
29
.include <bsd.port.mk>
(-)multimedia/x265/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (x265/1.8.tar.bz2) = 3d36472d9b41cdf04ae92eede1f1da2198432d0ebc2c29ec2da36d8bddaafb7e
1
SHA256 (x265/1.9.tar.bz2) = e1e4de6ead44e21c15378675e09c39ef192f2b7c844dd369d2ba1e979aca1ebb
2
SIZE (x265/1.8.tar.bz2) = 739692
2
SIZE (x265/1.9.tar.bz2) = 774118
(-)multimedia/x265/files/patch-md5 (+33 lines)
Line 0 Link Here
1
Use FreeBSD's MD5-implementation instead of yet another bundled one.
2
3
	-mi
4
5
--- common/CMakeLists.txt	2016-01-25 00:16:50.000000000 -0500
6
+++ common/CMakeLists.txt	2016-02-02 17:57:52.620700000 -0500
7
@@ -109,5 +109,4 @@
8
     threadpool.cpp threadpool.h
9
     wavefront.h wavefront.cpp
10
-    md5.cpp md5.h
11
     bitstream.h bitstream.cpp
12
     yuv.cpp yuv.h
13
--- common/picyuv.h	2016-01-25 00:16:50.000000000 -0500
14
+++ common/picyuv.h	2016-02-02 21:52:24.690114000 -0500
15
@@ -25,6 +25,8 @@
16
 #define X265_PICYUV_H
17
 
18
+#include <sys/types.h>
19
+#include <md5.h>
20
+
21
 #include "common.h"
22
-#include "md5.h"
23
 #include "x265.h"
24
 
25
--- encoder/frameencoder.cpp	2016-01-25 00:16:50.000000000 -0500
26
+++ encoder/frameencoder.cpp	2016-02-02 18:06:58.918647000 -0500
27
@@ -667,5 +667,5 @@
28
             m_seiReconPictureDigest.m_method = SEIDecodedPictureHash::MD5;
29
             for (int i = 0; i < planes; i++)
30
-                MD5Final(&m_state[i], m_seiReconPictureDigest.m_digest[i]);
31
+                MD5Final(m_seiReconPictureDigest.m_digest[i], &m_state[i]);
32
         }
33
         else if (m_param->decodedPictureHashSEI == 2)
(-)multimedia/x265/pkg-plist (-1 / +1 lines)
Lines 3-7 Link Here
3
include/x265_config.h
3
include/x265_config.h
4
lib/libx265.a
4
lib/libx265.a
5
lib/libx265.so
5
lib/libx265.so
6
lib/libx265.so.68
6
lib/libx265.so.79
7
libdata/pkgconfig/x265.pc
7
libdata/pkgconfig/x265.pc

Return to bug 206864