aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/sml-fxp/Makefile
blob: d6e32d8f2468ece5d033c5c16b7e99858068c33e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# New ports collection makefile for:   sml-fxp
# Date created:        16 Sep 2007
# Whom:                Timothy Bourke <timbob@bigpond.com>
#
# $FreeBSD$
#

PORTNAME=   sml-fxp
PORTVERSION=    2.0
PORTREVISION=   1
CATEGORIES= textproc
MASTER_SITES=   http://www2.informatik.tu-muenchen.de/~berlea/Fxp/ \
        http://www.cse.unsw.edu.au/~tbourke/distfiles/
DISTNAME=   fxp-${PORTVERSION}

MAINTAINER= timbob@bigpond.com
COMMENT=    Validating XML parser with Standard ML interface

# DEVEL MLTON STABILIZATION  Result
#  Off   Off     Off         build apps with sml-nj (no stabilization)
#  On    Off     Off         build apps with sml-nj-devel (no stabilization)
#  Off   On      Off         build apps with mlton (no stabilization)
#  On    On      Off         as above
#  Off   Off     On          build apps and stabilize with sml-nj
#  On    Off     On          build apps and stabilize with sml-nj-devel
#  Off   On      On          apps with mlton, stabilize for sml-nj
#  On    On      On          apps with mlton, stabilize for sml-nj-devel
OPTIONS=    X11           "Build with X11 support"              on \
        STABILIZATION "Stabilize the libraries for SML/NJ." on \
        DEVEL         "Prefer the devel version of SML/NJ." on \
        MLTON         "Build executables with mlton."       off

.include <bsd.port.pre.mk>

.if !defined(WITHOUT_X11)
RUN_DEPENDS+=   xvcg:${PORTSDIR}/graphics/vcg
.endif

.if defined(WITH_STABILIZATION) || defined(WITHOUT_MLTON)
.if defined(WITH_DEVEL)
BUILD_DEPENDS+= smlnj-devel>=110.65:${PORTSDIR}/lang/sml-nj-devel

MAKE_ENV+=  SMLNJ_DEVEL=yes
.else
BUILD_DEPENDS+= smlnj>=0:${PORTSDIR}/lang/sml-nj
RUN_DEPENDS+=   smlnj>=0:${PORTSDIR}/lang/sml-nj

MAKE_ENV+=  SMLNJ=yes
.endif
.endif

.if defined(WITH_MLTON)
PLIST_SUB+= SML_EXEC="@comment " SML_EXEC_DEVEL="@comment "
.else
.if defined(WITH_DEVEL)
PLIST_SUB+= SML_EXEC="@comment " SML_EXEC_DEVEL=""
.else
PLIST_SUB+= SML_EXEC="" SML_EXEC_DEVEL="@comment "
.endif
.endif

.if defined(WITH_STABILIZATION)
MAKE_ENV+=  STABILIZE=yes

.if defined(WITH_DEVEL)
PLIST_SUB+= STABLE="@comment " STABLE_DEVEL=""
.else
PLIST_SUB+= STABLE="" STABLE_DEVEL="@comment "
.endif

.else
PLIST_SUB+= STABLE="@comment " STABLE_DEVEL="@comment "
.endif

.if defined(WITH_STABILIZATION) && defined(WITH_DEVEL)
RUN_DEPENDS+=   smlnj-devel>=110.65:${PORTSDIR}/lang/sml-nj-devel
.endif

.if defined(WITH_MLTON)
BUILD_DEPENDS+= mlton:${PORTSDIR}/lang/mlton
MAKE_ENV+=  MLTON_BUILD=yes
.endif

.if defined(WITHOUT_MLTON) && defined(WITHOUT_DEVEL)
MAKE_ENV+=  NO_HEAP2EXEC=yes
PLIST_SUB+= SML_EXEC=""
.else
PLIST_SUB+= SML_EXEC="@comment "
.endif

.if !defined(NOPORTDOCS)
INSTALL_TARGET=install install-doc
.endif

#
# Installation rationale and compromises
#
# * fxp applications are installed
#   sml-nj: script + heap file, sml-nj-devel/mlton: binary
#
# * fxp source code is installed
#   Making this optional would further complicate the port.
#   The porter currently believes that fxp is of primary interest to sml
#   developers. He is willing to consider otherwise.
#
# * source code for Apps is not installed
#   The Apps do not belong to the library proper (but they are useful as
#   examples).
#
# * a single cm library file is installed (if stabilization occurs)
#   for efficient operation of library consumers written in SML/NJ.
#   The other .cm file and directories would make recompilation faster,
#   but are otherwise unnecessary.
#
# Note: reinstallation of SML/NJ seems to require restabilisation of
#       libraries.
#

post-extract:
    @for f in $$(${LS} ${FILESDIR}/src-*); do           \
        e=$$(${ECHO} $$f|${SED} 's|^${FILESDIR}/\(.*\)|\1|; \
                     s|-|/|g');         \
        ${CP} $$f ${WRKSRC}/$$e;                \
    done

post-patch:
    @for f in $$(${LS} ${FILESDIR}/patch-*.sml); do               \
        e=$$(${ECHO} $$f|${SED} 's|^${FILESDIR}/patch-\(.*\).sml|\1|; \
                     s|-|/|g');               \
        ${MV} ${WRKSRC}/$$e.sml.orig ${WRKSRC}/$$e.orig.sml;          \
    done

.include <bsd.port.post.mk>