summaryrefslogtreecommitdiff
path: root/multimedia
diff options
context:
space:
mode:
authorjmcneill <jmcneill@pkgsrc.org>2013-01-12 11:55:35 +0000
committerjmcneill <jmcneill@pkgsrc.org>2013-01-12 11:55:35 +0000
commit5536e6368ee192408d7d219ad5ed0611028c99d0 (patch)
tree14fb3be5675b436c1b9890e7e1c8d06aeaf0d053 /multimedia
parent748c1a6ce3f1a6621bdf187f972bba7a37980e2e (diff)
downloadpkgsrc-5536e6368ee192408d7d219ad5ed0611028c99d0.tar.gz
Fix configure script to correctly identify the host architecture on
NetBSD/evbarm.
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/gmplayer/distinfo4
-rw-r--r--multimedia/mplayer-share/distinfo4
-rw-r--r--multimedia/mplayer-share/patches/patch-aa14
3 files changed, 12 insertions, 10 deletions
diff --git a/multimedia/gmplayer/distinfo b/multimedia/gmplayer/distinfo
index 27913d8d83a..838715eb095 100644
--- a/multimedia/gmplayer/distinfo
+++ b/multimedia/gmplayer/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.79 2012/12/05 19:15:32 martin Exp $
+$NetBSD: distinfo,v 1.80 2013/01/12 11:55:35 jmcneill Exp $
SHA1 (mplayer/AlienMind-1.2.tar.bz2) = 34370da1e003e4accceae194a63483aa6eebc4dc
RMD160 (mplayer/AlienMind-1.2.tar.bz2) = f3fda7d44a59f98097162f76d0a0d58840974998
@@ -63,7 +63,7 @@ Size (mplayer/xanim-1.6.tar.bz2) = 94564 bytes
SHA1 (mplayer/xine-lcd-1.2.tar.bz2) = 2fa7811e0dc7316d0c996b0a5bc37f5c97d1dd18
RMD160 (mplayer/xine-lcd-1.2.tar.bz2) = 785f6826d49eddabd7ebc431db77139771f208f5
Size (mplayer/xine-lcd-1.2.tar.bz2) = 172270 bytes
-SHA1 (patch-aa) = 9a917441fdd2edfd7808f4c97fd5ca9ee2538392
+SHA1 (patch-aa) = da461823d0731624de964323ab630f6e295be7b7
SHA1 (patch-ae) = 286f5ac075ea4123a1a6276f97e02a4dda9b3e67
SHA1 (patch-an) = a1d16ce7a4ff5a2071a7bac1b6836dc197b849e4
SHA1 (patch-libao2_ao_sun.c) = ce7042b394b9b8c051597c734b70290c8bf0a8d5
diff --git a/multimedia/mplayer-share/distinfo b/multimedia/mplayer-share/distinfo
index c09022632e4..2a5e6b9548b 100644
--- a/multimedia/mplayer-share/distinfo
+++ b/multimedia/mplayer-share/distinfo
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.79 2012/11/29 17:27:17 drochner Exp $
+$NetBSD: distinfo,v 1.80 2013/01/12 11:55:35 jmcneill Exp $
SHA1 (mplayer/MPlayer-1.1.tar.gz) = e46e3294bc96daabe604e4e195721e4f2d1e5b48
RMD160 (mplayer/MPlayer-1.1.tar.gz) = 0369e57677c0c30f3b05f80ee1c4d8d7d1217e63
Size (mplayer/MPlayer-1.1.tar.gz) = 17018391 bytes
-SHA1 (patch-aa) = 9a917441fdd2edfd7808f4c97fd5ca9ee2538392
+SHA1 (patch-aa) = da461823d0731624de964323ab630f6e295be7b7
SHA1 (patch-ae) = 286f5ac075ea4123a1a6276f97e02a4dda9b3e67
SHA1 (patch-an) = a1d16ce7a4ff5a2071a7bac1b6836dc197b849e4
SHA1 (patch-libao2_ao_sun.c) = ce7042b394b9b8c051597c734b70290c8bf0a8d5
diff --git a/multimedia/mplayer-share/patches/patch-aa b/multimedia/mplayer-share/patches/patch-aa
index f1c59e57c8c..4d9067b9336 100644
--- a/multimedia/mplayer-share/patches/patch-aa
+++ b/multimedia/mplayer-share/patches/patch-aa
@@ -1,6 +1,6 @@
-$NetBSD: patch-aa,v 1.30 2012/11/29 17:27:17 drochner Exp $
+$NetBSD: patch-aa,v 1.31 2013/01/12 11:55:35 jmcneill Exp $
-o Handle properly sh3 ports on NetBSD.
+o Handle properly sh3 and evbarm ports on NetBSD.
o Fix CPU family detection on NetBSD with /proc mounted with "-o linux"
(please see also kern/25076).
o Fix a bug which broke the detection of a lot of X11 libraries.
@@ -8,13 +8,15 @@ o Add necessary libs for aalib support even if the aa option is turned on with
--enable-aa.
o Add support for dvb capture on NetBSD.
---- configure.orig 2012-05-22 18:01:51.000000000 +0000
-+++ configure
-@@ -1520,7 +1520,8 @@ if test -z "$_target" ; then
+--- configure.orig 2012-05-22 14:01:51.000000000 -0400
++++ configure 2013-01-11 22:15:07.000000000 -0500
+@@ -1519,8 +1519,9 @@ if test -z "$_target" ; then
+ alpha) host_arch=alpha ;;
sun4*|sparc*) host_arch=sparc ;;
parisc*|hppa*|9000*) host_arch=hppa ;;
- arm*|zaurus|cats) host_arch=arm ;;
+- arm*|zaurus|cats) host_arch=arm ;;
- sh3|sh4|sh4a) host_arch=sh ;;
++ arm*|zaurus|cats|evbarm) host_arch=arm ;;
+ sh3*) host_arch=sh ;;
+ sh4|sh4a) host_arch=sh4 ;;
s390) host_arch=s390 ;;