diff options
author | wiz <wiz> | 2003-06-24 06:47:01 +0000 |
---|---|---|
committer | wiz <wiz> | 2003-06-24 06:47:01 +0000 |
commit | 29386d6bffb1e037b615bdacc847ecc3b1777868 (patch) | |
tree | a15fdc47cfa3fffa8140b19be463d757475845d1 | |
parent | 15b0fa347d744f80ef2c8fd3afa4338749104750 (diff) | |
download | pkgsrc-29386d6bffb1e037b615bdacc847ecc3b1777868.tar.gz |
Update to 1.2.7:
This release activates key caching by default. It has a fix for collisions
between cached keys, packaging improvements for Debian, and packaging
improvements for RPM-based distributions.
-rw-r--r-- | misc/libdvdcss/Makefile | 5 | ||||
-rw-r--r-- | misc/libdvdcss/PLIST | 4 | ||||
-rw-r--r-- | misc/libdvdcss/distinfo | 7 | ||||
-rw-r--r-- | misc/libdvdcss/patches/patch-aa | 21 |
4 files changed, 7 insertions, 30 deletions
diff --git a/misc/libdvdcss/Makefile b/misc/libdvdcss/Makefile index 3f76e4d3856..60fbdfc55f9 100644 --- a/misc/libdvdcss/Makefile +++ b/misc/libdvdcss/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2003/06/23 15:52:52 wiz Exp $ +# $NetBSD: Makefile,v 1.9 2003/06/24 06:47:01 wiz Exp $ # # Unfortunately, some reading of the United States law (DMCA) means # that we are not able to provide pointers to the source or homepage @@ -7,8 +7,7 @@ # Please do not submit any PRs telling us the contents of the HOMEPAGE # or MASTER_SITES definitions in this Makefile. -DISTNAME= libdvdcss-1.2.6 -PKGREVISION= 1 +DISTNAME= libdvdcss-1.2.7 CATEGORIES= misc MASTER_SITES= ${LIBDVDCSS_MASTER_SITES} EXTRACT_SUFX= .tar.bz2 diff --git a/misc/libdvdcss/PLIST b/misc/libdvdcss/PLIST index 674a3833e52..0fd3dfc9c67 100644 --- a/misc/libdvdcss/PLIST +++ b/misc/libdvdcss/PLIST @@ -1,8 +1,8 @@ -@comment $NetBSD: PLIST,v 1.3 2003/03/14 11:40:55 wiz Exp $ +@comment $NetBSD: PLIST,v 1.4 2003/06/24 06:47:01 wiz Exp $ include/dvdcss/dvdcss.h lib/libdvdcss.a lib/libdvdcss.la lib/libdvdcss.so lib/libdvdcss.so.2 -lib/libdvdcss.so.2.6 +lib/libdvdcss.so.2.7 @dirrm include/dvdcss diff --git a/misc/libdvdcss/distinfo b/misc/libdvdcss/distinfo index eacea287933..081d4d7796a 100644 --- a/misc/libdvdcss/distinfo +++ b/misc/libdvdcss/distinfo @@ -1,5 +1,4 @@ -$NetBSD: distinfo,v 1.5 2003/03/21 23:25:01 wiz Exp $ +$NetBSD: distinfo,v 1.6 2003/06/24 06:47:01 wiz Exp $ -SHA1 (libdvdcss-1.2.6.tar.bz2) = 82f50b22b544bdbb41bd5365087b91f9a612b3fe -Size (libdvdcss-1.2.6.tar.bz2) = 209352 bytes -SHA1 (patch-aa) = 4d50a8cd7b0aeb61b2da7944657f05cebb5dccfc +SHA1 (libdvdcss-1.2.7.tar.bz2) = 9461cf99395d01b8871ea9cb40e142cb2c5809ee +Size (libdvdcss-1.2.7.tar.bz2) = 209452 bytes diff --git a/misc/libdvdcss/patches/patch-aa b/misc/libdvdcss/patches/patch-aa deleted file mode 100644 index d0879ed5f7c..00000000000 --- a/misc/libdvdcss/patches/patch-aa +++ /dev/null @@ -1,21 +0,0 @@ -$NetBSD: patch-aa,v 1.1 2003/03/21 23:25:02 wiz Exp $ - ---- src/libdvdcss.c.orig Sat Feb 1 16:24:49 2003 -+++ src/libdvdcss.c -@@ -398,7 +398,7 @@ extern dvdcss_t dvdcss_open ( char *psz_ - goto nocache; - } - -- i += sprintf( dvdcss->psz_cachefile + i, "/%s/", psz_data ); -+ i += sprintf( dvdcss->psz_cachefile + i, "/%s", psz_data ); - #if !defined( WIN32 ) || defined( SYS_CYGWIN ) - i_ret = mkdir( dvdcss->psz_cachefile, 0755 ); - #else -@@ -410,6 +410,7 @@ extern dvdcss_t dvdcss_open ( char *psz_ - dvdcss->psz_cachefile[0] = '\0'; - goto nocache; - } -+ i += sprintf( dvdcss->psz_cachefile + i, "/"); - - /* Pointer to the filename we will use. */ - dvdcss->psz_block = dvdcss->psz_cachefile + i; |