blob: cfa0ed3d751c2daeeae9c0946002136b6727a728 (
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
|
# New ports collection makefile for: asdlgen
# Date created: 5 October 2007
# Whom: Johannes 5 Joemann <joemann@beefree.free.de>
#
# $FreeBSD$
#
PORTNAME= asdlgen
PORTVERSION= 2.0.b20060323
CATEGORIES= devel haskell java
MASTER_SITES= http://moby.cs.uchicago.edu/downloads/ \
ftp://mirror.free.de/http/moby.cs.uchicago.edu/downloads/
DISTFILES= asdlGen.tar.gz
MAINTAINER= joemann@beefree.free.de
COMMENT= Interoperable serializers for C,C++,Haskell,Icon,Java,ML
BUILD_DEPENDS= smlnj-devel>=110.65:${PORTSDIR}/lang/sml-nj-devel
.if !defined(NOPORTDOCS)
BUILD_DEPENDS+= sgmlfmt:${PORTSDIR}/textproc/sgmlformat
.endif
USE_DOS2UNIX= src/icon/libasdl.icn
OPTIONS= CII "Install libcii for use by generated C and C++ code" on \
EXAMPLES "Install the simple 'arithexp' usage example" off
.include <bsd.port.pre.mk>
.if defined(WITH_CII)
RUN_DEPENDS+= libcii>=1.1:${PORTSDIR}/devel/libcii
.endif
.if defined(WITH_EXAMPLES)
DEMOVERSION= 20071030
DEMOARCHIVE= asdlgen-demo.${DEMOVERSION}.tar.gz
DEMODIR= arithexp
MASTER_SITES+= ftp://offshore.free.de/pub/dist/FreeBSD/ports/devel/:demo
DISTFILES+= ${DEMOARCHIVE}:demo
PLIST_SUB+= EXAMPLES="" DEMODIR=${DEMODIR}
.else
PLIST_SUB+= EXAMPLES="@comment " DEMODIR=${DEMODIR}
.endif
WRKSRC= ${WRKDIR}/asdlGen
HAS_CONFIGURE= yes
CONFIGURE_ENV+= SMLNJ_DEVEL=yes
ALL_TARGET= build
MAKE_ENV+= SMLNJ_DEVEL=yes
# Nowadays Java package names must be all lowercase, says JDK1.5. Cf.
# http://java.sun.com/docs/books/tutorial/java/package/namingpkgs.html
pre-patch:
.for dir in StdPkl StdPrims StdTypes
cd ${WRKSRC}/src/java/asts && [ -d ${dir} ] && ${MV} ${dir} ${dir:L}
.endfor
post-build:
cd ${WRKSRC}/src/sml && heap2exec asdlGen.*-bsd asdlGen
.if !defined(NOPORTDOCS)
.for format in ascii html ps
@${MKDIR} ${WRKSRC}/doc-build/README
cd ${WRKSRC}/doc-build/README && \
sgmlfmt -f ${format} ${WRKSRC}/README.sgml
@${MKDIR} ${WRKSRC}/doc-build/manual
cd ${WRKSRC}/doc-build/manual && \
sgmlfmt -f ${format} ${WRKSRC}/src/doc/manual.sgml
.endfor
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/sml/asdlGen ${PREFIX}/bin
@${MKDIR} ${EXAMPLESDIR}
cd ${WRKSRC}/src/asdl/tests && ${COPYTREE_SHARE} \* ${EXAMPLESDIR}
${INSTALL_DATA} -p ${WRKSRC}/src/asdl/std-types.asdl ${EXAMPLESDIR}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_MAN} -p ${WRKSRC}/COPYRIGHT ${DOCSDIR}
cd ${WRKSRC}/doc-build && ${COPYTREE_SHARE} \* ${DOCSDIR}
.endif
.if defined(WITH_EXAMPLES)
cd ${WRKDIR}/${DEMODIR} && ${MAKE} clean
cd ${WRKDIR} && ${COPYTREE_SHARE} ${DEMODIR} ${EXAMPLESDIR}
.endif
# The following test-* targets are used for maintaining this port but
# might be interesting for users exploring different target languages.
.ifmake test-compile || test-demo
BUILD_DEPENDS+= libcii>=1.1:${PORTSDIR}/devel/libcii \
hugs:${PORTSDIR}/lang/hugs \
icont:${PORTSDIR}/lang/icon \
javac:${PORTSDIR}/java/diablo-jdk15 \
ocaml:${PORTSDIR}/lang/ocaml
.ifmake test-compile
# This target runs the generate+compile tests from the asdlGen distribution
# for all supported languages. The "Test" structure is defined in
# ${WRKSRC}/src/sml/test/harness.sml .
test-compile: depends clean-depends build
.if defined(WITH_CII)
cd ${WRKSRC}/src/sml && export SMLNJ_DEVEL=yes && \
${ECHO_CMD} "Test.do_it ();" | sml -m sources.cm
.else
@${ECHO_CMD} "You have to set the CII option (make config)"
@${ECHO_CMD} "before you can use the test-compile target."
@exit 1
.endif
.endif
.ifmake test-demo
test-demo: clean depends clean-depends build
.if defined(WITH_CII) && defined(WITH_EXAMPLES)
cd ${WRKDIR}/${DEMODIR} && ${MAKE} ASDLGEN=${WRKSRC}/src/sml/asdlGen
.else
@${ECHO_CMD} "You have to set the CII and EXAMPLES options"
@${ECHO_CMD} "(make config) before you can use the test-demo target."
@exit 1
.endif
.endif
.endif
.include <bsd.port.post.mk>
|