From owner-svn-ports-head@FreeBSD.ORG Fri Jan 30 17:31:02 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AA71C465; Fri, 30 Jan 2015 17:31:02 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7CB30CF5; Fri, 30 Jan 2015 17:31:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0UHV2FW061049; Fri, 30 Jan 2015 17:31:02 GMT (envelope-from nox@FreeBSD.org) Received: (from nox@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0UHV207060617; Fri, 30 Jan 2015 17:31:02 GMT (envelope-from nox@FreeBSD.org) Message-Id: <201501301731.t0UHV207060617@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: nox set sender to nox@FreeBSD.org using -f From: Juergen Lock Date: Fri, 30 Jan 2015 17:31:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r378176 - head/devel/cxxtools X-SVN-Group: ports-head 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.18-1 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: Fri, 30 Jan 2015 17:31:02 -0000 Author: nox Date: Fri Jan 30 17:31:01 2015 New Revision: 378176 URL: https://svnweb.freebsd.org/changeset/ports/378176 QAT: https://qat.redports.org/buildarchive/r378176/ Log: - Fix plist for non-x86. [1] - Add missing USE_LDCONFIG. - Bump PORTREVISION. Reported by: sbruno (via private email) [1] Modified: head/devel/cxxtools/Makefile head/devel/cxxtools/pkg-plist Modified: head/devel/cxxtools/Makefile ============================================================================== --- head/devel/cxxtools/Makefile Fri Jan 30 17:21:56 2015 (r378175) +++ head/devel/cxxtools/Makefile Fri Jan 30 17:31:01 2015 (r378176) @@ -3,7 +3,7 @@ PORTNAME= cxxtools PORTVERSION= 2.2.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= http://www.tntnet.org/download/ @@ -16,6 +16,7 @@ USE_CSTD= gnu89 GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +USE_LDCONFIG= yes .include @@ -37,5 +38,20 @@ PLIST_SUB+= X86_ONLY="" .else PLIST_SUB+= X86_ONLY="@comment " .endif +.if ${ARCH} == "arm" || ${ARCH} == "armv6" +PLIST_SUB+= ARM_ONLY="" +.else +PLIST_SUB+= ARM_ONLY="@comment " +.endif +.if ${ARCH} == "mips" || ${ARCH} == "mips64" +PLIST_SUB+= MIPS_ONLY="" +.else +PLIST_SUB+= MIPS_ONLY="@comment " +.endif +.if ${ARCH} == "powerpc" || ${ARCH} == "powerpc64" +PLIST_SUB+= PPC_ONLY="" +.else +PLIST_SUB+= PPC_ONLY="@comment " +.endif .include Modified: head/devel/cxxtools/pkg-plist ============================================================================== --- head/devel/cxxtools/pkg-plist Fri Jan 30 17:21:56 2015 (r378175) +++ head/devel/cxxtools/pkg-plist Fri Jan 30 17:31:01 2015 (r378176) @@ -31,6 +31,9 @@ include/cxxtools/argin.h include/cxxtools/argout.h %%X86_64_ONLY%%include/cxxtools/atomicity.gcc.x86_64.h %%I386_ONLY%%include/cxxtools/atomicity.gcc.x86.h +%%ARM_ONLY%%include/cxxtools/atomicity.gcc.arm.h +%%MIPS_ONLY%%include/cxxtools/atomicity.gcc.mips.h +%%PPC_ONLY%%include/cxxtools/atomicity.gcc.ppc.h include/cxxtools/atomicity.h include/cxxtools/base64codec.h include/cxxtools/base64stream.h @@ -122,6 +125,9 @@ include/cxxtools/md5stream.h include/cxxtools/membar.gcc.h include/cxxtools/membar.gcc.nosmp.h %%X86_ONLY%%include/cxxtools/membar.gcc.x86.h +%%ARM_ONLY%%include/cxxtools/membar.gcc.arm.h +%%MIPS_ONLY%%include/cxxtools/membar.gcc.mips.h +%%PPC_ONLY%%include/cxxtools/membar.gcc.ppc.h include/cxxtools/membar.h include/cxxtools/method.h include/cxxtools/method.tpp