Bug 156176 - [patch] multimedia/libva: update to 1.0.12
Summary: [patch] multimedia/libva: update to 1.0.12
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Bernhard Froehlich
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-04-04 15:50 UTC by Pan Tsu
Modified: 2011-06-17 14:50 UTC (History)
0 users

See Also:


Attachments
a.diff (1.08 KB, patch)
2011-04-04 15:50 UTC, Pan Tsu
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Pan Tsu 2011-04-04 15:50:08 UTC
For vdpau users only below commit is likely of importance

  http://cgit.freedesktop.org/libva/commit/?id=b305666
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2011-04-04 15:50:16 UTC
Maintainer of multimedia/libva,

Please note that PR ports/156176 has just been submitted.

If it contains a patch for an upgrade, an enhancement or a bug fix
you agree on, reply to this email stating that you approve the patch
and a committer will take care of it.

The full text of the PR can be found at:
    http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/156176

-- 
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2011-04-04 15:50:18 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 3 Bernhard Froehlich freebsd_committer freebsd_triage 2011-05-24 08:58:27 UTC
Are there any objections against this patch? It does not look like it
depends on anything else (mplayer, vdpau-video) so it should be safe to
commit it.

-- 
Bernhard Froehlich
http://www.bluelife.at/
Comment 4 Pan Tsu 2011-06-12 04:07:55 UTC
- bump version to 1.0.13
- prune CPPFLAGS from CONFIGURE_ENV after ports/153625
- replace double -pthread substitution with make variable passed from MAKE_ENV
- remove gcc45 hack: don't pass -Wl,-lc explicitly for -module (gcc46 safe)

It should still work with current multimedia/vdpau-video port.

--- a.diff begins here ---
Index: multimedia/libva/Makefile
===================================================================
RCS file: /a/.cvsup/ports/multimedia/libva/Makefile,v
retrieving revision 1.4
diff -u -p -r1.4 Makefile
--- multimedia/libva/Makefile	11 Mar 2011 12:51:56 -0000	1.4
+++ multimedia/libva/Makefile	12 Jun 2011 02:53:59 -0000
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	libva
-PORTVERSION=	1.0.10
+PORTVERSION=	1.0.13
 CATEGORIES=	multimedia
 MASTER_SITES=	http://cgit.freedesktop.org/${PORTNAME}/snapshot/
 
@@ -25,8 +25,9 @@ USE_GL=		gl
 USE_AUTOTOOLS=	aclocal autoheader automake autoconf libtoolize
 ACLOCAL_ARGS=	-I.
 AUTOMAKE_ARGS=	--add-missing
-CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
+CONFIGURE_ENV=	LDFLAGS="${LDFLAGS}"
 CONFIGURE_ARGS=	--program-prefix=va
+MAKE_ENV=	PTHREAD_LIBS="${PTHREAD_LIBS}"
 USE_LDCONFIG=	yes
 
 CPPFLAGS+=	-isystem${LOCALBASE}/include
@@ -58,11 +59,5 @@ post-patch:	.SILENT
 	${REINPLACE_CMD} 's/va\(info\)/\1/' \
 		${WRKSRC}/test/vainfo/Makefile.am
 	${REINPLACE_CMD} 's/-ldl//' ${WRKSRC}/va/Makefile.am
-	${REINPLACE_CMD} 's/LDFLAGS.*/& -Wl,-lc/' \
-		${WRKSRC}/dummy_drv_video/Makefile.am \
-		${WRKSRC}/i965_drv_video/Makefile.am
-	${REINPLACE_CMD} 's/-pthread/${PTHREAD_LIBS}/' \
-		${WRKSRC}/i965_drv_video/Makefile.am \
-		${WRKSRC}/test/putsurface/Makefile.am
 
 .include <bsd.port.post.mk>
Index: multimedia/libva/distinfo
===================================================================
RCS file: /a/.cvsup/ports/multimedia/libva/distinfo,v
retrieving revision 1.2
diff -u -p -r1.2 distinfo
--- multimedia/libva/distinfo	9 Mar 2011 16:49:36 -0000	1.2
+++ multimedia/libva/distinfo	12 Jun 2011 02:11:40 -0000
@@ -1,2 +1,2 @@
-SHA256 (libva-1.0.10.tar.bz2) = 05f757f0043dce9f753d354d15e0cb772b1240cc9d29d26bbb5526285a203693
-SIZE (libva-1.0.10.tar.bz2) = 459017
+SHA256 (libva-1.0.13.tar.bz2) = 4e192c1704e9b571dfcb1073d4ead6a2ccab81cc62e2a3759cad4338609d835b
+SIZE (libva-1.0.13.tar.bz2) = 486709
Index: multimedia/libva/pkg-plist
===================================================================
RCS file: /a/.cvsup/ports/multimedia/libva/pkg-plist,v
retrieving revision 1.2
diff -u -p -r1.2 pkg-plist
--- multimedia/libva/pkg-plist	9 Mar 2011 16:49:36 -0000	1.2
+++ multimedia/libva/pkg-plist	12 Jun 2011 02:13:21 -0000
@@ -1,3 +1,4 @@
+bin/vaavcenc
 bin/vah264encode
 bin/vainfo
 bin/vampeg2vldemo
