mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
b9608053c7
src/hwcap.c:20:3: error: #error "Platform not supported (only Linux supported at the moment)" src/hwcap.c:23:3: error: #error "Platform not supported (no getauxval())" Approved by: portmgr (tier-2 blanket)
31 lines
641 B
Makefile
31 lines
641 B
Makefile
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cpuid2cpuflags
|
|
PORTVERSION= 8
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Tool to generate CPU_FLAGS_* for your CPU
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
BROKEN_powerpc64= fails to build: error "Platform not supported (only Linux supported at the moment)"
|
|
|
|
USES= autoreconf
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= mgorny
|
|
GNU_CONFIGURE= yes
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
PORTDOCS= README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|