52e6ffc07b
New features Added support for parsing Python code. Special comment blocks in Python are of the ## # Some comment # or you can rely on Python docstrings. This code uses the new parser interface and was based on the work done by a group of students as part of a compiler design project. Added support for C# style XML tags in the comments. See the manual or the C# language specification for more details. Thanks to Talin for doing most of the work. Added support for the JavaDoc command {@inheritDoc}. And some bug fixes. For details see: http://www.stack.nl/~dimitri/doxygen/changelog.html
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.35 2005/08/03 21:41:30 recht Exp $
|
|
|
|
DISTNAME= doxygen-1.4.4.src
|
|
PKGNAME= doxygen-1.4.4
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://ftp.stack.nl/pub/users/dimitri/
|
|
|
|
MAINTAINER= recht@NetBSD.org
|
|
HOMEPAGE= http://www.doxygen.org/
|
|
COMMENT= Documentation system for C++, Java, IDL and C
|
|
|
|
DEPENDS+= teTeX-[0-9]*:../../print/teTeX
|
|
|
|
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
|
|
USE_TOOLS+= gmake perl flex
|
|
USE_LANGUAGES= c c++
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --make ${GMAKE}
|
|
CONFIGURE_ARGS+= --perl ${PERL5}
|
|
CONFIGURE_ARGS+= --install ${INSTALL}
|
|
CONFIGURE_ARGS+= --dot ${PREFIX}/bin/dot
|
|
CONFIGURE_ARGS+= --prefix ${PREFIX}
|
|
CONFIGURE_ARGS+= --docdir ${PREFIX}/share/doc
|
|
MAKE_ENV+= PKGSRC_CFLAGS="${CFLAGS}"
|
|
|
|
SUBST_CLASSES+= pybin
|
|
SUBST_STAGE.pybin= pre-configure
|
|
SUBST_FILES.pybin= doc/Makefile.in
|
|
SUBST_SED.pybin= -e "s|@PYTHONBIN@|${PYTHONBIN}|g"
|
|
|
|
post-patch:
|
|
${TOUCH} ${WRKSRC}/src/doxytag.l
|
|
|
|
post-install:
|
|
cd ${WRKSRC} && ${GMAKE} install_docs
|
|
|
|
.include "../../graphics/graphviz/buildlink3.mk"
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../mk/ghostscript.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|