From owner-svn-ports-all@freebsd.org Sat May 21 01:39:53 2016 Return-Path: Delivered-To: svn-ports-all@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 0A2EAB43D6E; Sat, 21 May 2016 01:39:53 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 CBD041054; Sat, 21 May 2016 01:39:52 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4L1dpBc033805; Sat, 21 May 2016 01:39:51 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4L1dp55033804; Sat, 21 May 2016 01:39:51 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201605210139.u4L1dp55033804@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 21 May 2016 01:39:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415581 - head/graphics/aseprite 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.22 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, 21 May 2016 01:39:53 -0000 Author: pi Date: Sat May 21 01:39:51 2016 New Revision: 415581 URL: https://svnweb.freebsd.org/changeset/ports/415581 Log: graphics/aseprite: change to OPTION helper syntax PR: 209676 Submitted by: Yuri Victorovich (maintainer) Reported by: mat Modified: head/graphics/aseprite/Makefile Modified: head/graphics/aseprite/Makefile ============================================================================== --- head/graphics/aseprite/Makefile Fri May 20 21:40:59 2016 (r415580) +++ head/graphics/aseprite/Makefile Sat May 21 01:39:51 2016 (r415581) @@ -37,17 +37,13 @@ GH_TUPLE+= aseprite:duktape:90090c7:duk USES= cmake:outsource compiler:c++11-lib jpeg pkgconfig USE_XORG= x11 xcursor xext xpm ice pixman sm xxf86dga xxf86vm -.include - CMAKE_ARGS+= -DUSE_SHARED_ALLEGRO4=1 CMAKE_ARGS+= -DUSE_SHARED_GIFLIB=1 CMAKE_ARGS+= -DUSE_SHARED_ZLIB=1 CMAKE_ARGS+= -DUSE_SHARED_JPEGLIB=1 CMAKE_ARGS+= -DUSE_SHARED_LIBPNG=1 -.if ${PORT_OPTIONS:MWEBP} -CMAKE_ARGS+= -DWITH_WEBP_SUPPORT=1 -CMAKE_ARGS+= -DUSE_SHARED_LIBWEBP=1 -.endif +WEBP_CMAKE_ON+= -DWITH_WEBP_SUPPORT=1 +WEBP_CMAKE_ON+= -DUSE_SHARED_LIBWEBP=1 CMAKE_ARGS+= -DUSE_SHARED_FREETYPE=1 CMAKE_ARGS+= -DUSE_SHARED_PIXMAN=1 CMAKE_ARGS+= -DUSE_SHARED_CURL=1 @@ -57,8 +53,6 @@ CXXFLAGS+= -I${LOCALBASE}/include CXXFLAGS+= -I${LOCALBASE}/include/freetype2 CXXFLAGS+= -I${LOCALBASE}/include/freetype2/freetype -.include - post-extract: @${RMDIR} ${WRKSRC}/src/flic ${WRKSRC}/third_party/gtest ${WRKSRC}/third_party/simpleini ${WRKSRC}/third_party/duktape @${MV} ${WRKDIR}/flic-* ${WRKSRC}/src/flic @@ -75,4 +69,4 @@ post-configure: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/src/app/resource_finder.cpp -.include +.include