From owner-svn-ports-head@FreeBSD.ORG Sun May 19 18:12:27 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 9A895A14; Sun, 19 May 2013 18:12:27 +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 8CF7529D; Sun, 19 May 2013 18:12:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4JICRBc078183; Sun, 19 May 2013 18:12:27 GMT (envelope-from kwm@svn.freebsd.org) Received: (from kwm@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4JICRc4078182; Sun, 19 May 2013 18:12:27 GMT (envelope-from kwm@svn.freebsd.org) Message-Id: <201305191812.r4JICRc4078182@svn.freebsd.org> From: Koop Mast Date: Sun, 19 May 2013 18:12:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r318544 - head/games/gnono 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: Sun, 19 May 2013 18:12:27 -0000 Author: kwm Date: Sun May 19 18:12:27 2013 New Revision: 318544 URL: http://svnweb.freebsd.org/changeset/ports/318544 Log: Fix build with glib 2.34. Submitted by: xorg exp-run via miwi Modified: head/games/gnono/Makefile Modified: head/games/gnono/Makefile ============================================================================== --- head/games/gnono/Makefile Sun May 19 18:02:52 2013 (r318543) +++ head/games/gnono/Makefile Sun May 19 18:12:27 2013 (r318544) @@ -1,9 +1,5 @@ -# New ports collection makefile for: gnono -# Date created: 18 February 2007 -# Whom: Andrew Pantyukhin -# +# Created by: Andrew Pantyukhin # $FreeBSD$ -# PORTNAME= gnono PORTVERSION= 1.9.1 @@ -26,6 +22,18 @@ MAN6= ${PORTNAME}.6 post-patch: @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -E -e \ - 's|-DG.*_DISABLE_DEPRECATED||g' + 's|-DG.*_DISABLE_DEPRECATED||g' -e 's|-Werror||g' + @${REINPLACE_CMD} -e 's|glib/garray.h|glib.h|g' \ + -e 's|glib/gmessages.h|glib.h|g' \ + -e 's|glib/gtypes.h|glib.h|g' \ + -e 's|glib/gmem.h|glib.h|g' \ + -e 's|glib/gmain.h|glib.h|g' \ + ${WRKSRC}/src/ai.[ch] \ + ${WRKSRC}/src/cards.[ch] \ + ${WRKSRC}/src/game.[ch] \ + ${WRKSRC}/src/interface.[ch] \ + ${WRKSRC}/src/main.c \ + ${WRKSRC}/src/players.[ch] \ + ${WRKSRC}/src/preferences.[ch] .include