From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Sep 25 20:20:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.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 ESMTP id CB7BF237 for ; Wed, 25 Sep 2013 20:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 A8AD32129 for ; Wed, 25 Sep 2013 20:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r8PKK1OX006233 for ; Wed, 25 Sep 2013 20:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r8PKK1EL006232; Wed, 25 Sep 2013 20:20:01 GMT (envelope-from gnats) Resent-Date: Wed, 25 Sep 2013 20:20:01 GMT Resent-Message-Id: <201309252020.r8PKK1EL006232@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Maxim Samsonov 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 ESMTP id 94D3E201 for ; Wed, 25 Sep 2013 20:19:50 +0000 (UTC) (envelope-from xors@mailup.net) Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5A0D72122 for ; Wed, 25 Sep 2013 20:19:49 +0000 (UTC) Received: from compute4.internal (compute4.nyi.mail.srv.osa [10.202.2.44]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id 78DEF22554; Wed, 25 Sep 2013 16:19:44 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute4.internal (MEProxy); Wed, 25 Sep 2013 16:19:44 -0400 Received: from oak.spinney.org (unknown [37.110.157.84]) by mail.messagingengine.com (Postfix) with ESMTPA id C8A49C00E87 for ; Wed, 25 Sep 2013 16:19:43 -0400 (EDT) Received: by oak.spinney.org (Postfix, from userid 1001) id 2AD7220B6; Thu, 26 Sep 2013 00:19:42 +0400 (MSK) Message-Id: <20130925201942.2AD7220B6@oak.spinney.org> Date: Thu, 26 Sep 2013 00:19:42 +0400 (MSK) From: Maxim Samsonov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/182383: [MAINTAINER-UPDATE]: graphics/apvlv Convert to stage and options helpers X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Maxim Samsonov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Sep 2013 20:20:02 -0000 >Number: 182383 >Category: ports >Synopsis: [MAINTAINER-UPDATE]: graphics/apvlv Convert to stage and options helpers >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Sep 25 20:20:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Maxim Samsonov >Release: FreeBSD 9.2-STABLE amd64 >Organization: >Environment: >Description: - Add staging support - Use options helpers >How-To-Repeat: >Fix: --- graphics_apvlv.patch begins here --- diff --git a/graphics/apvlv/Makefile b/graphics/apvlv/Makefile --- a/graphics/apvlv/Makefile +++ b/graphics/apvlv/Makefile @@ -22,28 +22,16 @@ -DAPVLV_WITH_UMD=OFF \ -DAPVLV_WITH_TXT=ON -MAN1= apvlv.1 - OPTIONS_DEFINE= DJVU WEBKIT -DJVU_DESC= Build with DjVu support -WEBKIT_DESC= Build with WebKit support +DJVU_DESC= DjVu document support -NO_STAGE= yes -.include +DJVU_CMAKE_ON= -DAPVLV_WITH_DJVU=ON +DJVU_CMAKE_OFF= -DAPVLV_WITH_DJVU=OFF +DJVU_LIB_DEPENDS= djvulibre:${PORTSDIR}/graphics/djvulibre -.if ${PORT_OPTIONS:MDJVU} -CMAKE_ARGS+= -DAPVLV_WITH_DJVU=ON -LIB_DEPENDS+= djvulibre:${PORTSDIR}/graphics/djvulibre -.else -CMAKE_ARGS+= -DAPVLV_WITH_DJVU=OFF -.endif - -.if ${PORT_OPTIONS:MWEBKIT} -CMAKE_ARGS+= -DAPVLV_WITH_HTML=ON -LIB_DEPENDS+= webkitgtk-1.0:${PORTSDIR}/www/webkit-gtk2 -.else -CMAKE_ARGS+= -DAPVLV_WITH_HTML=OFF -.endif +WEBKIT_CMAKE_ON= -DAPVLV_WITH_HTML=ON +WEBKIT_CMAKE_OFF= -DAPVLV_WITH_HTML=OFF +WEBKIT_LIB_DEPENDS= webkitgtk-1.0:${PORTSDIR}/www/webkit-gtk2 .include diff --git a/graphics/apvlv/pkg-plist b/graphics/apvlv/pkg-plist --- a/graphics/apvlv/pkg-plist +++ b/graphics/apvlv/pkg-plist @@ -1,5 +1,6 @@ bin/apvlv etc/apvlvrc +man/man1/apvlv.1.gz %%DOCSDIR%%/Startup.pdf %%DOCSDIR%%/Startup.tex %%DOCSDIR%%/apvlvrc.example --- graphics_apvlv.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: