# Buildsheet autogenerated by ravenadm tool -- Do not edit. NAMEBASE= dmidecode VERSION= 3.5 KEYWORDS= sysutils VARIANTS= standard SDESC[standard]= Dump DMI/SMBIOS information as human-readable text HOMEPAGE= https://www.nongnu.org/dmidecode CONTACT= Michael_Reim[kraileth@elderlinux.org] DOWNLOAD_GROUPS= main SITES[main]= http://download.savannah.gnu.org/releases/dmidecode/ DISTFILE[1]= dmidecode-3.5.tar.xz:main DF_INDEX= 1 SPKGS[standard]= single OPTIONS_AVAILABLE= none OPTIONS_STANDARD= none NOT_FOR_ARCH= aarch64 LICENSE= GPLv2+:single LICENSE_TERMS= single:{{WRKDIR}}/TERMS LICENSE_FILE= GPLv2+:{{WRKSRC}}/LICENSE LICENSE_AWK= TERMS:"^$$" LICENSE_SOURCE= TERMS:{{WRKSRC}}/dmidecode.h LICENSE_SCHEME= solo FPC_EQUIVALENT= sysutils/dmidecode MAKE_ARGS= prefix={{PREFIX}} SUB_FILES= dmidecode post-install-freebsd: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/periodic/daily ${INSTALL_SCRIPT} ${WRKDIR}/dmidecode ${STAGEDIR}${PREFIX}/etc/periodic/daily/ post-install-dragonfly: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/periodic/daily ${INSTALL_SCRIPT} ${WRKDIR}/dmidecode ${STAGEDIR}${PREFIX}/etc/periodic/daily/ post-install: # documentation requires multiple subpackages ${RM} -r ${STAGEDIR}${STD_DOCDIR} [FILE:939:descriptions/desc.single] Dmidecode reports information about your system's hardware as described in your system BIOS according to the SMBIOS/DMI standard. This information typically includes system manufacturer, model name, serial number, BIOS version, asset tag as well as a lot of other details of varying level of interest and reliability depending on the manufacturer. It will often include usage status for the CPU sockets, expansion slots (e.g. AGP, PCI, ISA) and memory module slots, and the list of I/O ports (e.g. serial, parallel, USB). DMI data can be used to enable or disable specific portions of kernel code depending on the specific hardware. Thus, one use of dmidecode is for kernel developers to detect system "signatures" and add them to the kernel source code when needed. Beware that DMI data have proven to be too unreliable to be blindly trusted. Dmidecode does not scan your hardware, it only reports what the BIOS told it to. [FILE:99:distinfo] 79d76735ee8e25196e2a722964cf9683f5a09581503537884b256b01389cc073 65068 dmidecode-3.5.tar.xz [FILE:224:manifests/plist.single] %%ONLY-DRAGONFLY%%etc/periodic/daily/dmidecode %%ONLY-FREEBSD%%etc/periodic/daily/dmidecode sbin/ biosdecode dmidecode ownership vpddecode share/man/man8/ biosdecode.8.gz dmidecode.8.gz ownership.8.gz vpddecode.8.gz [FILE:1940:files/dmidecode.in] #!/bin/sh - # # Copyright (c) 2001-2014 The FreeBSD Project # Copyright (c) 2014 Dmitry Morozovsky # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # # $FreeBSD: head/sysutils/dmidecode/files/dmidecode.in 403097 2015-12-06 10:04:50Z pi $ # # If there is a global system configuration file, suck it in. # if [ -r /etc/defaults/periodic.conf ] then . /etc/defaults/periodic.conf source_periodic_confs fi dmidecode=%%PREFIX%%/sbin/dmidecode . /etc/periodic/security/security.functions rc=0 case "$daily_status_dmidecode_enable" in [Yy][Ee][Ss]) $dmidecode 2>/dev/null | check_diff dmidecode - "${host} hardware dmi status:" rc=$?;; *) rc=0;; esac exit $rc