summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2008-12-06 12:25:19 +0000
committerwiz <wiz@pkgsrc.org>2008-12-06 12:25:19 +0000
commit38777576ceba2d7f625ff3c63e3eabed4062047b (patch)
tree9c7aef5c4a36322996c8013320e4fcb6a08bcafa /devel
parentc5055939d4b03d8088bf876302bdbb360f469643 (diff)
downloadpkgsrc-38777576ceba2d7f625ff3c63e3eabed4062047b.tar.gz
Fix case-sensitivity problem on Darwin.
From Tom Yu in PR 40100.
Diffstat (limited to 'devel')
-rw-r--r--devel/doxygen/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/devel/doxygen/Makefile b/devel/doxygen/Makefile
index c8bcc2603f2..d0bd2836649 100644
--- a/devel/doxygen/Makefile
+++ b/devel/doxygen/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.64 2008/11/11 00:44:12 wiz Exp $
+# $NetBSD: Makefile,v 1.65 2008/12/06 12:25:19 wiz Exp $
DISTNAME= doxygen-1.5.7.1.src
PKGNAME= ${DISTNAME:S/.src//}
@@ -29,12 +29,6 @@ MAKE_FLAGS+= MAN1DIR=${PKGMANDIR}/man1
PLIST_VARS+= ci cs
-.if exists(./descr)
-PLIST.ci= yes # case-insensitive
-.else
-PLIST.cs= yes # case-sensitive
-.endif
-
SUBST_CLASSES+= pybin
SUBST_STAGE.pybin= pre-configure
SUBST_FILES.pybin= doc/Makefile.in
@@ -50,6 +44,12 @@ INSTALL_TARGET= install install_docs
.include "../../mk/bsd.prefs.mk"
+.if ${OPSYS} == "Darwin"
+PLIST.ci= yes # case-insensitive
+.else
+PLIST.cs= yes # case-sensitive
+.endif
+
.if ${OPSYS} == "DragonFly"
CONFIGURE_ARGS+= -platform freebsd-g++
.endif