From owner-freebsd-office@FreeBSD.ORG Wed Oct 23 13:05:20 2013 Return-Path: Delivered-To: office@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 57CD84F8 for ; Wed, 23 Oct 2013 13:05:20 +0000 (UTC) (envelope-from danfe@regency.nsu.ru) Received: from mx.nsu.ru (mx.nsu.ru [84.237.50.39]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 05F742CEF for ; Wed, 23 Oct 2013 13:05:19 +0000 (UTC) Received: from regency.nsu.ru ([193.124.210.26]) by mx.nsu.ru with esmtp (Exim 4.69) (envelope-from ) id 1VYy7Z-0005Rb-83 for office@FreeBSD.org; Wed, 23 Oct 2013 20:05:14 +0700 Received: from regency.nsu.ru (localhost [127.0.0.1]) by regency.nsu.ru (8.14.2/8.14.2) with ESMTP id r9ND69BS023592 for ; Wed, 23 Oct 2013 20:06:19 +0700 (NOVT) (envelope-from danfe@regency.nsu.ru) Received: (from danfe@localhost) by regency.nsu.ru (8.14.2/8.14.2/Submit) id r9ND631F023520 for office@FreeBSD.org; Wed, 23 Oct 2013 20:06:03 +0700 (NOVT) (envelope-from danfe) Date: Wed, 23 Oct 2013 20:06:03 +0700 From: Alexey Dokuchaev To: office@FreeBSD.org Subject: [patch] graphics/libwpg: DOCS option should be renamed to DOXYGEN Message-ID: <20131023130603.GA20224@regency.nsu.ru> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="nFreZHaLTZJo0R7j" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Oct 2013 13:05:20 -0000 --nFreZHaLTZJo0R7j Content-Type: text/plain; charset=us-ascii Content-Disposition: inline hi there, please consider attached diff. it also looks like that port is stage-ready as it is. ./danfe --nFreZHaLTZJo0R7j Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="libwpg.diff" Index: Makefile =================================================================== --- Makefile (revision 331348) +++ Makefile (working copy) @@ -11,7 +11,7 @@ LICENSE= LGPL21 MPL LICENSE_COMB= dual -LIB_DEPENDS= wpd-0.9:${PORTSDIR}/textproc/libwpd +LIB_DEPENDS= libwpd-0.9.so:${PORTSDIR}/textproc/libwpd USE_AUTOTOOLS= libtool USES= pkgconfig perl5 @@ -20,12 +20,11 @@ USE_LDCONFIG= yes CONFIGURE_ARGS= --disable-werror -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= DOXYGEN -NO_STAGE= yes .include -.if ${PORT_OPTIONS:MDOCS} +.if ${PORT_OPTIONS:MDOXYGEN} BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen PORTDOCS= * .else Index: pkg-descr =================================================================== --- pkg-descr (revision 331348) +++ pkg-descr (working copy) @@ -1,3 +1,3 @@ -Library for importing and converting Corel WordPerfect(tm) Graphics images +Library for importing and converting Corel WordPerfect(tm) Graphics images. WWW: http://libwpg.sourceforge.net/ --nFreZHaLTZJo0R7j--