Fri Jun 27 13:19:27 2008 UTC ()
Treat DragonFly the same as other BSDs.
Patch provided by MAINTAINER Aleksej Saushev in PR 39054.


(obache)
diff -r1.34 -r1.35 pkgsrc/lang/chicken/Makefile

cvs diff -r1.34 -r1.35 pkgsrc/lang/chicken/Makefile (expand / switch to unified diff)

--- pkgsrc/lang/chicken/Makefile 2008/05/12 20:31:08 1.34
+++ pkgsrc/lang/chicken/Makefile 2008/06/27 13:19:27 1.35
@@ -1,40 +1,40 @@ @@ -1,40 +1,40 @@
1# $NetBSD: Makefile,v 1.34 2008/05/12 20:31:08 degroote Exp $ 1# $NetBSD: Makefile,v 1.35 2008/06/27 13:19:27 obache Exp $
2# 2#
3 3
4DISTNAME= chicken-3.2.0 4DISTNAME= chicken-3.2.0
5CATEGORIES= lang 5CATEGORIES= lang
6MASTER_SITES= http://chicken.wiki.br/releases/${PKGVERSION_NOREV}/ 6MASTER_SITES= http://chicken.wiki.br/releases/${PKGVERSION_NOREV}/
7 7
8MAINTAINER= asau@inbox.ru #, airhead@users.sourceforge.net 8MAINTAINER= asau@inbox.ru #, airhead@users.sourceforge.net
9HOMEPAGE= http://www.call-with-current-continuation.org/ 9HOMEPAGE= http://www.call-with-current-continuation.org/
10COMMENT= Scheme to C compiler, handling R5RS 10COMMENT= Scheme to C compiler, handling R5RS
11 11
12PKG_DESTDIR_SUPPORT= user-destdir 12PKG_DESTDIR_SUPPORT= user-destdir
13 13
14INFO_FILES= yes 14INFO_FILES= yes
15USE_LIBTOOL= yes 15USE_LIBTOOL= yes
16USE_TOOLS+= gmake makeinfo 16USE_TOOLS+= gmake makeinfo
17UNLIMIT_RESOURCES= datasize 17UNLIMIT_RESOURCES= datasize
18 18
19INSTALLATION_DIRS= share/chicken 19INSTALLATION_DIRS= share/chicken
20OWN_DIRS= ${PREFIX}/lib/chicken ${PREFIX}/lib/chicken/3 20OWN_DIRS= ${PREFIX}/lib/chicken ${PREFIX}/lib/chicken/3
21 21
22BUILD_TARGET= all chicken.info 22BUILD_TARGET= all chicken.info
23 23
24.include "../../mk/bsd.prefs.mk" 24.include "../../mk/bsd.prefs.mk"
25 25
26# PLATFORM detection: 26# PLATFORM detection:
27.if !empty(OPSYS:M*BSD) 27.if !empty(OPSYS:M*BSD) || ${OPSYS} == "DragonFly"
28PLATFORM= bsd 28PLATFORM= bsd
29.elif ${OPSYS} == "Linux" 29.elif ${OPSYS} == "Linux"
30PLATFORM= linux 30PLATFORM= linux
31.elif ${OPSYS} == "Darwin" 31.elif ${OPSYS} == "Darwin"
32PLATFORM= macosx 32PLATFORM= macosx
33.elif ${OPSYS} == "SunOS" 33.elif ${OPSYS} == "SunOS"
34PLATFORM= solaris 34PLATFORM= solaris
35.else 35.else
36#PLATFORM+= ${OPSYS} == "Interix" 36#PLATFORM+= ${OPSYS} == "Interix"
37# possible choices left: mingw-msys mingw cygwin cross-linux-mingw 37# possible choices left: mingw-msys mingw cygwin cross-linux-mingw
38PKG_FAIL_REASON= "${OPSYS} is not supported" 38PKG_FAIL_REASON= "${OPSYS} is not supported"
39.endif 39.endif
40 40