From owner-svn-ports-head@FreeBSD.ORG Sat Mar 9 15:25:10 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 214A0764; Sat, 9 Mar 2013 15:25:10 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id EE28B90A; Sat, 9 Mar 2013 15:25:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r29FP9VS003112; Sat, 9 Mar 2013 15:25:09 GMT (envelope-from kwm@svn.freebsd.org) Received: (from kwm@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r29FP9VC003107; Sat, 9 Mar 2013 15:25:09 GMT (envelope-from kwm@svn.freebsd.org) Message-Id: <201303091525.r29FP9VC003107@svn.freebsd.org> From: Koop Mast Date: Sat, 9 Mar 2013 15:25:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r313721 - in head: devel/gpsim multimedia/subtitleeditor x11-themes/rezlooks 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.14 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: Sat, 09 Mar 2013 15:25:10 -0000 Author: kwm Date: Sat Mar 9 15:25:08 2013 New Revision: 313721 URL: http://svnweb.freebsd.org/changeset/ports/313721 Log: Fix build with glib 2.34. Submitted by: miwi Modified: head/devel/gpsim/Makefile head/multimedia/subtitleeditor/Makefile head/x11-themes/rezlooks/Makefile Modified: head/devel/gpsim/Makefile ============================================================================== --- head/devel/gpsim/Makefile Sat Mar 9 15:19:06 2013 (r313720) +++ head/devel/gpsim/Makefile Sat Mar 9 15:25:08 2013 (r313721) @@ -26,6 +26,12 @@ LDFLAGS+= -L${LOCALBASE}/lib .include +post-patch: + @${REINPLACE_CMD} -e 's|glib/.*\.h>|glib.h>|g' \ + ${WRKSRC}/src/os_dependent.cc + @${REINPLACE_CMD} -e 's|glibconfig.h|glib.h|g' \ + ${WRKSRC}/src/bitlog.h + post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} Modified: head/multimedia/subtitleeditor/Makefile ============================================================================== --- head/multimedia/subtitleeditor/Makefile Sat Mar 9 15:19:06 2013 (r313720) +++ head/multimedia/subtitleeditor/Makefile Sat Mar 9 15:25:08 2013 (r313721) @@ -39,5 +39,6 @@ BROKEN= does not compile post-patch: @${REINPLACE_CMD} -e '/test/s|==|=|g' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|strtoll|strtoq|g' ${WRKSRC}/plugins/subtitleformats/advancedsubstationalpha/advancedsubstationalpha.cc + @${REINPLACE_CMD} -e 's|glib/.*\.h>|glib.h>|g' ${WRKSRC}/plugins/actions/findandreplace/findandreplace.cc .include Modified: head/x11-themes/rezlooks/Makefile ============================================================================== --- head/x11-themes/rezlooks/Makefile Sat Mar 9 15:19:06 2013 (r313720) +++ head/x11-themes/rezlooks/Makefile Sat Mar 9 15:25:08 2013 (r313721) @@ -26,4 +26,8 @@ OPTIONS+= ANIMATION "Animation support" CONFIGURE_ARGS+= --enable-animation .endif +post-patch: + @${REINPLACE_CMD} -e 's|glib/.*\.h>|glib.h>|g' \ + ${WRKSRC}/src/animation.c + .include