From owner-svn-ports-head@FreeBSD.ORG Sun Dec 1 09:16:17 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 37FC41BC; Sun, 1 Dec 2013 09:16:17 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 234AD1959; Sun, 1 Dec 2013 09:16:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB19GGBs062761; Sun, 1 Dec 2013 09:16:16 GMT (envelope-from johans@svn.freebsd.org) Received: (from johans@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rB19GGNq062760; Sun, 1 Dec 2013 09:16:16 GMT (envelope-from johans@svn.freebsd.org) Message-Id: <201312010916.rB19GGNq062760@svn.freebsd.org> From: Johan van Selst Date: Sun, 1 Dec 2013 09:16:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335369 - head/security/nettle 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.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: Sun, 01 Dec 2013 09:16:17 -0000 Author: johans Date: Sun Dec 1 09:16:16 2013 New Revision: 335369 URL: http://svnweb.freebsd.org/changeset/ports/335369 Log: Enable stage support; no functional changes Modified: head/security/nettle/Makefile Modified: head/security/nettle/Makefile ============================================================================== --- head/security/nettle/Makefile Sun Dec 1 07:55:28 2013 (r335368) +++ head/security/nettle/Makefile Sun Dec 1 09:16:16 2013 (r335369) @@ -15,9 +15,9 @@ COMMENT= Low-level cryptographic library LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING.LIB -LIB_DEPENDS= gmp:${PORTSDIR}/math/gmp +LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp -USE_GMAKE= yes +USES= gmake USE_OPENSSL= yes GNU_CONFIGURE= yes CONFIGURE_ENV+= M4="/usr/bin/m4 -g" @@ -32,7 +32,6 @@ PORTDOCS= NEWS README TODO nettle.html n PORTEXAMPLES= *.c *.h INFO= nettle -NO_STAGE= yes .include .if ${ARCH} == "sparc64" @@ -43,12 +42,13 @@ CONFIGURE_ENV+= CCPIC=-fPIC post-install: .if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${EXAMPLESDIR} - cd ${WRKSRC} && ${INSTALL_DATA} examples/${PORTEXAMPLES} ${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + cd ${WRKSRC}/examples && ${INSTALL_DATA} ${PORTEXAMPLES} \ + ${STAGEDIR}${EXAMPLESDIR} .endif .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .endif .include