summaryrefslogtreecommitdiff
path: root/x11/xvidcap/patches
diff options
context:
space:
mode:
authorxtraeme <xtraeme>2004-05-29 00:16:41 +0000
committerxtraeme <xtraeme>2004-05-29 00:16:41 +0000
commitd1b141ae11ff1830bb9960e2e983fcc42425704d (patch)
treedf50624414180721b68fffd4129725732d30d48f /x11/xvidcap/patches
parent50bbd2c82472c46fba5c9c775b4886c2ef52e9dd (diff)
downloadpkgsrc-d1b141ae11ff1830bb9960e2e983fcc42425704d.tar.gz
Initial import of xvidcap-1.1.3 from pkgsrc-wip, packaged by Jeremy
C. Reed. xvidcap is a tool (like Lotus ScreenCam and Camtasia) that captures movement on a selected area of an X11 screen to files. Frame output formats include: XWD, PPM, PNG, MNG, JPEG and MPEG.
Diffstat (limited to 'x11/xvidcap/patches')
-rw-r--r--x11/xvidcap/patches/patch-aa12
-rw-r--r--x11/xvidcap/patches/patch-ab13
-rw-r--r--x11/xvidcap/patches/patch-ac18
-rw-r--r--x11/xvidcap/patches/patch-ad13
4 files changed, 56 insertions, 0 deletions
diff --git a/x11/xvidcap/patches/patch-aa b/x11/xvidcap/patches/patch-aa
new file mode 100644
index 00000000000..342e69198bd
--- /dev/null
+++ b/x11/xvidcap/patches/patch-aa
@@ -0,0 +1,12 @@
+$NetBSD: patch-aa,v 1.1.1.1 2004/05/29 00:16:41 xtraeme Exp $
+
+--- src/xt_control.c.orig Sat Feb 14 12:48:14 2004
++++ src/xt_control.c
+@@ -29,6 +29,7 @@
+ #include <stdlib.h>
+ #include <limits.h> /* PATH_MAX */
+ #include <ctype.h> /* isdigit() */
++#include <sys/time.h>
+ #include <X11/Intrinsic.h>
+ #include <X11/StringDefs.h>
+ #include <X11/Shell.h>
diff --git a/x11/xvidcap/patches/patch-ab b/x11/xvidcap/patches/patch-ab
new file mode 100644
index 00000000000..5d2fb14df69
--- /dev/null
+++ b/x11/xvidcap/patches/patch-ab
@@ -0,0 +1,13 @@
+$NetBSD: patch-ab,v 1.1.1.1 2004/05/29 00:16:41 xtraeme Exp $
+
+--- src/capture.c.orig 2004-05-29 01:52:02.000000000 +0200
++++ src/capture.c 2004-05-29 01:56:27.000000000 +0200
+@@ -643,7 +643,7 @@
+ (*job->close) (fp);
+ else if (job->flags & FLG_SYNC) {
+ if (job->open == (void *(*)(char *, char*))fopen)
+- fdatasync(fileno(fp));
++ fdatasync(fileno((FILE *)fp));
+ }
+
+ /* substract the time we needed for creating and saving
diff --git a/x11/xvidcap/patches/patch-ac b/x11/xvidcap/patches/patch-ac
new file mode 100644
index 00000000000..bed795427cd
--- /dev/null
+++ b/x11/xvidcap/patches/patch-ac
@@ -0,0 +1,18 @@
+$NetBSD: patch-ac,v 1.1.1.1 2004/05/29 00:16:41 xtraeme Exp $
+
+--- ffmpeg/Makefile.orig 2004-02-06 23:42:45.000000000 -0800
++++ ffmpeg/Makefile
+@@ -136,10 +136,10 @@ installlib:
+ dep: depend
+
+ depend: .depend
+- make -C libavcodec depend
+- make -C libavformat depend
++ $(MAKE) -C libavcodec depend
++ $(MAKE) -C libavformat depend
+ ifeq ($(BUILD_VHOOK),yes)
+- make -C vhook depend
++ $(MAKE) -C vhook depend
+ endif
+
+ .depend: $(SRCS)
diff --git a/x11/xvidcap/patches/patch-ad b/x11/xvidcap/patches/patch-ad
new file mode 100644
index 00000000000..f36455b4ce5
--- /dev/null
+++ b/x11/xvidcap/patches/patch-ad
@@ -0,0 +1,13 @@
+$NetBSD: patch-ad,v 1.1.1.1 2004/05/29 00:16:41 xtraeme Exp $
+
+--- ffmpeg/configure.orig 2004-02-06 23:42:46.000000000 -0800
++++ ffmpeg/configure
+@@ -25,7 +25,7 @@ cross_prefix=""
+ cc="gcc"
+ ar="ar"
+ ranlib="ranlib"
+-make="make"
++make=${MAKE}
+ strip="strip"
+ cpu=`uname -m`
+ tune="generic"