From owner-svn-ports-head@FreeBSD.ORG Fri Nov 29 14:49:22 2013 Return-Path: Delivered-To: svn-ports-head@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 59878C38; Fri, 29 Nov 2013 14:49:22 +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 B7C801A99; Fri, 29 Nov 2013 14:49:20 +0000 (UTC) Received: from mercury.ph.man.ac.uk [130.88.75.175:374] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with LOGIN) by mail.issp.ac.ru with ESMTP/inet id rATEnGVR049042 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Fri, 29 Nov 2013 18:49:18 +0400 (MSK) From: Max Brazhnikov To: Alexey Dokuchaev Subject: Re: svn commit: r335180 - in head/net/grive: . files Date: Fri, 29 Nov 2013 14:49:17 +0000 Message-ID: <3333078.5je2Nl6s79@mercury.ph.man.ac.uk> User-Agent: KMail/4.10.5 (FreeBSD/9.2-STABLE; KDE/4.10.5; amd64; ; ) In-Reply-To: <201311291419.rATEJ8r1067276@svn.freebsd.org> References: <201311291419.rATEJ8r1067276@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-head@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Nov 2013 14:49:22 -0000 On Fri, 29 Nov 2013 14:19:08 +0000Fri Nov 29 14:19:08 2013 Alexey Dokuchaev wrote: > Author: danfe > Date: Fri Nov 29 14:19:08 2013 > New Revision: 335180 > URL: http://svnweb.freebsd.org/changeset/ports/335180 > > Log: > - Update to version 0.3.0 (sadly, not tagged at GitHub) > - Do not manually strip installed binary, use install/strip target > - Remove no longer required build dependency on `devel/binutils' > - Use more accurate __FreeBSD_version in one of the patches > > Prodded by: Christopher Haglund > Approved by: maintainer (per earlier email) > > Added: > head/net/grive/files/patch-libgrive_src_drive_State.cc (contents, props changed) > Modified: > head/net/grive/Makefile > head/net/grive/distinfo > head/net/grive/files/patch-st_ctimespec > > Modified: head/net/grive/Makefile > ============================================================================== > --- head/net/grive/Makefile Fri Nov 29 14:14:26 2013 (r335179) > +++ head/net/grive/Makefile Fri Nov 29 14:19:08 2013 (r335180) > @@ -2,8 +2,7 @@ > # $FreeBSD$ > > PORTNAME= grive > -PORTVERSION= 0.2.0 > -PORTREVISION= 1 > +PORTVERSION= 0.3.0 > CATEGORIES= net > > MAINTAINER= ktsin@acm.org > @@ -11,29 +10,31 @@ COMMENT= Open source client for Google D > > LICENSE= GPLv2 > > -BUILD_DEPENDS= ${LOCALBASE}/lib/libiberty.a:${PORTSDIR}/devel/binutils > LIB_DEPENDS= libboost_filesystem.so:${PORTSDIR}/devel/boost-libs \ > libcurl.so:${PORTSDIR}/ftp/curl \ > libexpat.so:${PORTSDIR}/textproc/expat2 \ > libgcrypt.so:${PORTSDIR}/security/libgcrypt \ > - libjson.so:${PORTSDIR}/devel/json-c > + libjson.so:${PORTSDIR}/devel/json-c \ > + libyajl.so:${PORTSDIR}/devel/yajl > > USE_GITHUB= yes > GH_ACCOUNT= Grive > GH_PROJECT= ${PORTNAME} > -GH_COMMIT= 93d696a > -GH_TAGNAME= v${PORTVERSION} > +GH_COMMIT= 27817e8 > +GH_TAGNAME= ${GH_COMMIT} > > USES= cmake > CXXFLAGS+= -I${LOCALBASE}/include > +INSTALL_TARGET= install/strip cmake.mk already takes care of INSTALL_TARGET, why do you need it here? Max