diff options
author | minskim <minskim@pkgsrc.org> | 2006-04-13 20:05:40 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2006-04-13 20:05:40 +0000 |
commit | c515f728c8d4c51c9108bfe5be03d7e262df0d04 (patch) | |
tree | d176c98538c3df1c8352045eb76041c0cd6f181b /devel | |
parent | 236d51496560414385606e98072b5026186593f8 (diff) | |
download | pkgsrc-c515f728c8d4c51c9108bfe5be03d7e262df0d04.tar.gz |
Make this package build on a case-insensitive filesystem.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/doxygen/Makefile | 8 | ||||
-rw-r--r-- | devel/doxygen/PLIST | 14 |
2 files changed, 16 insertions, 6 deletions
diff --git a/devel/doxygen/Makefile b/devel/doxygen/Makefile index 3f2094a941a..55561043b6a 100644 --- a/devel/doxygen/Makefile +++ b/devel/doxygen/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.44 2006/02/05 23:08:41 joerg Exp $ +# $NetBSD: Makefile,v 1.45 2006/04/13 20:05:40 minskim Exp $ DISTNAME= doxygen-1.4.5.src PKGNAME= doxygen-1.4.5 @@ -23,6 +23,12 @@ CONFIGURE_ARGS+= --prefix ${PREFIX} CONFIGURE_ARGS+= --docdir ${PREFIX}/share/doc MAKE_ENV+= PKGSRC_CFLAGS=${CFLAGS:M*:Q} +.if exists(./descr) +PLIST_SUBST+= CASESENSITIVE="@comment " CASEINSENSITIVE="" +.else +PLIST_SUBST+= CASESENSITIVE="" CASEINSENSITIVE="@comment " +.endif + SUBST_CLASSES+= pybin SUBST_STAGE.pybin= pre-configure SUBST_FILES.pybin= doc/Makefile.in diff --git a/devel/doxygen/PLIST b/devel/doxygen/PLIST index 501969a764c..a6087088ca2 100644 --- a/devel/doxygen/PLIST +++ b/devel/doxygen/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.11 2005/10/08 08:17:27 adam Exp $ +@comment $NetBSD: PLIST,v 1.12 2006/04/13 20:05:40 minskim Exp $ bin/doxygen bin/doxytag man/man1/doxygen.1 @@ -191,8 +191,10 @@ share/doc/doxygen/examples/diagrams_e.h share/doc/doxygen/examples/docstring.cfg share/doc/doxygen/examples/docstring.py share/doc/doxygen/examples/docstring/html/annotated.html -share/doc/doxygen/examples/docstring/html/classdocstring_1_1PyClass-members.html -share/doc/doxygen/examples/docstring/html/classdocstring_1_1PyClass.html +${CASESENSITIVE}share/doc/doxygen/examples/docstring/html/classdocstring_1_1PyClass-members.html +${CASEINSENSITIVE}share/doc/doxygen/examples/docstring/html/classdocstring_1_1_py_class-members.html +${CASESENSITIVE}share/doc/doxygen/examples/docstring/html/classdocstring_1_1PyClass.html +${CASEINSENSITIVE}share/doc/doxygen/examples/docstring/html/classdocstring_1_1_py_class.html share/doc/doxygen/examples/docstring/html/doxygen.css share/doc/doxygen/examples/docstring/html/doxygen.png share/doc/doxygen/examples/docstring/html/functions.html @@ -386,8 +388,10 @@ share/doc/doxygen/examples/par/html/tabs.css share/doc/doxygen/examples/pyexample.cfg share/doc/doxygen/examples/pyexample.py share/doc/doxygen/examples/pyexample/html/annotated.html -share/doc/doxygen/examples/pyexample/html/classpyexample_1_1PyClass-members.html -share/doc/doxygen/examples/pyexample/html/classpyexample_1_1PyClass.html +${CASESENSITIVE}share/doc/doxygen/examples/pyexample/html/classpyexample_1_1PyClass-members.html +${CASEINSENSITIVE}share/doc/doxygen/examples/pyexample/html/classpyexample_1_1_py_class-members.html +${CASESENSITIVE}share/doc/doxygen/examples/pyexample/html/classpyexample_1_1PyClass.html +${CASEINSENSITIVE}share/doc/doxygen/examples/pyexample/html/classpyexample_1_1_py_class.html share/doc/doxygen/examples/pyexample/html/doxygen.css share/doc/doxygen/examples/pyexample/html/doxygen.png share/doc/doxygen/examples/pyexample/html/functions.html |