svn commit: r331128 - head/net/grive

Alexey Dokuchaev danfe at FreeBSD.org
Mon Oct 21 12:34:45 UTC 2013


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 <bsd.port.mk>

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/


More information about the svn-ports-all mailing list