diff options
author | wiz <wiz@pkgsrc.org> | 2002-05-07 22:19:28 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2002-05-07 22:19:28 +0000 |
commit | 7a34943d2af5548b99fbfa7c61cdf5fcc356c1c0 (patch) | |
tree | 27f74b6c58da14b93f45e1d5cdffd53d01cd0df4 /graphics/mplayer | |
parent | dfb7b4862b64190d9e8748ac3e9331431b88c703 (diff) | |
download | pkgsrc-7a34943d2af5548b99fbfa7c61cdf5fcc356c1c0.tar.gz |
Fix if statement.
Diffstat (limited to 'graphics/mplayer')
-rw-r--r-- | graphics/mplayer/distinfo | 4 | ||||
-rw-r--r-- | graphics/mplayer/patches/patch-aa | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/graphics/mplayer/distinfo b/graphics/mplayer/distinfo index 8a1dba413c1..f2e7e9e3648 100644 --- a/graphics/mplayer/distinfo +++ b/graphics/mplayer/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.8 2002/05/07 20:26:12 wiz Exp $ +$NetBSD: distinfo,v 1.9 2002/05/07 22:19:29 wiz Exp $ SHA1 (MPlayer-0.90pre3.tar.bz2) = 0ed1d70787488ce55699826752d492aed3425795 Size (MPlayer-0.90pre3.tar.bz2) = 2322749 bytes -SHA1 (patch-aa) = 514deb9f9e8264ba964a7d5425fa5f3d97b62829 +SHA1 (patch-aa) = d039ed590a0b7b92cf4a66b14810ea75a4fd02ad SHA1 (patch-ab) = a90f1dda80a3208695e5435b63fa4f2b11689a63 diff --git a/graphics/mplayer/patches/patch-aa b/graphics/mplayer/patches/patch-aa index f557e3f7e6d..5f7eef0e70a 100644 --- a/graphics/mplayer/patches/patch-aa +++ b/graphics/mplayer/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.4 2002/04/30 15:10:01 veego Exp $ +$NetBSD: patch-aa,v 1.5 2002/05/07 22:19:29 wiz Exp $ --- configure.orig Sun Apr 28 23:05:09 2002 +++ configure Mon Apr 29 09:40:55 2002 @@ -18,7 +18,7 @@ $NetBSD: patch-aa,v 1.4 2002/04/30 15:10:01 veego Exp $ if test "$_dvdkit" = auto ; then _dvdkit=no - if linux || freebsd ; then -+ if linux || freebsd | netbsd ; then ++ if linux || freebsd || netbsd ; then test -f "./libmpdvdkit/Makefile" && _dvdkit=yes fi fi |