From owner-svn-ports-all@FreeBSD.ORG Tue Jun 3 01:07:29 2014 Return-Path: Delivered-To: svn-ports-all@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 79562F82; Tue, 3 Jun 2014 01:07:29 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 66FAF27FD; Tue, 3 Jun 2014 01:07:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5317T9n033967; Tue, 3 Jun 2014 01:07:29 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5317Tik033966; Tue, 3 Jun 2014 01:07:29 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201406030107.s5317Tik033966@svn.freebsd.org> From: Dmitry Marakasov Date: Tue, 3 Jun 2014 01:07:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356272 - head/security/gringotts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 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: Tue, 03 Jun 2014 01:07:29 -0000 Author: amdmi3 Date: Tue Jun 3 01:07:28 2014 New Revision: 356272 URL: http://svnweb.freebsd.org/changeset/ports/356272 QAT: https://qat.redports.org/buildarchive/r356272/ Log: - Support staging - Use new LIB_DEPENDS syntax - Fix docs installation Modified: head/security/gringotts/Makefile Modified: head/security/gringotts/Makefile ============================================================================== --- head/security/gringotts/Makefile Tue Jun 3 01:06:18 2014 (r356271) +++ head/security/gringotts/Makefile Tue Jun 3 01:07:28 2014 (r356272) @@ -10,8 +10,8 @@ MASTER_SITES= BERLIOS MAINTAINER= ports@FreeBSD.org COMMENT= GTK application to securely store sensitive data -LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \ - gringotts.2:${PORTSDIR}/security/libgringotts +LIB_DEPENDS= libpopt.so:${PORTSDIR}/devel/popt \ + libgringotts.so:${PORTSDIR}/security/libgringotts USES= pkgconfig USE_GNOME= gtk20 @@ -20,7 +20,8 @@ GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -NO_STAGE= yes +OPTIONS_DEFINE= DOCS + post-patch: @${REINPLACE_CMD} -e \ '/^install-data-am:/s|install-DsktpDATA|| ; \ @@ -30,12 +31,10 @@ post-patch: '/^install-exec-am:/s|install-exec-local||' ${WRKSRC}/src/Makefile.in post-install: - ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.desktop ${PREFIX}/share/applications -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.desktop ${STAGEDIR}${PREFIX}/share/applications + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for file in AUTHORS BUGS ChangeLog FAQ NEWS README TODO - ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR} .endfor -.endif .include