From owner-svn-ports-all@FreeBSD.ORG Sat Sep 14 10:30:50 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 872E2255; Sat, 14 Sep 2013 10:30:50 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 74B2A2E8A; Sat, 14 Sep 2013 10:30:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8EAUoiK040169; Sat, 14 Sep 2013 10:30:50 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8EAUoQK040168; Sat, 14 Sep 2013 10:30:50 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201309141030.r8EAUoQK040168@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 14 Sep 2013 10:30:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r327259 - head/sysutils/x86info X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Sep 2013 10:30:50 -0000 Author: bapt Date: Sat Sep 14 10:30:49 2013 New Revision: 327259 URL: http://svnweb.freebsd.org/changeset/ports/327259 Log: Remove USE_GCC=any (clang builds it just fine) While here: - convert to new LIB_DEPENDS format - Remove useless pre.mk/post.mk dancing Modified: head/sysutils/x86info/Makefile Modified: head/sysutils/x86info/Makefile ============================================================================== --- head/sysutils/x86info/Makefile Sat Sep 14 10:00:51 2013 (r327258) +++ head/sysutils/x86info/Makefile Sat Sep 14 10:30:49 2013 (r327259) @@ -12,12 +12,11 @@ COMMENT= x86 CPU identification utility LICENSE= GPLv2 -LIB_DEPENDS= pci:${PORTSDIR}/devel/libpci +LIB_DEPENDS= libpci.so:${PORTSDIR}/devel/libpci ONLY_FOR_ARCHS= i386 amd64 -USE_GCC= any -USES= gmake pkgconfig +USES= gmake pkgconfig ALL_TARGET= x86info lsmsr USE_PYTHON_BUILD=yes @@ -25,12 +24,10 @@ MAN1= x86info.1 MAN8= lsmsr.8 PLIST_FILES= bin/lsmsr bin/x86info -.include - do-install: ${INSTALL_PROGRAM} ${WRKSRC}/x86info ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/lsmsr ${PREFIX}/bin ${INSTALL_MAN} ${MAN1:S,^,${WRKSRC}/,} ${MAN1PREFIX}/man/man1 ${INSTALL_MAN} ${MAN8:S,^,${WRKSRC}/,} ${MAN8PREFIX}/man/man8 -.include +.include