From owner-svn-ports-all@FreeBSD.ORG Mon Jan 20 07:53:23 2014 Return-Path: Delivered-To: svn-ports-all@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 ESMTPS id 20C83A9B; Mon, 20 Jan 2014 07:53:23 +0000 (UTC) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7A24B1CA7; Mon, 20 Jan 2014 07:53:21 +0000 (UTC) Received: from lqc.issp.ac.ru [77.236.34.156:33225] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with LOGIN) by mail.issp.ac.ru with ESMTP/inet id s0K7rJeb037218 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Mon, 20 Jan 2014 11:53:19 +0400 (MSK) From: Max Brazhnikov To: Raphael Kubo da Costa Subject: Re: svn commit: r340198 - in head/textproc/sigil: . files Date: Mon, 20 Jan 2014 07:53:19 +0000 Message-ID: <4078889.Pc4XLY34Bx@mercury.ph.man.ac.uk> User-Agent: KMail/4.10.5 (FreeBSD/9.2-STABLE; KDE/4.10.5; amd64; ; ) In-Reply-To: <201401181756.s0IHulHB067303@svn.freebsd.org> References: <201401181756.s0IHulHB067303@svn.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="UTF-8" Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org 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: Mon, 20 Jan 2014 07:53:23 -0000 On Sat, 18 Jan 2014 17:56:47 +0000Sat Jan 18 17:56:47 2014 Raphael Kubo da Costa wrote: > Author: rakuco > Date: Sat Jan 18 17:56:47 2014 > New Revision: 340198 > URL: http://svnweb.freebsd.org/changeset/ports/340198 > QAT: https://qat.redports.org/buildarchive/r340198/ > > Log: > - Allow the port to build with archivers/libzip installed. > libzip installs /usr/local/include/zip.h, and -I/usr/local/include ended > up being passed to the compiler before -I, > which caused problems. [1] > > While here, modernize the Makefile: > - Move LICENSE to the appropriate place. > - Remove USE_DOS2UNIX: the files it was supposed to fix are not DOS-encoded > anymore. > - Support staging. > - Convert from manually calling update-desktop-database and > USE_GNOME=desktopfileutils to USES=desktop-file-utils. > > PR: ports/180350 [1] > Approved by: maintainer timeout (no activity since the original report 7 months ago) > MFH: 2014Q1 > > Added: > head/textproc/sigil/files/patch-src_Sigil_CMakeLists.txt (contents, props changed) > Modified: > head/textproc/sigil/Makefile > > Modified: head/textproc/sigil/Makefile > ============================================================================== > --- head/textproc/sigil/Makefile Sat Jan 18 16:47:31 2014 (r340197) > +++ head/textproc/sigil/Makefile Sat Jan 18 17:56:47 2014 (r340198) > @@ -11,25 +11,19 @@ DISTNAME= Sigil-${PORTVERSION}-Code > MAINTAINER= jonc@chen.org.nz > COMMENT= WYSIWYG ePub editor > > +LICENSE= GPLv3 > + > LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs \ > libxerces-c.so:${PORTSDIR}/textproc/xerces-c3 \ > libhunspell-1.3.so:${PORTSDIR}/textproc/hunspell \ > libpcre.so:${PORTSDIR}/devel/pcre > > -LICENSE= GPLv3 > - > USE_ZIP= yes > -USES= cmake pkgconfig > -USE_DOS2UNIX= CMakeLists.txt DirEnumerator.cpp ZipFile_stl.cpp ZipPlatform_lnx.cpp > +USES= cmake desktop-file-utils pkgconfig > NO_WRKSUBDIR= yes > USE_QT4= qmake gui svg webkit xml moc uic rcc imageformats linguist Raphael, You have missed the opportunity to add _build suffix to some Qt4 dependencies :) Cheers, Max