diff options
author | reed <reed@pkgsrc.org> | 2005-10-29 15:32:04 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2005-10-29 15:32:04 +0000 |
commit | 2285c58571d27d0116edf07968e5002f6ec3d39c (patch) | |
tree | 3b7ca4c4cfd49375e9c86abb7edd3bcd41325cac /sysutils/dmidecode | |
parent | 31623323a5238e041dedf413ccfcd1c3fbfc71e5 (diff) | |
download | pkgsrc-2285c58571d27d0116edf07968e5002f6ec3d39c.tar.gz |
Update to 2.7. This is from Nicolas Joly via PR# 31529.
And okayed by maintainer.
Many changes, see CHANGELOG for all. Here are some highlights:
* dmidecode.c: Add option -u, --dump. It disables decoding of the
entries, raw dumps are displayed instead. This option is mainly
intended for debugging.
* vpddecode.c: Add option -u, --dump. It disables decoding of the
VPD records, a raw dump is displayed instead. This option is
mainly intended for debugging.
* dmidecode.c: Add option -t, --type. It limits the output to
the given type(s) of DMI entries.
* dmiopt.c: Define keywords to be used with --type (instead of
numeric values).
* dmidecode.c, dmiopt.c, dmiopt.h: Add option -q, --quiet. It
makes the output less verbose.
* dmidecode.c, dmiopt.c, dmiopt.h: Add option -s, --string. It
prints one selected DMI string instead of the regular output.
This also installs AUTHORS, CHANGELOG, and README.
And I added "@dirrm share/doc/dmidecode" to PLIST.
patch-aa to use PKGMANDIR and also sets docdir.
Diffstat (limited to 'sysutils/dmidecode')
-rw-r--r-- | sysutils/dmidecode/Makefile | 4 | ||||
-rw-r--r-- | sysutils/dmidecode/PLIST | 6 | ||||
-rw-r--r-- | sysutils/dmidecode/distinfo | 10 | ||||
-rw-r--r-- | sysutils/dmidecode/patches/patch-aa | 12 |
4 files changed, 18 insertions, 14 deletions
diff --git a/sysutils/dmidecode/Makefile b/sysutils/dmidecode/Makefile index 36ba0d99984..efd1c4686d8 100644 --- a/sysutils/dmidecode/Makefile +++ b/sysutils/dmidecode/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2005/05/26 13:53:33 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2005/10/29 15:32:04 reed Exp $ # -DISTNAME= dmidecode-2.6 +DISTNAME= dmidecode-2.7 CATEGORIES= sysutils MASTER_SITES= http://savannah.gnu.org/download/dmidecode/ diff --git a/sysutils/dmidecode/PLIST b/sysutils/dmidecode/PLIST index a6d3c5c8880..db7afb121f2 100644 --- a/sysutils/dmidecode/PLIST +++ b/sysutils/dmidecode/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2005/05/26 13:53:33 wiz Exp $ +@comment $NetBSD: PLIST,v 1.3 2005/10/29 15:32:04 reed Exp $ man/man8/biosdecode.8 man/man8/dmidecode.8 man/man8/ownership.8 @@ -7,3 +7,7 @@ sbin/biosdecode sbin/dmidecode sbin/ownership sbin/vpddecode +share/doc/dmidecode/AUTHORS +share/doc/dmidecode/CHANGELOG +share/doc/dmidecode/README +@dirrm share/doc/dmidecode diff --git a/sysutils/dmidecode/distinfo b/sysutils/dmidecode/distinfo index 0b0d449e184..4d93e5530b3 100644 --- a/sysutils/dmidecode/distinfo +++ b/sysutils/dmidecode/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2005/05/26 13:53:33 wiz Exp $ +$NetBSD: distinfo,v 1.4 2005/10/29 15:32:04 reed Exp $ -SHA1 (dmidecode-2.6.tar.gz) = 739015b6783715cd626463705e05619f3168635d -RMD160 (dmidecode-2.6.tar.gz) = e486d0f06fbee28624544a85ae00d23674a5d665 -Size (dmidecode-2.6.tar.gz) = 47761 bytes -SHA1 (patch-aa) = 16aed9ff58014f41d59c966504eee1b2adbabcb2 +SHA1 (dmidecode-2.7.tar.gz) = 394cd6e4535a4676d2d464a44cf8c86f25df1d83 +RMD160 (dmidecode-2.7.tar.gz) = 53296b5dcc5301bb31860851d4ce58a0ce024096 +Size (dmidecode-2.7.tar.gz) = 52536 bytes +SHA1 (patch-aa) = 77aba3987226a2db2d2391d76b536f50d87e0a23 diff --git a/sysutils/dmidecode/patches/patch-aa b/sysutils/dmidecode/patches/patch-aa index 3dc2083b484..e0893dda6c3 100644 --- a/sysutils/dmidecode/patches/patch-aa +++ b/sysutils/dmidecode/patches/patch-aa @@ -1,13 +1,13 @@ -$NetBSD: patch-aa,v 1.1.1.1 2005/01/12 00:00:36 hubertf Exp $ - ---- Makefile.orig 2004-10-01 19:09:37.000000000 +0200 -+++ Makefile -@@ -23,7 +23,7 @@ CFLAGS += -O2 +--- Makefile.orig 2005-10-28 20:13:08.000000000 -0700 ++++ Makefile 2005-10-28 20:14:28.000000000 -0700 +@@ -22,9 +22,9 @@ LDFLAGS = DESTDIR = -prefix = /usr/local +prefix = ${PREFIX} sbindir = $(prefix)/sbin - mandir = $(prefix)/man +-mandir = $(prefix)/share/man ++mandir = $(prefix)/${PKGMANDIR} man8dir = $(mandir)/man8 + docdir = $(prefix)/share/doc/dmidecode |