From owner-svn-ports-all@freebsd.org Sat Oct 20 10:19:31 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CEB1AFCBF15; Sat, 20 Oct 2018 10:19:30 +0000 (UTC) (envelope-from mfechner@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 8445288750; Sat, 20 Oct 2018 10:19:30 +0000 (UTC) (envelope-from mfechner@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 7F3641CB9E; Sat, 20 Oct 2018 10:19:30 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9KAJU4C072867; Sat, 20 Oct 2018 10:19:30 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9KAJTC8072863; Sat, 20 Oct 2018 10:19:29 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201810201019.w9KAJTC8072863@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Sat, 20 Oct 2018 10:19:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482481 - in head/mail/opendkim: . files X-SVN-Group: ports-head X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: in head/mail/opendkim: . files X-SVN-Commit-Revision: 482481 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.29 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: Sat, 20 Oct 2018 10:19:31 -0000 Author: mfechner Date: Sat Oct 20 10:19:29 2018 New Revision: 482481 URL: https://svnweb.freebsd.org/changeset/ports/482481 Log: Fixed problems with OpenSSL 1.1.1 and an error message regarding lua. PR: 223568 Submitted by: freebsd-ports@dan.me.uk Reported by: pi@FreeBSD.org Reviewed by: mfechner@FreeBSD.org Approved by: mentors (implicit) Modified: head/mail/opendkim/Makefile head/mail/opendkim/files/patch-libopendkim__tests__Makefile.in head/mail/opendkim/files/patch-libopendkim_dkim-canon.c head/mail/opendkim/files/patch-opendkim__tests__Makefile.in Modified: head/mail/opendkim/Makefile ============================================================================== --- head/mail/opendkim/Makefile Sat Oct 20 10:10:59 2018 (r482480) +++ head/mail/opendkim/Makefile Sat Oct 20 10:19:29 2018 (r482481) @@ -3,7 +3,7 @@ PORTNAME= opendkim PORTVERSION= 2.10.3 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= mail security MASTER_SITES= SF/${PORTNAME} \ SF/${PORTNAME}/Previous%20Releases \ @@ -20,12 +20,9 @@ LICENSE_GROUPS_SENDMAIL=FSF OSI LICENSE_NAME_SENDMAIL= Sendmail Open Source License LICENSE_PERMS_SENDMAIL= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -BROKEN_SSL= openssl-devel -BROKEN_SSL_REASON_openssl-devel= checking for library containing SSL_library_init... no - GNU_CONFIGURE= yes NO_OPTIONS_SORT=yes -USES= libtool perl5 pkgconfig shebangfix ssl +USES= autoreconf libtool perl5 pkgconfig shebangfix ssl USE_PERL5= run SHEBANG_FILES= opendkim/opendkim-genkey* reputation/opendkim-* stats/opendkim-* \ reprrd/opendkim-reprrdimport* @@ -158,10 +155,9 @@ LDFLAGS+= -lpthread .endif pre-configure: - ${REINPLACE_CMD} -e '/LIBLUA_LIBS/s/lua5\.[0-9]/lua-${LUA_VER}/' \ - -e '/PKG_CONFIG/s/lua5\.[0-9]/lua-${LUA_VER}/' \ + ${REINPLACE_CMD} -e '/PKG_CHECK_MODULES/s/lua5\.[0-9]/lua-${LUA_VER}/' \ -e '/PKG_CONFIG/s/cyrussasl/libsasl2/' \ - ${WRKSRC}/configure + ${WRKSRC}/configure.ac post-patch-LCOV-on: ${CP} ${FILESDIR}/lcov-helper.sh ${WRKSRC}/libopendkim/tests/ Modified: head/mail/opendkim/files/patch-libopendkim__tests__Makefile.in ============================================================================== --- head/mail/opendkim/files/patch-libopendkim__tests__Makefile.in Sat Oct 20 10:10:59 2018 (r482480) +++ head/mail/opendkim/files/patch-libopendkim__tests__Makefile.in Sat Oct 20 10:19:29 2018 (r482481) @@ -1,6 +1,6 @@ --- libopendkim/tests/Makefile.in.orig 2015-05-12 18:43:48 UTC +++ libopendkim/tests/Makefile.in -@@ -1108,8 +1108,10 @@ am__nobase_list = $(am__nobase_strip_set +@@ -1108,8 +1108,10 @@ am__nobase_list = $(am__nobase_strip_setup); \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ Modified: head/mail/opendkim/files/patch-libopendkim_dkim-canon.c ============================================================================== --- head/mail/opendkim/files/patch-libopendkim_dkim-canon.c Sat Oct 20 10:10:59 2018 (r482480) +++ head/mail/opendkim/files/patch-libopendkim_dkim-canon.c Sat Oct 20 10:19:29 2018 (r482481) @@ -1,6 +1,6 @@ ---- libopendkim/dkim-canon.c.orig 2015-08-26 08:37:01 UTC +--- libopendkim/dkim-canon.c.orig 2015-05-11 03:56:13 UTC +++ libopendkim/dkim-canon.c -@@ -388,7 +388,7 @@ dkim_canon_header_string(struct dkim_dst +@@ -388,7 +388,7 @@ dkim_canon_header_string(struct dkim_dstring *dstr, dk } /* skip all spaces before first word */ Modified: head/mail/opendkim/files/patch-opendkim__tests__Makefile.in ============================================================================== --- head/mail/opendkim/files/patch-opendkim__tests__Makefile.in Sat Oct 20 10:10:59 2018 (r482480) +++ head/mail/opendkim/files/patch-opendkim__tests__Makefile.in Sat Oct 20 10:19:29 2018 (r482481) @@ -1,6 +1,6 @@ --- opendkim/tests/Makefile.in.orig 2015-05-12 18:43:49 UTC +++ opendkim/tests/Makefile.in -@@ -139,8 +139,10 @@ am__nobase_list = $(am__nobase_strip_set +@@ -139,8 +139,10 @@ am__nobase_list = $(am__nobase_strip_setup); \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \