From owner-svn-ports-all@FreeBSD.ORG Wed Feb 19 16:06:33 2014 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 ESMTPS id 215E85DA; Wed, 19 Feb 2014 16:06:33 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0D669169B; Wed, 19 Feb 2014 16:06:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1JG6WwJ033999; Wed, 19 Feb 2014 16:06:32 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1JG6W7b033998; Wed, 19 Feb 2014 16:06:32 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201402191606.s1JG6W7b033998@svn.freebsd.org> From: John Marino Date: Wed, 19 Feb 2014 16:06:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345107 - head/games/ggz-txt-client 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.17 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: Wed, 19 Feb 2014 16:06:33 -0000 Author: marino Date: Wed Feb 19 16:06:32 2014 New Revision: 345107 URL: http://svnweb.freebsd.org/changeset/ports/345107 QAT: https://qat.redports.org/buildarchive/r345107/ Log: games/ggz-txt-client: Fix for modern binutils Needs explicit linking to libexpat and libggzcore. While here, bring in USES=readline from dports. Modified: head/games/ggz-txt-client/Makefile Modified: head/games/ggz-txt-client/Makefile ============================================================================== --- head/games/ggz-txt-client/Makefile Wed Feb 19 15:47:55 2014 (r345106) +++ head/games/ggz-txt-client/Makefile Wed Feb 19 16:06:32 2014 (r345107) @@ -9,6 +9,7 @@ CATEGORIES= games MAINTAINER= ports@FreeBSD.org COMMENT= The GGZ Gaming Zone - Console (Text) Frontend +USES= readline GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-debug USE_GGZ= client @@ -16,7 +17,7 @@ USE_GGZ= client INSTALL_TARGET= install-strip CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -pthread +LDFLAGS+= -L${LOCALBASE}/lib -pthread -lexpat OPTIONS_DEFINE= NLS OPTIONS_SUB= yes @@ -24,6 +25,10 @@ OPTIONS_SUB= yes NLS_USES= gettext NLS_CONFIGURE_ARGS= --disable-nls +post-patch: + @${REINPLACE_CMD} -e 's|_LDADD =|_LDADD = $$(LIB_GGZCORE)|' \ + ${WRKSRC}/tttxt/Makefile.in + post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/share/ggz @${INSTALL_DATA} ${WRKSRC}/tttxt/module.dsc ${STAGEDIR}/${PREFIX}/share/ggz/tttxt.dsc