pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/doxygen Fix case-sensitivity problem on Darwin.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9a14555c9a7c
branches:  trunk
changeset: 551075:9a14555c9a7c
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Sat Dec 06 12:25:19 2008 +0000

description:
Fix case-sensitivity problem on Darwin.
>From Tom Yu in PR 40100.

diffstat:

 devel/doxygen/Makefile |  14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diffs (35 lines):

diff -r 5cb4a15934b2 -r 9a14555c9a7c devel/doxygen/Makefile
--- a/devel/doxygen/Makefile    Sat Dec 06 12:01:48 2008 +0000
+++ b/devel/doxygen/Makefile    Sat Dec 06 12:25:19 2008 +0000
@@ -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 @@
 
 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 @@
 
 .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



Home | Main Index | Thread Index | Old Index