From owner-svn-ports-head@FreeBSD.ORG Wed Sep 3 09:47:32 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 2C4A0D4A; Wed, 3 Sep 2014 09:47:32 +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 17AA91BAE; Wed, 3 Sep 2014 09:47:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s839lVOY028121; Wed, 3 Sep 2014 09:47:31 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s839lVwD028120; Wed, 3 Sep 2014 09:47:31 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201409030947.s839lVwD028120@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Wed, 3 Sep 2014 09:47:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r367182 - head/audio/extace 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-1 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: Wed, 03 Sep 2014 09:47:32 -0000 Author: tijl Date: Wed Sep 3 09:47:31 2014 New Revision: 367182 URL: http://svnweb.freebsd.org/changeset/ports/367182 QAT: https://qat.redports.org/buildarchive/r367182/ Log: - Add missing -lm - Add USES=libtool Modified: head/audio/extace/Makefile Modified: head/audio/extace/Makefile ============================================================================== --- head/audio/extace/Makefile Wed Sep 3 09:43:59 2014 (r367181) +++ head/audio/extace/Makefile Wed Sep 3 09:47:31 2014 (r367182) @@ -12,17 +12,17 @@ COMMENT= Audio visualization plugin for LIB_DEPENDS= libfftw3.so:${PORTSDIR}/math/fftw3 -USES= pathfix pkgconfig +USES= libtool pathfix pkgconfig USE_GNOME= esound gnomehier gtk20 GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +LIBS+= -L${LOCALBASE}/lib -lm PLIST_FILES= bin/extace \ share/gnome/apps/Multimedia/extace.desktop post-patch: - @${REINPLACE_CMD} -e 's|^CFLAGS=|#CFLAGS=|g' ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|^LIBS =|#LIBS =|g' ${WRKSRC}/src/Makefile.in + @${REINPLACE_CMD} '/^CFLAGS="-O2/d' ${WRKSRC}/configure + @${REINPLACE_CMD} '/^LIBS =/s/$$/ @LIBS@/' ${WRKSRC}/src/Makefile.in .include