From owner-svn-ports-all@freebsd.org Fri May 18 13:07:23 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 C795CEF4A32; Fri, 18 May 2018 13:07:23 +0000 (UTC) (envelope-from fernape@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 7600074F24; Fri, 18 May 2018 13:07:23 +0000 (UTC) (envelope-from fernape@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 553D3187B6; Fri, 18 May 2018 13:07:23 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4ID7NMu056779; Fri, 18 May 2018 13:07:23 GMT (envelope-from fernape@FreeBSD.org) Received: (from fernape@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4ID7NAm056778; Fri, 18 May 2018 13:07:23 GMT (envelope-from fernape@FreeBSD.org) Message-Id: <201805181307.w4ID7NAm056778@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fernape set sender to fernape@FreeBSD.org using -f From: =?UTF-8?Q?Fernando_Apestegu=c3=ada?= Date: Fri, 18 May 2018 13:07:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r470289 - head/deskutils/note X-SVN-Group: ports-head X-SVN-Commit-Author: fernape X-SVN-Commit-Paths: head/deskutils/note X-SVN-Commit-Revision: 470289 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.26 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: Fri, 18 May 2018 13:07:24 -0000 Author: fernape Date: Fri May 18 13:07:22 2018 New Revision: 470289 URL: https://svnweb.freebsd.org/changeset/ports/470289 Log: Fix deskutils/note dependencies for crypto options PR: 228208 Submitted by: lebarondemerde@privacychain.ch (maintainer) Approved by: tcberner (mentor) MFH: 2014Q2 Differential Revision: https://reviews.freebsd.org/D15457 Modified: head/deskutils/note/Makefile Modified: head/deskutils/note/Makefile ============================================================================== --- head/deskutils/note/Makefile Fri May 18 12:27:43 2018 (r470288) +++ head/deskutils/note/Makefile Fri May 18 13:07:22 2018 (r470289) @@ -2,6 +2,7 @@ PORTNAME= note DISTVERSION= 1.3.22 +PORTREVISION= 1 CATEGORIES= deskutils perl5 MASTER_SITES= http://www.daemon.de/idisk/Apps/note/ @@ -33,13 +34,16 @@ CRYPTO_RUN_DEPENDS= p5-Crypt-CBC>0:security/p5-Crypt-C p5-Crypt-Rijndael>0:security/p5-Crypt-Rijndael BLOWFISH_DESC= BlowFish block cipher support -BLOWFISH_RUN_DEPENDS= p5-Crypt-Blowfish>0:security/p5-Crypt-Blowfish +BLOWFISH_RUN_DEPENDS= p5-Crypt-Blowfish>0:security/p5-Crypt-Blowfish \ + ${CRYPTO_RUN_DEPENDS} DES_DESC= DES block cipher support -DES_RUN_DEPENDS= p5-Crypt-DES>0:security/p5-Crypt-DES +DES_RUN_DEPENDS= p5-Crypt-DES>0:security/p5-Crypt-DES \ + ${CRYPTO_RUN_DEPENDS} IDEA_DESC= IDEA block cipher support -IDEA_RUN_DEPENDS= p5-Crypt-IDEA>0:security/p5-Crypt-IDEA +IDEA_RUN_DEPENDS= p5-Crypt-IDEA>0:security/p5-Crypt-IDEA \ + ${CRYPTO_RUN_DEPENDS} post-patch: @${REINPLACE_CMD} -e 's|{{(|{\\{(|g' \