mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
7361e286e9
PR: 218212 Submitted by: maintainer
39 lines
969 B
Makefile
39 lines
969 B
Makefile
# Created by: uffe@uffe.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cpuid
|
|
PORTVERSION= 20170122
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.etallen.com/cpuid/
|
|
PKGNAMESUFFIX= ${CPUID_SUFFIX}
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}.src
|
|
|
|
MAINTAINER= pkubaj@anongoth.pl
|
|
COMMENT= Tool to dump x86 CPUID information about the CPU(s)
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
ONLY_FOR_ARCHS_REASON= only works with x86 CPUs
|
|
|
|
USES= gmake perl5
|
|
USE_PERL5= build
|
|
ALL_TARGET= default
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
# Renamed to avoid conflict with misc/cpuid
|
|
CPUID_SUFFIX= -etallen
|
|
|
|
PLIST_FILES= bin/cpuid${CPUID_SUFFIX} \
|
|
man/man1/cpuid${CPUID_SUFFIX}.1.gz
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} 's,CFL=.*,& -pthread,' ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/cpuid ${STAGEDIR}${PREFIX}/bin/cpuid${CPUID_SUFFIX}
|
|
${INSTALL_MAN} ${WRKSRC}/cpuid.man.gz ${STAGEDIR}${PREFIX}/man/man1/cpuid${CPUID_SUFFIX}.1.gz
|
|
|
|
.include <bsd.port.mk>
|