diff options
author | jmcneill <jmcneill@pkgsrc.org> | 2013-01-12 11:55:35 +0000 |
---|---|---|
committer | jmcneill <jmcneill@pkgsrc.org> | 2013-01-12 11:55:35 +0000 |
commit | 78ff24c947523e345065e830dd5972bdc81114d8 (patch) | |
tree | 14fb3be5675b436c1b9890e7e1c8d06aeaf0d053 /multimedia/mplayer-share | |
parent | caf606f310e9c845586c2d88d756834c9efc8d02 (diff) | |
download | pkgsrc-78ff24c947523e345065e830dd5972bdc81114d8.tar.gz |
Fix configure script to correctly identify the host architecture on
NetBSD/evbarm.
Diffstat (limited to 'multimedia/mplayer-share')
-rw-r--r-- | multimedia/mplayer-share/distinfo | 4 | ||||
-rw-r--r-- | multimedia/mplayer-share/patches/patch-aa | 14 |
2 files changed, 10 insertions, 8 deletions
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 ;; |