Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 4 Jun 2013 21:00:21 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r319903 - head/mail/mutt14
Message-ID:  <201306042100.r54L0L3g069994@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306042100.r54L0L3g069994>