From owner-svn-ports-all@FreeBSD.ORG Sat Dec 15 07:57:51 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C19CB7EF; Sat, 15 Dec 2012 07:57:51 +0000 (UTC) (envelope-from makc@freebsd.org) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) by mx1.freebsd.org (Postfix) with ESMTP id 3B17A8FC13; Sat, 15 Dec 2012 07:57:50 +0000 (UTC) Received: from [62.63.86.9] [62.63.86.9:64732] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with LOGIN) by mail.issp.ac.ru with ESMTP/inet id qBF7vgKm010520 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Sat, 15 Dec 2012 11:57:43 +0400 (MSK) From: Max Brazhnikov To: Jason Helfman Subject: Re: svn commit: r308924 - head/print/qpdfview Date: Sat, 15 Dec 2012 07:57:32 +0000 User-Agent: KMail/1.13.7 (FreeBSD/9.1-PRERELEASE; KDE/4.9.3; amd64; ; ) References: <201212141943.qBEJhaGU036001@svn.freebsd.org> In-Reply-To: <201212141943.qBEJhaGU036001@svn.freebsd.org> MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201212150757.33510.makc@freebsd.org> 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.14 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, 15 Dec 2012 07:57:51 -0000 Hi Jason, On Fri, 14 Dec 2012 19:43:35 +0000 (UTC)Fri Dec 14 19:43:35 2012, Jason Helfman wrote: > -PORTVERSION= 0.3.1 > +PORTVERSION= 0.3.7 > CATEGORIES= print > -MASTER_SITES= https://launchpadlibrarian.net/109087731/ > +MASTER_SITES= https://launchpadlibrarian.net/125207295/ > +DISTNAME= ${PORTNAME}-${PORTVERSION}beta1 You should have used DISTVERSION= 0.3.7beta1 here, you wouldn't need to specify DISTNAME and would get correct 0.3.7.b1 for PORTVERSION automatically. Unfortunately it can't be fixed now without bumping PORTEPOCH and perhaps should wait till next update. > MAINTAINER= g.veniamin@googlemail.com > COMMENT= Tabbed PDF viewer using the poppler library > @@ -18,7 +15,7 @@ LICENSE= GPLv2 > LIB_DEPENDS= poppler-qt4:${PORTSDIR}/graphics/poppler-qt4 \ > cups:${PORTSDIR}/print/cups-client > > -USE_QT4= corelib dbus gui moc_build qmake_build svg xml > +USE_QT4= corelib dbus gui moc_build qmake_build rcc sql svg xml Some Qt4 components are used only at build stage, rcc is among them. You can set _build suffix to avoid run dependence on it. Max