From owner-svn-ports-head@FreeBSD.ORG Mon Jul 21 21:22:00 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 1D8ADEC9; Mon, 21 Jul 2014 21:22:00 +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 0B1CA25C9; Mon, 21 Jul 2014 21:22:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6LLLxJm052612; Mon, 21 Jul 2014 21:21:59 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6LLLxSS052610; Mon, 21 Jul 2014 21:21:59 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201407212121.s6LLLxSS052610@svn.freebsd.org> From: Emanuel Haupt Date: Mon, 21 Jul 2014 21:21:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r362497 - in head/math/aamath: . 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: Mon, 21 Jul 2014 21:22:00 -0000 Author: ehaupt Date: Mon Jul 21 21:21:59 2014 New Revision: 362497 URL: http://svnweb.freebsd.org/changeset/ports/362497 QAT: https://qat.redports.org/buildarchive/r362497/ Log: Second attempt to fix build on 11.0-CURRENT. Modified: head/math/aamath/Makefile head/math/aamath/files/patch-Makefile Modified: head/math/aamath/Makefile ============================================================================== --- head/math/aamath/Makefile Mon Jul 21 21:20:14 2014 (r362496) +++ head/math/aamath/Makefile Mon Jul 21 21:21:59 2014 (r362497) @@ -19,6 +19,8 @@ WRKSRC= ${WRKDIR}/${PORTNAME} PLIST_FILES= bin/aamath man/man1/aamath.1.gz +CFLAGS+= -I${LOCALBASE}/include + do-install: ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 Modified: head/math/aamath/files/patch-Makefile ============================================================================== --- head/math/aamath/files/patch-Makefile Mon Jul 21 21:20:14 2014 (r362496) +++ head/math/aamath/files/patch-Makefile Mon Jul 21 21:21:59 2014 (r362497) @@ -1,5 +1,5 @@ ---- Makefile.orig -+++ Makefile +--- ./Makefile.orig 2005-06-22 22:12:18.000000000 +0200 ++++ ./Makefile 2014-07-22 01:12:20.000000000 +0200 @@ -1,17 +1,22 @@ -CXX = g++ -LD = g++ @@ -14,7 +14,8 @@ LIBS = -lreadline -ltermcap $(TARGET): $(OBJS) - $(LD) $(LFLAGS) $(OBJS) -o $@ $(LIBS) +- $(LD) $(LFLAGS) $(OBJS) -o $@ $(LIBS) ++ $(LD) $(LDFLAGS) $(OBJS) -o $@ $(LIBS) -parser.cc parser.h: parser.y - yacc -d parser.y && mv y.tab.c parser.cc && mv y.tab.h parser.h