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.
This commit is contained in:
parent
31623323a5
commit
2285c58571
4 changed files with 18 additions and 14 deletions
|
@ -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/
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue