From owner-svn-ports-all@FreeBSD.ORG Sat Feb 15 09:00:19 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 E29E5FF1; Sat, 15 Feb 2014 09:00:19 +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 CE31213B8; Sat, 15 Feb 2014 09:00:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1F90Jko012852; Sat, 15 Feb 2014 09:00:19 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1F90JRi012848; Sat, 15 Feb 2014 09:00:19 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201402150900.s1F90JRi012848@svn.freebsd.org> From: Marcus von Appen Date: Sat, 15 Feb 2014 09:00:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r344331 - in head: devel/sdl12 graphics/sdl_ttf 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: Sat, 15 Feb 2014 09:00:20 -0000 Author: mva Date: Sat Feb 15 09:00:19 2014 New Revision: 344331 URL: http://svnweb.freebsd.org/changeset/ports/344331 QAT: https://qat.redports.org/buildarchive/r344331/ Log: - Patch the SDL configure script so it no longer adds -liconv to LDFLAGS when converters/libiconv is installed on FreeBSD 10 - Add USES=iconv to graphics/sdl_ttf. The file showfont utility uses iconv.h PR: ports/186665 Submitted by: tijl@ Modified: head/devel/sdl12/Makefile head/graphics/sdl_ttf/Makefile Modified: head/devel/sdl12/Makefile ============================================================================== --- head/devel/sdl12/Makefile Sat Feb 15 08:56:27 2014 (r344330) +++ head/devel/sdl12/Makefile Sat Feb 15 09:00:19 2014 (r344331) @@ -3,7 +3,7 @@ PORTNAME= sdl PORTVERSION= 1.2.15 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 2 CATEGORIES= devel MASTER_SITES= http://www.libsdl.org/release/ @@ -70,6 +70,10 @@ PKGMESSAGE= none DISPLAY_MSG= ${DO_NADA} .endif +post-patch: + @${REINPLACE_CMD} -e '/EXTRA_LDFLAGS/s/-liconv/${ICONV_LIB}/' \ + ${WRKSRC}/configure + post-install: ${MKDIR} ${STAGEDIR}${DOCSDIR} &&\ ${INSTALL_DATA} ${DOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}/ &&\ Modified: head/graphics/sdl_ttf/Makefile ============================================================================== --- head/graphics/sdl_ttf/Makefile Sat Feb 15 08:56:27 2014 (r344330) +++ head/graphics/sdl_ttf/Makefile Sat Feb 15 09:00:19 2014 (r344331) @@ -3,6 +3,7 @@ PORTNAME= sdl_ttf PORTVERSION= 2.0.11 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://www.libsdl.org/projects/SDL_ttf/release/ DISTNAME= SDL_ttf-${PORTVERSION} @@ -16,7 +17,7 @@ LIB_DEPENDS= libfreetype.so:${PORTSDIR}/ USE_AUTOTOOLS= libtool USE_SDL= sdl -USES= gmake pathfix pkgconfig +USES= gmake iconv pathfix pkgconfig USE_XORG= x11 GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include