Date: Fri, 16 Feb 2007 18:33:01 +0800 (CST) From: Rong-En Fan <rafan@FreeBSD.org> To: FreeBSD-gnats-submit@FreeBSD.org Cc: mwisnicki+freebsd@gmail.com Subject: ports/109222: [PATCH] devel/doxygen: respect NOPORTDOCS Message-ID: <200702161033.l1GAX1Dg048045@svm.csie.ntu.edu.tw> Resent-Message-ID: <200702161040.l1GAe5V2017769@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 109222 >Category: ports >Synopsis: [PATCH] devel/doxygen: respect NOPORTDOCS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Feb 16 10:40:05 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Rong-En Fan >Release: FreeBSD 6.2-PRERELEASE amd64 >Organization: NTU CSIE >Environment: >Description: - When NOPORTDOCS is defined, pdf documents are still built. One can s/HAVE_LATEX/WITHOUT_LATEX/. But I follow the same logic used in post-install section, i.e. WITHOUT_LATEX is checked only if we are going to install additional documents. Port maintainer (mwisnicki+freebsd@gmail.com) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- doxygen-1.4.7.patch begins here --- Index: Makefile =================================================================== RCS file: /big/freebsd-cvsup/ncvs/ports/devel/doxygen/Makefile,v retrieving revision 1.55 diff -u -u -r1.55 Makefile --- Makefile 13 Feb 2007 00:16:19 -0000 1.55 +++ Makefile 16 Feb 2007 10:30:55 -0000 @@ -27,9 +27,6 @@ ALL_TARGET+= docs BUILD_DEPENDS+= python:${PORTSDIR}/lang/python # XXX: Replace with USE_PYTHON_BUILD BUILD_DEPENDS+= dot:${PORTSDIR}/graphics/graphviz -.else -.undef HAVE_LATEX -.endif # !defined(NOPORTDOCS) .if !defined(WITHOUT_LATEX) ALL_TARGET+= pdf @@ -42,6 +39,7 @@ .else # !defined(WITHOUT_LATEX) PLIST_SUB+= HAVE_LATEX="@comment " .endif # !defined(WITHOUT_LATEX) +.endif # !defined(NOPORTDOCS) .if !defined(WITHOUT_DOXYWIZARD) USE_QT_VER= 3 --- doxygen-1.4.7.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200702161033.l1GAX1Dg048045>