Summary: | [PATCH] mail/mutt14: optionsNG conversion; fix IMAP format string | ||
---|---|---|---|
Product: | Ports & Packages | Reporter: | Matthias Andree <mandree> |
Component: | Individual Port(s) | Assignee: | Jason Helfman <jgh> |
Status: | Closed FIXED | ||
Severity: | Affects Only Me | CC: | Udo.Schweigert |
Priority: | Normal | ||
Version: | Latest | ||
Hardware: | Any | ||
OS: | Any |
Description
Matthias Andree
2013-06-04 00:10:00 UTC
Responsible Changed From-To: freebsd-ports-bugs->jgh jgh@ wants this port PRs (via the GNATS Auto Assign Tool) State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool) Maintainer of mail/mutt14, Please note that PR ports/179281 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/179281 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org Author: bapt Date: Tue Jun 4 21:00:21 2013 New Revision: 319903 URL: http://svnweb.freebsd.org/changeset/ports/319903 Log: Exclude SGML_DOCS properly in case arch is alpha and in case MUTT_LITE is defined PR: ports/179281 Submitted by: mandree Modified: head/mail/mutt14/Makefile Modified: head/mail/mutt14/Makefile ============================================================================== --- head/mail/mutt14/Makefile Tue Jun 4 20:00:06 2013 (r319902) +++ head/mail/mutt14/Makefile Tue Jun 4 21:00:21 2013 (r319903) @@ -34,6 +34,14 @@ MUTT_ICONV_DESC= mutt iconv USE_OPENSSL= yes +.if defined (MUTT_LITE) +PKGNAMESUFFIX= -lite +OPTIONS_EXCLUDE= SGML_DOCS +.elif ${ARCH} == "alpha" +# coredump in sgmls +OPTIONS_EXCLUDE= SGML_DOCS +.endif + .include <bsd.port.options.mk> RUN_DEPENDS= ${LOCALBASE}/etc/mime.types:${PORTSDIR}/misc/mime-support @@ -44,14 +52,6 @@ RUN_DEPENDS+= ispell:${PORTSDIR}/textpro urlview:${PORTSDIR}/textproc/urlview .endif -.if defined (MUTT_LITE) -PKGNAMESUFFIX= -lite -WITH_SGML_DOCS:=no -.elif ${ARCH} == "alpha" -# coredump in sgmls -WITH_SGML_DOCS:=no -.endif - .if ${PORT_OPTIONS:MNLS} USES+= gettext iconv .if ! ${PORT_OPTIONS:MMUTT_ICONV} _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" Responsible Changed From-To: jgh->bapt over for follow-up State Changed From-To: feedback->closed already committed Tue Jun 4 21:00:21 2013. Responsible Changed From-To: bapt->jgh |