From owner-svn-ports-head@freebsd.org Mon Dec 11 09:24:42 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CBB4AE8B7CE; Mon, 11 Dec 2017 09:24:42 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9205B79469; Mon, 11 Dec 2017 09:24:42 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBB9OfYk043860; Mon, 11 Dec 2017 09:24:41 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBB9OfCX043859; Mon, 11 Dec 2017 09:24:41 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201712110924.vBB9OfCX043859@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Mon, 11 Dec 2017 09:24:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455934 - head/sysutils/lscpu X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: head/sysutils/lscpu X-SVN-Commit-Revision: 455934 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Dec 2017 09:24:42 -0000 Author: danfe Date: Mon Dec 11 09:24:41 2017 New Revision: 455934 URL: https://svnweb.freebsd.org/changeset/ports/455934 Log: Follow up on r455926 and just set ONLY_FOR_ARCHS instead of a bunch of BROKEN_* statements: this software is inherently x86-only. While here, remove redundant ${PORTNAME}.1 from destination path and thus make the line fit under 80 characters. Modified: head/sysutils/lscpu/Makefile Modified: head/sysutils/lscpu/Makefile ============================================================================== --- head/sysutils/lscpu/Makefile Mon Dec 11 09:00:31 2017 (r455933) +++ head/sysutils/lscpu/Makefile Mon Dec 11 09:24:41 2017 (r455934) @@ -10,13 +10,7 @@ COMMENT= Display information about the CPU architectur LICENSE= BSD3CLAUSE -BROKEN_aarch64= fails to compile: lib/clang/3.8.0/include/cpuid.h:25:2: error: this header is for x86 only -BROKEN_armv6= fails to compile: lib/clang/5.0.0/include/cpuid.h:25:2: error: this header is for x86 only -BROKEN_armv7= fails to compile: lib/clang/5.0.0/include/cpuid.h:25:2: error: this header is for x86 only -BROKEN_mips= fails to compile: lscpu.c:10:19: error: cpuid.h: No such file or directory -BROKEN_mips64= fails to compile: lscpu.c:10:19: error: cpuid.h: No such file or directory -BROKEN_powerpc= fails to compile: lscpu.c:10:19: error: cpuid.h: No such file or directory -BROKEN_powerpc64= fails to compile: lscpu.c:10:19: error: cpuid.h: No such file or directory +ONLY_FOR_ARCHS= amd64 i386 USE_GITHUB= yes GH_ACCOUNT= NanXiao @@ -25,6 +19,6 @@ PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1/${PORTNAME}.1 + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 .include