openbsd-ports/lang/ocaml/ocaml.port.mk
dcoppa 84c49d47a3 Update to ocaml-3.12.0
Maintainer timeout.

OK landry@, jasper@
2010-12-07 15:01:35 +00:00

48 lines
1.2 KiB
Makefile

# $OpenBSD: ocaml.port.mk,v 1.15 2010/12/07 15:01:35 dcoppa Exp $
# regular file usage for bytecode:
# PLIST -- bytecode base files
# PFRAG.foo -- bytecode files for FLAVOR == foo
# PFRAG.no-foo -- bytecode files for FLAVOR != foo
# extended file usage for nativecode:
# PFRAG.native -- nativecode base files
# PFRAG.foo-native -- nativecode files for FLAVOR == foo
# PFRAG.no-foo-native -- nativecode files for FLAVOR != foo
OCAML_VERSION=3.12.0
.if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "i386" || \
${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "amd64" || \
${MACHINE_ARCH} == "powerpc"
MODOCAML_NATIVE=Yes
# include nativecode base files
PKG_ARGS+=-Dnative=1
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
MODOCAML_NATDYNLINK=Yes
# include native dynlink base files
PKG_ARGS+=-Ddynlink=1
.else
MODOCAML_NATDYNLINK=No
# remove native dynlink base file entry from PLIST
PKG_ARGS+=-Ddynlink=0
.endif
.else
MODOCAML_NATIVE=No
RUN_DEPENDS+= lang/ocaml=${OCAML_VERSION}
# remove native base file entry from PLIST
PKG_ARGS+=-Dnative=0
.endif
BUILD_DEPENDS+= lang/ocaml=${OCAML_VERSION}
MAKE_ENV+= OCAMLFIND_DESTDIR=${DESTDIR}${PREFIX}/lib/ocaml/site-lib