f353783dfa
Instead of trying to patch it, just supply a BSD-specific Makefile using <bsd.prog.mk>. This removes the build-time dependency of this tiny port on USE_REINPLACE and the heavy-weight gmake at once.
26 lines
495 B
Makefile
26 lines
495 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: cpuid
|
|
# Date created: May 22, 2001
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cpuid
|
|
PORTVERSION= 3.3
|
|
PORTREVISION= 2
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://www.ka9q.net/code/cpuid/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= CPU identification utility
|
|
|
|
PLIST_FILES= bin/cpuid
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
|
|
post-patch:
|
|
${MV} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.bak && \
|
|
${CP} ${FILESDIR}/Makefile.bsd ${WRKSRC}/Makefile
|
|
|
|
.include <bsd.port.mk>
|