summaryrefslogtreecommitdiff
path: root/multimedia/libdvdread
diff options
context:
space:
mode:
authorwiz <wiz>2006-04-15 21:23:10 +0000
committerwiz <wiz>2006-04-15 21:23:10 +0000
commit22cf7446502d05db4e59c314848c6855afa165af (patch)
tree39e80ef46870bb29dea1aea78cfd85b6ea19b599 /multimedia/libdvdread
parentd40e688a7e990154834ccb38fd58a1c0d1e4036b (diff)
downloadpkgsrc-22cf7446502d05db4e59c314848c6855afa165af.tar.gz
Remove workaround for ifo_types.h header to automatically include
stdint.h or inttypes.h. 1. it is broken 2. the applications should be fixed instead, as the library authors intended when they changed the behaviour. Bump PKGREVISION.
Diffstat (limited to 'multimedia/libdvdread')
-rw-r--r--multimedia/libdvdread/Makefile4
-rw-r--r--multimedia/libdvdread/distinfo3
-rw-r--r--multimedia/libdvdread/patches/patch-aa17
3 files changed, 3 insertions, 21 deletions
diff --git a/multimedia/libdvdread/Makefile b/multimedia/libdvdread/Makefile
index a840dc63f1a..7e975cca2db 100644
--- a/multimedia/libdvdread/Makefile
+++ b/multimedia/libdvdread/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.13 2006/04/12 17:49:07 joerg Exp $
+# $NetBSD: Makefile,v 1.14 2006/04/15 21:23:10 wiz Exp $
DISTNAME= libdvdread-0.9.5
-PKGREVISION= 3
+PKGREVISION= 4
CATEGORIES= multimedia
MASTER_SITES= http://www.dtek.chalmers.se/groups/dvd/dist/
diff --git a/multimedia/libdvdread/distinfo b/multimedia/libdvdread/distinfo
index 606707b6da2..cb1b1890f47 100644
--- a/multimedia/libdvdread/distinfo
+++ b/multimedia/libdvdread/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.11 2006/04/12 17:19:36 joerg Exp $
+$NetBSD: distinfo,v 1.12 2006/04/15 21:23:10 wiz Exp $
SHA1 (libdvdread-0.9.5.tar.gz) = 7f10287953edb6f00667e12fee3a8b101be9f1cd
RMD160 (libdvdread-0.9.5.tar.gz) = a558dad42487fb39771c89862075bc29c2d054ca
Size (libdvdread-0.9.5.tar.gz) = 381006 bytes
-SHA1 (patch-aa) = 44a947081081cfd5634a57d57b5b871ca17daf9d
SHA1 (patch-ab) = 62943ac3f5f017f7715ac6b8907a466b10a24ab8
diff --git a/multimedia/libdvdread/patches/patch-aa b/multimedia/libdvdread/patches/patch-aa
deleted file mode 100644
index 041f8723e34..00000000000
--- a/multimedia/libdvdread/patches/patch-aa
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-aa,v 1.6 2006/02/17 15:39:21 rillig Exp $
-
---- dvdread/ifo_types.h.orig Sun Sep 18 20:02:08 2005
-+++ dvdread/ifo_types.h Fri Feb 17 16:30:23 2006
-@@ -28,6 +28,12 @@
- #error "Must include <inttypes.h> or <stdint.h> before any libdvdread header."
- #endif
- #else
-+#ifdef HAVE_INTTYPES_H
-+#include <inttypes.h>
-+#endif
-+#ifdef HAVE_STDINT_H
-+#include <stdint.h>
-+#endif
- #if !defined(UINT8_MAX) || !defined(UINT16_MAX) || !defined(INT32_MAX)
- #error "Must include <inttypes.h> or <stdint.h> before any libdvdread header."
- #endif