Bug 184243 - multimedia/oggvideotools: Fix build on -current
Summary: multimedia/oggvideotools: Fix build on -current
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: Philippe Audeoud
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-11-24 18:10 UTC by tkato432
Modified: 2013-11-28 15:40 UTC (History)
0 users

See Also:


Attachments
file.diff (2.18 KB, patch)
2013-11-24 18:10 UTC, tkato432
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description tkato432 2013-11-24 18:10:07 UTC
- Fix build on -current

New file:
files/patch-src__pictureBlend.cpp
Comment 1 Philippe Audeoud freebsd_committer freebsd_triage 2013-11-28 15:20:24 UTC
Responsible Changed
From-To: freebsd-ports-bugs->jadawin

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-11-28 15:29:59 UTC
Author: jadawin
Date: Thu Nov 28 15:29:50 2013
New Revision: 335100
URL: http://svnweb.freebsd.org/changeset/ports/335100

Log:
  - Fix build on CURRENT
  
  PR:		ports/184243
  Submitted by:	KATO Tsuguru <tkato432@yahoo.com>

Added:
  head/multimedia/oggvideotools/files/patch-src__pictureBlend.cpp   (contents, props changed)
Modified:
  head/multimedia/oggvideotools/Makefile
  head/multimedia/oggvideotools/pkg-plist

Modified: head/multimedia/oggvideotools/Makefile
==============================================================================
--- head/multimedia/oggvideotools/Makefile	Thu Nov 28 15:09:39 2013	(r335099)
+++ head/multimedia/oggvideotools/Makefile	Thu Nov 28 15:29:50 2013	(r335100)
@@ -12,20 +12,16 @@ COMMENT=	Toolbox for manipulating Ogg vi
 
 LICENSE=	GPLv2 # (or later)
 
-LIB_DEPENDS=	gd:${PORTSDIR}/graphics/gd \
-		ogg:${PORTSDIR}/audio/libogg \
-		theora:${PORTSDIR}/multimedia/libtheora \
-		vorbis:${PORTSDIR}/audio/libvorbis
+LIB_DEPENDS=	libgd.so:${PORTSDIR}/graphics/gd \
+		libogg.so:${PORTSDIR}/audio/libogg \
+		libtheora.so:${PORTSDIR}/multimedia/libtheora \
+		libvorbis.so:${PORTSDIR}/audio/libvorbis
 
-USE_SDL=	sdl
 USES=		cmake pkgconfig
+USE_SDL=	sdl
 USE_LDCONFIG=	yes
 
+CFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
 
-MAN1=		mkThumbs.1 oggCat.1 oggCut.1 oggDump.1 oggJoin.1 \
-		oggLength.1 oggSilence.1 oggSlideshow.1 oggSplit.1 \
-		oggThumb.1 oggTranscode.1
-
-NO_STAGE=	yes
 .include <bsd.port.mk>

Added: head/multimedia/oggvideotools/files/patch-src__pictureBlend.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/oggvideotools/files/patch-src__pictureBlend.cpp	Thu Nov 28 15:29:50 2013	(r335100)
@@ -0,0 +1,11 @@
+--- src/pictureBlend.cpp.orig
++++ src/pictureBlend.cpp
+@@ -9,6 +9,8 @@
+ // Copyright: See COPYING file that comes with this distribution
+ //
+ //
++#include <string>
++
+ #include "pictureBlend.h"
+ #include "exception.h"
+ 

Modified: head/multimedia/oggvideotools/pkg-plist
==============================================================================
--- head/multimedia/oggvideotools/pkg-plist	Thu Nov 28 15:09:39 2013	(r335099)
+++ head/multimedia/oggvideotools/pkg-plist	Thu Nov 28 15:29:50 2013	(r335100)
@@ -78,5 +78,16 @@ include/oggvt/vorbisPosInterpreter.h
 include/oggvt/vorbisStreamParameter.h
 include/oggvt/wishList.h
 lib/liboggvideotools.so
+man/man1/mkThumbs.1.gz
+man/man1/oggCat.1.gz
+man/man1/oggCut.1.gz
+man/man1/oggDump.1.gz
+man/man1/oggJoin.1.gz
+man/man1/oggLength.1.gz
+man/man1/oggSilence.1.gz
+man/man1/oggSlideshow.1.gz
+man/man1/oggSplit.1.gz
+man/man1/oggThumb.1.gz
+man/man1/oggTranscode.1.gz
 sbin/mkThumbs
 @dirrm include/oggvt
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Philippe Audeoud freebsd_committer freebsd_triage 2013-11-28 15:30:49 UTC
State Changed
From-To: open->closed

Committed. Thanks!