From owner-svn-ports-head@FreeBSD.ORG Sun Jul 27 08:51:37 2014 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EBF439CF; Sun, 27 Jul 2014 08:51:37 +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 D8CCF251A; Sun, 27 Jul 2014 08:51:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6R8pbRq079430; Sun, 27 Jul 2014 08:51:37 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6R8pbrk079428; Sun, 27 Jul 2014 08:51:37 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407270851.s6R8pbrk079428@svn.freebsd.org> From: John Marino Date: Sun, 27 Jul 2014 08:51:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363029 - in head/x11/xcb: . files 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 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: Sun, 27 Jul 2014 08:51:38 -0000 Author: marino Date: Sun Jul 27 08:51:37 2014 New Revision: 363029 URL: http://svnweb.freebsd.org/changeset/ports/363029 QAT: https://qat.redports.org/buildarchive/r363029/ Log: x11/xcb: Fix incorrectly built app-defaults file The app-defaults file for xcb was not built correctly as a consequence of the switch to clang and replacement of gcc's cpp to tradcpp which is more strict about the order of the parameters. The filename must be last on the command line otherwise a zero-length file is created. Fixed by moving the filename parameter to the end of the cpp command PR: 188203 Submitted by: callum (omma.gibson.athome) Added: head/x11/xcb/files/ head/x11/xcb/files/patch-Imakefile (contents, props changed) Modified: head/x11/xcb/Makefile Modified: head/x11/xcb/Makefile ============================================================================== --- head/x11/xcb/Makefile Sun Jul 27 08:41:54 2014 (r363028) +++ head/x11/xcb/Makefile Sun Jul 27 08:51:37 2014 (r363029) @@ -3,7 +3,7 @@ PORTNAME= xcb PORTVERSION= 2.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11 MASTER_SITES= http://oldhome.schmorp.de/marc/data/ \ http://ftp.lyx.org/pub/pcg/marc/ \ Added: head/x11/xcb/files/patch-Imakefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/xcb/files/patch-Imakefile Sun Jul 27 08:51:37 2014 (r363029) @@ -0,0 +1,10 @@ +--- Imakefile.orig 2002-11-25 15:28:17.000000000 +0000 ++++ Imakefile +@@ -20,6 +20,6 @@ OBJS = xcb.o + ComplexProgramTarget(xcb) + + Xcb.ad: Xcb.ad.base +- $(CPP) -P Xcb.ad.base $(GUI) > $@ # -P removes line directives. ++ $(CPP) $(GUI) -P Xcb.ad.base > $@ # -P removes line directives. + + InstallAppDefaults(Xcb)