From owner-svn-ports-all@freebsd.org Wed Jan 10 12:02:43 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DEB9CE7C53F; Wed, 10 Jan 2018 12:02:43 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B9ABB70C06; Wed, 10 Jan 2018 12:02:43 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0DD2825594; Wed, 10 Jan 2018 12:02:43 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0AC2g4C081401; Wed, 10 Jan 2018 12:02:42 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0AC2gEM081400; Wed, 10 Jan 2018 12:02:42 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201801101202.w0AC2gEM081400@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 10 Jan 2018 12:02:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458622 - head/security/nettle X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/security/nettle X-SVN-Commit-Revision: 458622 X-SVN-Commit-Repository: ports 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.25 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: Wed, 10 Jan 2018 12:02:44 -0000 Author: amdmi3 Date: Wed Jan 10 12:02:42 2018 New Revision: 458622 URL: https://svnweb.freebsd.org/changeset/ports/458622 Log: - Don't try to use lib32 directory, fixes build on mips - While here, tiny whitespace fix MFH: 2018Q1 Approved by: portmgr blanket Modified: head/security/nettle/Makefile Modified: head/security/nettle/Makefile ============================================================================== --- head/security/nettle/Makefile Wed Jan 10 11:44:09 2018 (r458621) +++ head/security/nettle/Makefile Wed Jan 10 12:02:42 2018 (r458622) @@ -5,7 +5,7 @@ PORTNAME= nettle PORTVERSION= 3.4 CATEGORIES= security MASTER_SITES= GNU \ - http://www.lysator.liu.se/~nisse/archive/ + http://www.lysator.liu.se/~nisse/archive/ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Low-level cryptographic library @@ -36,8 +36,9 @@ PORTEXAMPLES= *.c *.h CONFIGURE_ENV+= CCPIC=-fPIC .endif -.if ${ARCH} == "mips64" post-patch: + @${REINPLACE_CMD} -e '/libdir=/ s|lib32|lib|' ${WRKSRC}/configure +.if ${ARCH} == "mips64" @${REINPLACE_CMD} -e 's|__sgi|__unix__|' ${WRKSRC}/configure .endif