Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 28 Apr 2013 22:16:02 +0000 (UTC)
From:      Beech Rintoul <beech@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r316761 - head/comms/spandsp-devel
Message-ID:  <201304282216.r3SMG2WD096000@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: beech
Date: Sun Apr 28 22:16:02 2013
New Revision: 316761
URL: http://svnweb.freebsd.org/changeset/ports/316761

Log:
  - Safe with NOPORTDOCS=yes
  
  PR:		ports/177003
  Submitted by:	nemysis <nemysis@gmx.ch> (maintainer)

Modified:
  head/comms/spandsp-devel/Makefile

Modified: head/comms/spandsp-devel/Makefile
==============================================================================
--- head/comms/spandsp-devel/Makefile	Sun Apr 28 22:11:47 2013	(r316760)
+++ head/comms/spandsp-devel/Makefile	Sun Apr 28 22:16:02 2013	(r316761)
@@ -2,6 +2,7 @@
 
 PORTNAME=	spandsp
 DISTVERSION=	0.0.6pre21
+PORTREVISION=	1
 CATEGORIES=	comms
 MASTER_SITES=	http://www.soft-switch.org/downloads/spandsp/
 PKGNAMESUFFIX=	-devel
@@ -28,20 +29,21 @@ CONFLICTS=	spandsp-[0-9]*
 
 OPTIONS_DEFINE=	DOXYGEN
 
+PORTDOCS=	*
+
 .include <bsd.port.options.mk>
 
-.if ${PORT_OPTIONS:MDOXYGEN}
+.if ${PORT_OPTIONS:MDOXYGEN} && ${PORT_OPTIONS:MDOCS}
 CONFIGURE_ARGS+=--enable-doc
 BUILD_DEPENDS+=	doxygen:${PORTSDIR}/devel/doxygen \
 		docbook-xsl>=0:${PORTSDIR}/textproc/docbook-xsl
 USE_GNOME+=	libxslt
-PORTDOCS=	*
 .else
 CONFIGURE_ARGS+=--disable-doc
 .endif
 
 post-install:
-.if ${PORT_OPTIONS:MDOXYGEN}
+.if ${PORT_OPTIONS:MDOXYGEN} && ${PORT_OPTIONS:MDOCS}
 	${MKDIR} ${DOCSDIR}
 	(cd ${WRKSRC}/doc && \
 		${COPYTREE_SHARE} \* ${DOCSDIR} "-type d -or -mindepth 1")



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