From owner-svn-ports-head@freebsd.org Sun Oct 14 16:24:08 2018 Return-Path: Delivered-To: svn-ports-head@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 B638810D9B5B; Sun, 14 Oct 2018 16:24:08 +0000 (UTC) (envelope-from antoine@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 6BE0C8EE2F; Sun, 14 Oct 2018 16:24:08 +0000 (UTC) (envelope-from antoine@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 6648F20B2A; Sun, 14 Oct 2018 16:24:08 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9EGO82O005683; Sun, 14 Oct 2018 16:24:08 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9EGO8SM005682; Sun, 14 Oct 2018 16:24:08 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201810141624.w9EGO8SM005682@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 14 Oct 2018 16:24:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482051 - in head/irc/irssi: . files X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in head/irc/irssi: . files X-SVN-Commit-Revision: 482051 X-SVN-Commit-Repository: ports 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.27 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, 14 Oct 2018 16:24:08 -0000 Author: antoine Date: Sun Oct 14 16:24:07 2018 New Revision: 482051 URL: https://svnweb.freebsd.org/changeset/ports/482051 Log: Fix configure with openssl 1.1.1 PR: 231970 Added: head/irc/irssi/files/patch-configure.ac (contents, props changed) Modified: head/irc/irssi/Makefile Modified: head/irc/irssi/Makefile ============================================================================== --- head/irc/irssi/Makefile Sun Oct 14 16:23:09 2018 (r482050) +++ head/irc/irssi/Makefile Sun Oct 14 16:24:07 2018 (r482051) @@ -12,7 +12,7 @@ COMMENT= Modular IRC client with many features LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= cpe gettext-runtime gmake libtool ncurses pkgconfig tar:xz +USES= autoreconf cpe gettext-runtime gmake gnome libtool ncurses pkgconfig tar:xz GNU_CONFIGURE= yes INSTALL_TARGET= install-strip USE_GNOME= glib20 @@ -47,11 +47,9 @@ post-patch: @${REINPLACE_CMD} -e 's|/usr|${PREFIX}|' -e 's|/etc|${PREFIX}&|' \ ${WRKSRC}/docs/irssi.1 -post-configure: - @${MV} ${WRKSRC}/irssi.conf ${WRKSRC}/irssi.conf.sample - post-install: @${MKDIR} ${STAGEDIR}${PREFIX}/lib/irssi/modules + @${MV} ${STAGEDIR}${PREFIX}/etc/irssi.conf ${STAGEDIR}${PREFIX}/etc/irssi.conf.sample post-install-PERL-on: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Irssi/Irssi.so Added: head/irc/irssi/files/patch-configure.ac ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/irc/irssi/files/patch-configure.ac Sun Oct 14 16:24:07 2018 (r482051) @@ -0,0 +1,15 @@ +--- configure.ac.orig 2018-10-06 15:40:00 UTC ++++ configure.ac +@@ -307,7 +307,11 @@ PKG_CHECK_MODULES([OPENSSL], [openssl], + AC_CHECK_LIB([ssl], [SSL_library_init], [ + LIBS="$LIBS -lssl -lcrypto" + ], [ ++ AC_CHECK_LIB([ssl], [OPENSSL_init_ssl], [ ++ LIBS="$LIBS -lssl -lcrypto" ++ ], [ ++ AC_MSG_ERROR([The OpenSSL library was not found]) ++ ]) +- AC_MSG_ERROR([The OpenSSL library was not found]) + ]) + ]) +