From owner-svn-ports-head@FreeBSD.ORG Mon Oct 21 12:34:45 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 ESMTP id 14935F16; Mon, 21 Oct 2013 12:34:45 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DC8882520; Mon, 21 Oct 2013 12:34:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9LCYi62076368; Mon, 21 Oct 2013 12:34:44 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9LCYii3076366; Mon, 21 Oct 2013 12:34:44 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201310211234.r9LCYii3076366@svn.freebsd.org> From: Alexey Dokuchaev Date: Mon, 21 Oct 2013 12:34:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r331128 - head/net/grive X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 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: Mon, 21 Oct 2013 12:34:45 -0000 Author: danfe Date: Mon Oct 21 12:34:44 2013 New Revision: 331128 URL: http://svnweb.freebsd.org/changeset/ports/331128 Log: Modernize LIB_DEPENDS syntax, stagify, improve wording in port description. Modified: head/net/grive/Makefile head/net/grive/pkg-descr Modified: head/net/grive/Makefile ============================================================================== --- head/net/grive/Makefile Mon Oct 21 11:54:04 2013 (r331127) +++ head/net/grive/Makefile Mon Oct 21 12:34:44 2013 (r331128) @@ -11,11 +11,11 @@ COMMENT= Open source client for Google D LICENSE= GPLv2 BUILD_DEPENDS= ${LOCALBASE}/lib/libiberty.a:${PORTSDIR}/devel/binutils -LIB_DEPENDS= boost_filesystem:${PORTSDIR}/devel/boost-libs \ - curl:${PORTSDIR}/ftp/curl \ - expat:${PORTSDIR}/textproc/expat2 \ - gcrypt:${PORTSDIR}/security/libgcrypt \ - json:${PORTSDIR}/devel/json-c +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 USE_GITHUB= yes GH_ACCOUNT= Grive @@ -26,15 +26,13 @@ GH_TAGNAME= v${PORTVERSION} USES= cmake CXXFLAGS+= -I${LOCALBASE}/include -PLIST_FILES= bin/grive -MAN1= grive.1 +PLIST_FILES= bin/grive man/man1/grive.1.gz # Allow to build with GCC 4.2 -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's,log::,gr::&,g' ${WRKSRC}/grive/src/main.cc post-install: - @${STRIP_CMD} ${PREFIX}/bin/grive + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/grive .include Modified: head/net/grive/pkg-descr ============================================================================== --- head/net/grive/pkg-descr Mon Oct 21 11:54:04 2013 (r331127) +++ head/net/grive/pkg-descr Mon Oct 21 12:34:44 2013 (r331128) @@ -1,4 +1,4 @@ Grive is an independent implementation of Google Drive client. It uses -the Google Document List API to talk to the servers in Google. +the Google Document List API to talk to Google's servers. WWW: http://www.lbreda.com/grive/