Date: Fri, 18 May 2018 13:07:23 +0000 (UTC) From: =?UTF-8?Q?Fernando_Apestegu=c3=ada?= <fernape@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r470289 - head/deskutils/note Message-ID: <201805181307.w4ID7NAm056778@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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' \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805181307.w4ID7NAm056778>