summaryrefslogtreecommitdiff
path: root/sysutils/dmidecode
diff options
context:
space:
mode:
authorhans <hans@pkgsrc.org>2012-02-20 17:27:33 +0000
committerhans <hans@pkgsrc.org>2012-02-20 17:27:33 +0000
commit4efb7384821d36f08fe99204e70b9b51c5677d2c (patch)
tree9adf67f48c8755604c0e32bcb7c048ea7066e308 /sysutils/dmidecode
parent291331320a518b81e9b6a6aace3b0533ab88f863 (diff)
downloadpkgsrc-4efb7384821d36f08fe99204e70b9b51c5677d2c.tar.gz
Fix build on SunOS.
The makefile uses uname -m to decide which programs to build on i386 vs. x86_64 (and then builds the same programs on both, but thats a different story). Teach it about i86pc, which is what SunOS usually returns on an x86 machine.
Diffstat (limited to 'sysutils/dmidecode')
-rw-r--r--sysutils/dmidecode/distinfo4
-rw-r--r--sysutils/dmidecode/patches/patch-aa12
2 files changed, 12 insertions, 4 deletions
diff --git a/sysutils/dmidecode/distinfo b/sysutils/dmidecode/distinfo
index ecdea28390f..741b286e3b9 100644
--- a/sysutils/dmidecode/distinfo
+++ b/sysutils/dmidecode/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.10 2011/02/12 11:09:30 shattered Exp $
+$NetBSD: distinfo,v 1.11 2012/02/20 17:27:33 hans Exp $
SHA1 (dmidecode-2.11.tar.gz) = 4b53195a10b74869fda6e0c3bf84a5e1be8761be
RMD160 (dmidecode-2.11.tar.gz) = 8126cc464fb441f025ddf0cbef4ee04ec71b1773
Size (dmidecode-2.11.tar.gz) = 66389 bytes
-SHA1 (patch-aa) = 15030aee9d7cc0eb91c04911cb8dcea8d5e4aee4
+SHA1 (patch-aa) = 6c861b3742b1627a1b60dbaea9df0843f2ed603d
diff --git a/sysutils/dmidecode/patches/patch-aa b/sysutils/dmidecode/patches/patch-aa
index a0db938b446..9f70ff099b8 100644
--- a/sysutils/dmidecode/patches/patch-aa
+++ b/sysutils/dmidecode/patches/patch-aa
@@ -1,8 +1,8 @@
-$NetBSD: patch-aa,v 1.4 2006/12/23 10:30:59 wiz Exp $
+$NetBSD: patch-aa,v 1.5 2012/02/20 17:27:33 hans Exp $
--- Makefile.orig 2005-10-03 20:38:20.000000000 +0200
+++ Makefile
-@@ -22,9 +22,9 @@ CFLAGS += -O2
+@@ -26,9 +26,9 @@ CFLAGS += -O2
LDFLAGS =
DESTDIR =
@@ -14,3 +14,11 @@ $NetBSD: patch-aa,v 1.4 2006/12/23 10:30:59 wiz Exp $
man8dir = $(mandir)/man8
docdir = $(prefix)/share/doc/dmidecode
+@@ -48,6 +48,7 @@ PROGRAMS-i586 := $(PROGRAMS-i386)
+ PROGRAMS-i686 := $(PROGRAMS-i386)
+ PROGRAMS-x86_64 := biosdecode ownership vpddecode
+ PROGRAMS-amd64 := $(PROGRAMS-x86_64)
++PROGRAMS-i86pc := $(PROGRAMS-x86_64)
+
+ PROGRAMS := dmidecode $(PROGRAMS-$(MACHINE))
+