diff options
author | Joe Peterson <lavajoe@gentoo.org> | 2007-08-04 17:04:55 +0000 |
---|---|---|
committer | Joe Peterson <lavajoe@gentoo.org> | 2007-08-04 17:04:55 +0000 |
commit | 44ae7b8e0e44757e76ff94762c3b4dc7697d1ddf (patch) | |
tree | ce81ab2173e72d9f1f97aab2e993543b0031ed3d /media-gfx/xv/files | |
parent | Version bump. (diff) | |
download | gentoo-2-44ae7b8e0e44757e76ff94762c3b4dc7697d1ddf.tar.gz gentoo-2-44ae7b8e0e44757e76ff94762c3b4dc7697d1ddf.tar.bz2 gentoo-2-44ae7b8e0e44757e76ff94762c3b4dc7697d1ddf.zip |
New patch set (20070520), which includes fix for bug #135304
(Portage version: 2.1.3.2)
Diffstat (limited to 'media-gfx/xv/files')
-rw-r--r-- | media-gfx/xv/files/digest-xv-3.10a-r13 | 6 | ||||
-rw-r--r-- | media-gfx/xv/files/xv-3.10a-disable-jp2k-20070520.patch | 23 | ||||
-rw-r--r-- | media-gfx/xv/files/xv-3.10a-osx-bsd-20070520.patch | 38 | ||||
-rw-r--r-- | media-gfx/xv/files/xv-3.10a-vdcomp-osx-20070520.patch | 11 |
4 files changed, 78 insertions, 0 deletions
diff --git a/media-gfx/xv/files/digest-xv-3.10a-r13 b/media-gfx/xv/files/digest-xv-3.10a-r13 new file mode 100644 index 000000000000..2694f385921d --- /dev/null +++ b/media-gfx/xv/files/digest-xv-3.10a-r13 @@ -0,0 +1,6 @@ +MD5 9fb2d0ec320498105cafeba38a588472 xv-3.10a-jumbo-patches-20070520.tar.gz 1363802 +RMD160 23bc07030416ebaca5ce4d223921e33094c37b93 xv-3.10a-jumbo-patches-20070520.tar.gz 1363802 +SHA256 221ec89fdf0772bd09c845cbb337aecf411a1aee215140b676717f49e9e65c80 xv-3.10a-jumbo-patches-20070520.tar.gz 1363802 +MD5 2d4fbeec1561304362781cc8e2f7f72d xv-3.10a.tar.gz 2259124 +RMD160 7d545e0c0e5b0120a7d026ea549cba19a53fbc0d xv-3.10a.tar.gz 2259124 +SHA256 03eb26b1e8f315c3093f4ae794862ba46637d16c055e8efbe5e3beb5d40fc451 xv-3.10a.tar.gz 2259124 diff --git a/media-gfx/xv/files/xv-3.10a-disable-jp2k-20070520.patch b/media-gfx/xv/files/xv-3.10a-disable-jp2k-20070520.patch new file mode 100644 index 000000000000..41d30235e5be --- /dev/null +++ b/media-gfx/xv/files/xv-3.10a-disable-jp2k-20070520.patch @@ -0,0 +1,23 @@ +--- Makefile~ 2007-06-24 15:41:58 -0600 ++++ Makefile 2007-06-24 15:42:43 -0600 +@@ -176,16 +176,16 @@ + ### if, for whatever reason, you're unable to get the JasPer JPEG-2000 library + ### to compile on your machine, *COMMENT OUT* the following lines + ### +-JP2K = -DDOJP2K ++#JP2K = -DDOJP2K + ### + #JP2KDIR = ../../jasper +-JP2KDIR = /usr/local/lib ++#JP2KDIR = /usr/local/lib + ### + #JP2KINC = -I$(JP2KDIR) +-JP2KINC = -I/usr/local/include ++#JP2KINC = -I/usr/local/include + ### + #JP2KLIB = -L$(JP2KDIR) -ljasper +-JP2KLIB = $(JP2KDIR)/libjasper.a ++#JP2KLIB = $(JP2KDIR)/libjasper.a + + + ### diff --git a/media-gfx/xv/files/xv-3.10a-osx-bsd-20070520.patch b/media-gfx/xv/files/xv-3.10a-osx-bsd-20070520.patch new file mode 100644 index 000000000000..59a768ebceb1 --- /dev/null +++ b/media-gfx/xv/files/xv-3.10a-osx-bsd-20070520.patch @@ -0,0 +1,38 @@ +--- xv.h~ 2007-06-24 14:30:42 -0600 ++++ xv.h 2007-06-24 14:42:04 -0600 +@@ -158,7 +158,7 @@ + + #ifndef VMS + # include <errno.h> +-# ifndef __NetBSD__ ++# if !defined(__NetBSD__) && !defined(__FreeBSD__) && !defined(__APPLE__) + # if !(defined __GLIBC__ && __GLIBC__ >= 2) + extern int errno; /* SHOULD be in errno.h, but often isn't */ + extern char *sys_errlist[]; /* this too... */ +@@ -171,7 +171,7 @@ + #ifdef VMS + # define ERRSTR(x) strerror(x, vaxc$errno) + #else +-# if defined(__BEOS__) || defined(__linux__) /* or all modern/glibc systems? */ ++# if defined(__BEOS__) || defined(__linux__) || defined(__APPLE__) /* or all modern/glibc systems? */ + # define ERRSTR(x) strerror(x) + # else + # define ERRSTR(x) sys_errlist[x] +@@ -206,6 +206,8 @@ + #ifdef NEED_MALLOC_H + # if defined(hp300) || defined(hp800) || defined(NeXT) + # include <sys/malloc.h> /* it's in "sys" on HPs and NeXT */ ++# elif defined(__APPLE__) ++# include <malloc/malloc.h> + # else + # include <malloc.h> + # endif +@@ -369,7 +371,7 @@ + * them later. */ + #ifndef VMS /* VMS hates multi-line definitions */ + # if defined(__linux__) || defined(__OpenBSD__) || defined(__NetBSD__) || \ +- defined(__bsdi__) ++ defined(__FreeBSD__) || defined(__bsdi__) || defined(__APPLE__) + # ifndef USE_MKSTEMP + # define USE_MKSTEMP /* use 'mkstemp()' instead of 'mktemp()' */ + # endif /* >> SECURITY ISSUE << */ diff --git a/media-gfx/xv/files/xv-3.10a-vdcomp-osx-20070520.patch b/media-gfx/xv/files/xv-3.10a-vdcomp-osx-20070520.patch new file mode 100644 index 000000000000..06e9f8a8d978 --- /dev/null +++ b/media-gfx/xv/files/xv-3.10a-vdcomp-osx-20070520.patch @@ -0,0 +1,11 @@ +--- vdcomp.c~ 2007-06-24 14:30:42 -0600 ++++ vdcomp.c 2007-06-24 14:48:12 -0600 +@@ -123,6 +123,8 @@ + + # if defined(hp300) || defined(hp800) || defined(NeXT) + # include <sys/malloc.h> /* it's in "sys" on HPs and NeXT */ ++# elif defined(__APPLE__) ++# include <malloc/malloc.h> + # else + # include <malloc.h> /* FIXME: should explicitly list systems that NEED this, not everyone that doesn't */ + # endif |