Index: multimedia/libva/files/patch-i965_drv_video-Makefile.am
===================================================================
RCS file: /a/.cvsup/ports/multimedia/libva/files/patch-i965_drv_video-Makefile.am,v
retrieving revision 1.1
diff -u -p -r1.1 patch-i965_drv_video-Makefile.am
--- multimedia/libva/files/patch-i965_drv_video-Makefile.am	13 Jan 2011 11:02:02 -0000	1.1
+++ multimedia/libva/files/patch-i965_drv_video-Makefile.am	12 Jun 2011 02:45:02 -0000
@@ -6,7 +6,7 @@
  i965_drv_video_ladir = @LIBVA_DRIVERS_PATH@
 -i965_drv_video_la_LDFLAGS = -module -avoid-version -no-undefined -Wl,--no-undefined @DRM_LIBS@ -ldrm_intel
 -i965_drv_video_la_LIBADD = ../va/libva-x11.la -lpthread
-+i965_drv_video_la_LDFLAGS = -module -avoid-version -no-undefined -Wl,--no-undefined @DRM_LIBS@ -ldrm_intel -pthread
++i965_drv_video_la_LDFLAGS = -module -avoid-version -no-undefined -Wl,--no-undefined @DRM_LIBS@ -ldrm_intel $(PTHREAD_LIBS)
 +i965_drv_video_la_LIBADD = ../va/libva-x11.la
  
  i965_drv_video_la_SOURCES =	\
Index: multimedia/libva/files/patch-test-encode-h264encode.c
===================================================================
RCS file: multimedia/libva/files/patch-test-encode-h264encode.c
diff -N multimedia/libva/files/patch-test-encode-h264encode.c
--- multimedia/libva/files/patch-test-encode-h264encode.c	9 Mar 2011 16:49:36 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,20 +0,0 @@
---- test/encode/h264encode.c~
-+++ test/encode/h264encode.c
-@@ -144,7 +144,7 @@ static int save_coded_buf(VABufferID cod
-         printf("(SKipped)");
-     printf("                                    ");
- 
--    return;
-+    return 0;
- }
- 
- 
-@@ -188,7 +188,7 @@ static int display_surface(int frame_id,
-         }	
-     }	
- 
--    return;
-+    return 0;
- }
- 
- enum {
Index: multimedia/libva/files/patch-test-encode-h264encode_x11.c
===================================================================
RCS file: multimedia/libva/files/patch-test-encode-h264encode_x11.c
diff -N multimedia/libva/files/patch-test-encode-h264encode_x11.c
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ multimedia/libva/files/patch-test-encode-h264encode_x11.c	12 Jun 2011 02:33:06 -0000
@@ -0,0 +1,11 @@
+--- test/encode/h264encode_x11.c~
++++ test/encode/h264encode_x11.c
+@@ -93,7 +93,7 @@ static int display_surface(int frame_id,
+         }	
+     }	
+ 
+-    return;
++    return 0;
+ }
+ 
+ #include "h264encode_common.c"
Index: multimedia/libva/files/patch-test-putsurface-Makefile.am
===================================================================
RCS file: /a/.cvsup/ports/multimedia/libva/files/patch-test-putsurface-Makefile.am,v
retrieving revision 1.2
diff -u -p -r1.2 patch-test-putsurface-Makefile.am
--- multimedia/libva/files/patch-test-putsurface-Makefile.am	15 Jan 2011 22:30:26 -0000	1.2
+++ multimedia/libva/files/patch-test-putsurface-Makefile.am	12 Jun 2011 02:43:34 -0000
@@ -4,7 +4,7 @@
  bin_PROGRAMS = putsurface
  
  AM_CFLAGS = -I$(top_srcdir)/va -I$(top_srcdir)/src/x11
-+AM_LDFLAGS = -pthread
++AM_LDFLAGS = $(PTHREAD_LIBS)
  
 -TEST_LIBS = $(top_builddir)/va/$(libvabackendlib) -lpthread
 +TEST_LIBS = $(top_builddir)/va/$(libvabackendlib)
--- a.diff ends here ---
Comment 5 Bernhard Froehlich freebsd_committer freebsd_triage 2011-06-17 13:45:18 UTC
Responsible Changed
From-To: freebsd-ports-bugs->decke

I'll take it.
Comment 6 dfilter service freebsd_committer freebsd_triage 2011-06-17 14:48:18 UTC
decke       2011-06-17 13:48:08 UTC

  FreeBSD ports repository

  Modified files:
    multimedia/libva     Makefile distinfo pkg-plist 
    multimedia/libva/files patch-i965_drv_video-Makefile.am 
                           patch-test-putsurface-Makefile.am 
  Added files:
    multimedia/libva/files patch-test-encode-h264encode_x11.c 
  Removed files:
    multimedia/libva/files patch-test-encode-h264encode.c 
  Log:
  - Update to 1.0.13
  - Prune CPPFLAGS from CONFIGURE_ENV after ports/153625
  - Replace double -pthread substitution with make variable passed from MAKE_ENV
  - Remove gcc45 hack: don't pass -Wl,-lc explicitly for -module (gcc46 safe)
  
  PR:             ports/156176
  Submitted by:   Pan Tsu <inyaoo@gmail.com>
  Approved by:    maintainer timeout (>2 months)
  
  Revision  Changes    Path
  1.5       +4 -9      ports/multimedia/libva/Makefile
  1.3       +2 -2      ports/multimedia/libva/distinfo
  1.2       +1 -1      ports/multimedia/libva/files/patch-i965_drv_video-Makefile.am
  1.2       +0 -20     ports/multimedia/libva/files/patch-test-encode-h264encode.c (dead)
  1.1       +11 -0     ports/multimedia/libva/files/patch-test-encode-h264encode_x11.c (new)
  1.3       +1 -1      ports/multimedia/libva/files/patch-test-putsurface-Makefile.am
  1.3       +1 -0      ports/multimedia/libva/pkg-plist
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 7 Bernhard Froehlich freebsd_committer freebsd_triage 2011-06-17 14:49:00 UTC
State Changed
From-To: feedback->closed

Committed. Thanks!