From owner-svn-ports-all@FreeBSD.ORG Thu Sep 25 13:48:36 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 92D739A9; Thu, 25 Sep 2014 13:48:36 +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 7E4C3F33; Thu, 25 Sep 2014 13:48:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8PDma6A083258; Thu, 25 Sep 2014 13:48:36 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8PDmaXv083257; Thu, 25 Sep 2014 13:48:36 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201409251348.s8PDmaXv083257@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Thu, 25 Sep 2014 13:48:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r369253 - in head/games/gracer: . 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-all@freebsd.org X-Mailman-Version: 2.1.18-1 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: Thu, 25 Sep 2014 13:48:36 -0000 Author: tijl Date: Thu Sep 25 13:48:35 2014 New Revision: 369253 URL: http://svnweb.freebsd.org/changeset/ports/369253 QAT: https://qat.redports.org/buildarchive/r369253/ Log: - Patch configure instead of configure.in to avoid USE_AUTOTOOLS - Specify the correct location of libplib Deleted: head/games/gracer/files/patch-configure.in Modified: head/games/gracer/Makefile Modified: head/games/gracer/Makefile ============================================================================== --- head/games/gracer/Makefile Thu Sep 25 13:29:38 2014 (r369252) +++ head/games/gracer/Makefile Thu Sep 25 13:48:35 2014 (r369253) @@ -3,7 +3,7 @@ PORTNAME= gracer PORTVERSION= 0.1.5 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= games MASTER_SITES= SF @@ -18,15 +18,18 @@ LIB_DEPENDS= libgif.so:${PORTSDIR}/graph USE_GL= glut USES= gmake perl5 tcl:84 USE_PERL5= build -USE_AUTOTOOLS= autoconf213 +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-plib=${LOCALBASE} CPPFLAGS+= -I${LOCALBASE}/include \ -I${TCL_INCLUDEDIR} LIBS+= -L${LOCALBASE}/lib -# for plib (sound): -CONFIGURE_ARGS+= --with-plib=${LOCALBASE}/plib -pre-patch: +post-patch: @${REINPLACE_CMD} -i '' -e 's|||' \ ${WRKSRC}/common/gr_memory.h + @${REINPLACE_CMD} \ + -e 's|lib/tclConfig.sh|lib/tcl${TCL_VER}/tclConfig.sh|' \ + -e '/SOUND_LIBS=/s/"$$/ -lplibul"/' \ + ${WRKSRC}/configure .include