From owner-svn-ports-head@freebsd.org Sat Aug 29 10:25:52 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 63B579C440D; Sat, 29 Aug 2015 10:25:52 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.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 51562642; Sat, 29 Aug 2015 10:25:52 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7TAPq5X033358; Sat, 29 Aug 2015 10:25:52 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7TAPqko033357; Sat, 29 Aug 2015 10:25:52 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201508291025.t7TAPqko033357@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sat, 29 Aug 2015 10:25:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r395542 - head/games/supertux-devel 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.20 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: Sat, 29 Aug 2015 10:25:52 -0000 Author: rakuco Date: Sat Aug 29 10:25:51 2015 New Revision: 395542 URL: https://svnweb.freebsd.org/changeset/ports/395542 Log: Drop USES=iconv. Even though the port's build system checks which version of iconv(3) is available, it ends up using the SDL wrappers instead, so there is no need to depend on iconv in the Makefile. Approved by: makc (maintainer) Differential Revision: https://reviews.freebsd.org/D3519 Modified: head/games/supertux-devel/Makefile Modified: head/games/supertux-devel/Makefile ============================================================================== --- head/games/supertux-devel/Makefile Sat Aug 29 10:04:15 2015 (r395541) +++ head/games/supertux-devel/Makefile Sat Aug 29 10:25:51 2015 (r395542) @@ -2,6 +2,7 @@ PORTNAME= supertux PORTVERSION= 0.3.5 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= https://github.com/SuperTux/supertux/releases/download/v${PORTVERSION}/ PKGNAMESUFFIX= -devel @@ -16,8 +17,7 @@ LIB_DEPENDS= libphysfs.so:${PORTSDIR}/de USE_SDL= sdl2 image2 USE_GL= glew -USES= cmake:outsource compiler:c++11-lib iconv openal:al pkgconfig tar:bzip2 -LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB} +USES= cmake:outsource compiler:c++11-lib openal:al pkgconfig tar:bzip2 # Unhide std::to_string() to fix build with GCC (see ports/193528 for details) CFLAGS+= -D_GLIBCXX_USE_C99