Date: Mon, 20 Mar 2006 19:50:22 GMT From: Udo Schweigert <Udo.Schweigert@siemens.com> To: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/94745: [mail/mutt-devel] Add a gpgme switch Message-ID: <200603201950.k2KJoM1s021748@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/94745; it has been noted by GNATS. From: Udo Schweigert <Udo.Schweigert@siemens.com> To: bug-followup@FreeBSD.org, edwin@FreeBSD.org Cc: Udo Schweigert <Udo.Schweigert@siemens.com> Subject: Re: ports/94745: [mail/mutt-devel] Add a gpgme switch Date: Mon, 20 Mar 2006 20:45:12 +0100 Please commit this patch: diff -ru /usr/ports/mail/mutt-devel/Makefile ./Makefile --- /usr/ports/mail/mutt-devel/Makefile Sat Mar 18 06:07:30 2006 +++ ./Makefile Mon Mar 20 20:02:55 2006 @@ -45,6 +45,9 @@ # If you want mutt to use the idn library define: # WITH_MUTT_IDN # +# If you want to make use of the gpgme interface define: +# WITH_MUTT_GPGME +# # If you want to enable extended quoting functions define: # WITH_MUTT_QUOTE_PATCH # This is a default knob and can be disabled by WITHOUT_MUTT_QUOTE_PATCH @@ -297,6 +300,9 @@ .if defined(WITH_MUTT_IDN) LIB_DEPENDS+= idn:${PORTSDIR}/dns/libidn .endif +.if defined(WITH_MUTT_GPGME) +LIB_DEPENDS+= gpgme:${PORTSDIR}/security/gpgme +.endif .if ! defined(WITHOUT_MUTT_SMIME_OUTLOOK_COMPAT) post-patch:: @${PATCH} ${PATCH_ARGS} < ${PATCHDIR}/extra-patch-smime-outlook @@ -362,6 +368,11 @@ CONFIGURE_ARGS+= --with-idn .else CONFIGURE_ARGS+= --without-idn +.endif +.if defined(WITH_MUTT_GPGME) +CONFIGURE_ARGS+= --enable-gpgme +.else +CONFIGURE_ARGS+= --disable-gpgme .endif PATCH_DIST_STRIP= -p1
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200603201950.k2KJoM1s021748>