From owner-svn-ports-all@FreeBSD.ORG Sun Feb 2 20:25:01 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org 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 ESMTPS id 28EF7654; Sun, 2 Feb 2014 20:25:01 +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 841F91AAE; Sun, 2 Feb 2014 20:24:59 +0000 (UTC) Received: from host-62-63-83-177.rev.as20985.net [62.63.83.177:56791] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with LOGIN) by mail.issp.ac.ru with ESMTP/inet id s12KOobe084727 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Mon, 3 Feb 2014 00:24:50 +0400 (MSK) From: Max Brazhnikov To: Michael Reifenberger Subject: Re: svn commit: r342284 - head/cad/qcad Date: Sun, 02 Feb 2014 20:24:49 +0000 Message-ID: <2958044.TmCrLZOhTU@mercury.ph.man.ac.uk> User-Agent: KMail/4.10.5 (FreeBSD/9.2-STABLE; KDE/4.10.5; amd64; ; ) In-Reply-To: <201402021319.s12DJ6UE048574@svn.freebsd.org> References: <201402021319.s12DJ6UE048574@svn.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" 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: Sun, 02 Feb 2014 20:25:01 -0000 On Sun, 02 Feb 2014 13:19:06 +0000Sun Feb 2 13:19:05 2014 Michael Reifenberger wrote: > Author: mr > Date: Sun Feb 2 13:19:05 2014 > New Revision: 342284 > URL: http://svnweb.freebsd.org/changeset/ports/342284 > QAT: https://qat.redports.org/buildarchive/r342284/ > > Log: > Upgrade to version 3.4.5 > > Modified: > head/cad/qcad/Makefile > head/cad/qcad/distinfo > head/cad/qcad/pkg-plist > > Modified: head/cad/qcad/Makefile > ============================================================================== > --- head/cad/qcad/Makefile Sun Feb 2 13:10:39 2014 (r342283) > +++ head/cad/qcad/Makefile Sun Feb 2 13:19:05 2014 (r342284) > @@ -2,7 +2,7 @@ > # $FreeBSD$ > > PORTNAME= qcad > -PORTVERSION= 3.4.2.0 > +PORTVERSION= 3.4.5.0 > CATEGORIES= cad > MASTER_SITES= http://github.com/${PORTNAME}/${PORTNAME}/archive/${DISTNAME}.tar.gz?dummy=/ \ > https://github.com/${PORTNAME}/${PORTNAME}/archive/${DISTNAME}.tar.gz?dummy=/ > > Modified: head/cad/qcad/distinfo > ============================================================================== > --- head/cad/qcad/distinfo Sun Feb 2 13:10:39 2014 (r342283) > +++ head/cad/qcad/distinfo Sun Feb 2 13:19:05 2014 (r342284) > @@ -1,2 +1,2 @@ > -SHA256 (qcad/v3.4.2.0.tar.gz) = f6ce584895cdd4483cbe0283b573094fc62b07ee48b2b7a743afda9b93f5003e > -SIZE (qcad/v3.4.2.0.tar.gz) = 19876246 > +SHA256 (qcad/v3.4.5.0.tar.gz) = a4c4a7ebfb02e4611ae1a9c73071d3700d80389894e9bfc31453ad78d0c4396a > +SIZE (qcad/v3.4.5.0.tar.gz) = 20022083 > > Modified: head/cad/qcad/pkg-plist > ============================================================================== > --- head/cad/qcad/pkg-plist Sun Feb 2 13:10:39 2014 (r342283) > +++ head/cad/qcad/pkg-plist Sun Feb 2 13:19:05 2014 (r342284) > @@ -1,9 +1,9 @@ > -bin/bbox > -bin/dwg2bmp > -bin/dwg2pdf > -bin/dwg2svg > -bin/qcad > -bin/qcad-bin > +%%QT_BINDIR%%/bbox > +%%QT_BINDIR%%/dwg2bmp > +%%QT_BINDIR%%/dwg2pdf > +%%QT_BINDIR%%/dwg2svg > +%%QT_BINDIR%%/qcad > +%%QT_BINDIR%%/qcad-bin QT_BINDIR is where Qt4/Qt5 installs binaries. This port should probably use plain paths, unless it's really tightened to Qt distribution and follows QT_BINDIR if it changes. Max