From owner-svn-ports-all@FreeBSD.ORG Mon Apr 13 21:47:10 2015 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.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 24752668; Mon, 13 Apr 2015 21:47:10 +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 067FBD54; Mon, 13 Apr 2015 21:47:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3DLl9lI036417; Mon, 13 Apr 2015 21:47:09 GMT (envelope-from grembo@FreeBSD.org) Received: (from grembo@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3DLl9mo036416; Mon, 13 Apr 2015 21:47:09 GMT (envelope-from grembo@FreeBSD.org) Message-Id: <201504132147.t3DLl9mo036416@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: grembo set sender to grembo@FreeBSD.org using -f From: Michael Gmelin Date: Mon, 13 Apr 2015 21:47:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r383964 - head/Mk 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.20 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: Mon, 13 Apr 2015 21:47:10 -0000 Author: grembo Date: Mon Apr 13 21:47:09 2015 New Revision: 383964 URL: https://svnweb.freebsd.org/changeset/ports/383964 Log: Add OPENSSLRPATH to MAKE_ENV. Also fix a few obvious spelling glitches. Differential Revision: https://reviews.freebsd.org/D2171 Reviewed by: bapt Approved by: bapt Modified: head/Mk/bsd.openssl.mk Modified: head/Mk/bsd.openssl.mk ============================================================================== --- head/Mk/bsd.openssl.mk Mon Apr 13 20:03:12 2015 (r383963) +++ head/Mk/bsd.openssl.mk Mon Apr 13 21:47:09 2015 (r383964) @@ -4,20 +4,20 @@ # # Use of 'USE_OPENSSL=yes' includes this Makefile after bsd.ports.pre.mk # -# the user/port can now set this options in the makefiles. +# The user/port can now set these options in the Makefiles. # # WITH_OPENSSL_BASE=yes - Use the version in the base system. -# WITH_OPENSSL_PORT=yes - Use the OpenSSL port, even if base is up to date +# WITH_OPENSSL_PORT=yes - Use the OpenSSL port, even if base is up to date. # # USE_OPENSSL_RPATH=yes - Pass RFLAGS options in CFLAGS, -# needed for ports who don't use LDFLAGS +# needed for ports who don't use LDFLAGS. # # Overrideable defaults: # # OPENSSL_SHLIBVER= 8 # OPENSSL_PORT= security/openssl # -# The makefile sets this variables: +# The Makefile sets these variables: # OPENSSLBASE - "/usr" or ${LOCALBASE} # OPENSSLDIR - path to openssl # OPENSSLLIB - path to the libs @@ -31,7 +31,7 @@ OpenSSL_Include_MAINTAINER= dinoex@FreeBSD.org -# if no preference was set, check for an installed base version +# If no preference was set, check for an installed base version # but give an installed port preference over it. .if !defined(WITH_OPENSSL_BASE) && \ !defined(WITH_OPENSSL_PORT) && \ @@ -46,8 +46,8 @@ OPENSSLDIR?= /etc/ssl .if !exists(${DESTDIR}/usr/lib/libcrypto.so) check-depends:: - @${ECHO_CMD} "Dependency error: this port requires the OpenSSL library, which is part of" - @${ECHO_CMD} "the FreeBSD crypto distribution but not installed on your" + @${ECHO_CMD} "Dependency error: This port requires the OpenSSL library, which is part of" + @${ECHO_CMD} "the FreeBSD crypto distribution, but not installed on your" @${ECHO_CMD} "machine. Please see the \"OpenSSL\" section in the handbook" @${ECHO_CMD} "(at \"http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/openssl.html\", for instance)" @${ECHO_CMD} "for instructions on how to obtain and install the FreeBSD" @@ -56,7 +56,7 @@ check-depends:: .endif .if exists(${LOCALBASE}/lib/libcrypto.so) check-depends:: - @${ECHO_CMD} "Dependency error: this port wants the OpenSSL library from the FreeBSD" + @${ECHO_CMD} "Dependency error: This port wants the OpenSSL library from the FreeBSD" @${ECHO_CMD} "base system. You can't build against it, while a newer" @${ECHO_CMD} "version is installed by a port." @${ECHO_CMD} "Please deinstall the port or undefine WITH_OPENSSL_BASE." @@ -133,7 +133,8 @@ OPENSSL_LDFLAGS+= -Wl,-rpath,${OPENSSLRP LDFLAGS+=${OPENSSL_LDFLAGS} MAKE_ENV+= OPENSSLLIB=${OPENSSLLIB} OPENSSLINC=${OPENSSLINC} \ - OPENSSLBASE=${OPENSSLBASE} OPENSSLDIR=${OPENSSLDIR} + OPENSSLBASE=${OPENSSLBASE} OPENSSLDIR=${OPENSSLDIR} \ + OPENSSLRPATH=${OPENSSLRPATH} ### crypto #RESTRICTED= "Contains cryptography."