mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
38ca10bb38
Freshmeat blurb: Identifies several new CPUS. Additional MSR decoding on various CPUs. A few misidentification bugs have been fixed. Completely rewritten cachesize determination. Various new cache descriptors added. Numerous MHz estimation improvements. AMD K7 powernow register/BIOS decoding. Now decodes extended Intel feature flags, cpuid brand field, and sSpec on some models. AMD Opteron/Athlon64 support. VIA Powersaver/Longhaul support. A --bugs option to display CPU errata. No longer retries opening /dev/msr if the first open fails. Fixes a memory leak in --url. PR: 55937 Submitted by: Erik Greenwald <erik@smluc.org>
31 lines
697 B
Makefile
31 lines
697 B
Makefile
# New ports collection makefile for: x86info
|
|
# Date created: 26 Aug 2001
|
|
# Whom: Erik Greenwald <erik@smluc.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= x86info
|
|
PORTVERSION= 1.12b
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.codemonkey.org.uk/projects/x86info/ \
|
|
${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= erik@smluc.org
|
|
COMMENT= Utility to display information about the systems x86 processor(s)
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
USE_REINPLACE= yes
|
|
|
|
post-patch:
|
|
.for file in x86info.h mptable.c
|
|
@${REINPLACE_CMD} -e "s|machine/types.h|sys/types.h|g" ${WRKSRC}/${file}
|
|
.endfor
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/x86info ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|