svn commit: r316761 - head/comms/spandsp-devel
Beech Rintoul
beech at FreeBSD.org
Sun Apr 28 22:16:02 UTC 2013
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 at 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")
More information about the svn-ports-all
mailing list