From owner-svn-ports-all@freebsd.org Sat Oct 20 05:41:39 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 19C13FF8C40; Sat, 20 Oct 2018 05:41:39 +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 C3B2A7F6DD; Sat, 20 Oct 2018 05:41:38 +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 BEA7719F9D; Sat, 20 Oct 2018 05:41:38 +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 w9K5fcsn029455; Sat, 20 Oct 2018 05:41:38 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9K5fcIj029453; Sat, 20 Oct 2018 05:41:38 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201810200541.w9K5fcIj029453@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 20 Oct 2018 05:41:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r482467 - in branches/2018Q4/irc/irssi: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in branches/2018Q4/irc/irssi: . files X-SVN-Commit-Revision: 482467 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 05:41:39 -0000 Author: antoine Date: Sat Oct 20 05:41:38 2018 New Revision: 482467 URL: https://svnweb.freebsd.org/changeset/ports/482467 Log: MFH: r482051 Fix configure with openssl 1.1.1 PR: 231970 Added: branches/2018Q4/irc/irssi/files/patch-configure.ac - copied unchanged from r482051, head/irc/irssi/files/patch-configure.ac Modified: branches/2018Q4/irc/irssi/Makefile Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/irc/irssi/Makefile ============================================================================== --- branches/2018Q4/irc/irssi/Makefile Sat Oct 20 05:40:29 2018 (r482466) +++ branches/2018Q4/irc/irssi/Makefile Sat Oct 20 05:41:38 2018 (r482467) @@ -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 Copied: branches/2018Q4/irc/irssi/files/patch-configure.ac (from r482051, head/irc/irssi/files/patch-configure.ac) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q4/irc/irssi/files/patch-configure.ac Sat Oct 20 05:41:38 2018 (r482467, copy of r482051, head/irc/irssi/files/patch-configure.ac) @@ -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]) + ]) + ]) +