From owner-svn-ports-head@freebsd.org Thu Jul 6 02:21:24 2017 Return-Path: Delivered-To: svn-ports-head@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 74886D9AADA; Thu, 6 Jul 2017 02:21:24 +0000 (UTC) (envelope-from ultima@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 mx1.freebsd.org (Postfix) with ESMTPS id 40B617B5D9; Thu, 6 Jul 2017 02:21:24 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v662LNRm037674; Thu, 6 Jul 2017 02:21:23 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v662LNM1037673; Thu, 6 Jul 2017 02:21:23 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201707060221.v662LNM1037673@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Thu, 6 Jul 2017 02:21:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r445123 - in head/net-mgmt/ccnet-client: . files X-SVN-Group: ports-head X-SVN-Commit-Author: ultima X-SVN-Commit-Paths: in head/net-mgmt/ccnet-client: . files X-SVN-Commit-Revision: 445123 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.23 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: Thu, 06 Jul 2017 02:21:24 -0000 Author: ultima Date: Thu Jul 6 02:21:23 2017 New Revision: 445123 URL: https://svnweb.freebsd.org/changeset/ports/445123 Log: * Add patch to fix build for libressl * Removed --enable-ldap, not a valid configure arg PR: 219605 Submitted by: Jens K. Loewe Reviewed by: lifanov (mentor) Approved by: lifanov (mentor) Differential Revision: https://reviews.freebsd.org/D11453 Added: head/net-mgmt/ccnet-client/files/patch-lib_rsa.c (contents, props changed) Modified: head/net-mgmt/ccnet-client/Makefile Modified: head/net-mgmt/ccnet-client/Makefile ============================================================================== --- head/net-mgmt/ccnet-client/Makefile Thu Jul 6 01:53:11 2017 (r445122) +++ head/net-mgmt/ccnet-client/Makefile Thu Jul 6 02:21:23 2017 (r445123) @@ -3,6 +3,7 @@ PORTNAME= ccnet-client PORTVERSION= ${SEAFILE_CLIENT_VER} DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= net-mgmt devel MAINTAINER= ultima@FreeBSD.org @@ -21,19 +22,17 @@ LIB_DEPENDS= libsearpc.so:devel/libsearpc \ CONFLICTS= ccnet-server-[0-9]* -USE_GITHUB= yes -GH_ACCOUNT= haiwen -GH_PROJECT= ccnet - USES= autoreconf gettext libtool localbase pathfix pkgconfig \ python:-2.7 ssl USE_GNOME= glib20 USE_LDCONFIG= yes USE_OPENLDAP= yes +USE_GITHUB= yes +GH_ACCOUNT= haiwen +GH_PROJECT= ccnet CONFIGURE_ENV= SSL_CFLAGS="${OPENSSLINC}" SSL_LIBS="-L${OPENSSLLIB} -lssl -lcrypto" GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --enable-ldap INSTALL_TARGET= install-strip .include "${.CURDIR}/../seafile-client/Makefile.include" Added: head/net-mgmt/ccnet-client/files/patch-lib_rsa.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/ccnet-client/files/patch-lib_rsa.c Thu Jul 6 02:21:23 2017 (r445123) @@ -0,0 +1,11 @@ +--- lib/rsa.c.orig 2017-07-02 22:29:20 UTC ++++ lib/rsa.c +@@ -13,7 +13,7 @@ + + /* Forward compatibility functions if libssl < 1.1.0. */ + +-#if OPENSSL_VERSION_NUMBER < 0x10100000L ++#if OPENSSL_VERSION_NUMBER < 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER) + + int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d) + {