1415aa2a24
a new patch to include a -pkgsrc-runtime compilation option. This option is needed to compile devel/pcre-ocaml due to buildlink shenanigans (see http://mail-index.netbsd.org/pkgsrc-users/2014/12/18/msg020800.html ) Changes: (Changes that can break existing programs are marked with a "*") Standard library: * Add optional argument ?limit to Arg.align. - Bug in Makefile.nt: won't stop on error - Improve MSVC build - Configure doesn't detect features correctly on Haiku - Non-exhaustive matching warning message for open types is confusing - fix quadratic-time algorithm in Consistbl.extract. - Add stack overflow handling for native code (OpenBSD i386 and amd64) - broken semantics of %(%) when substitued by a box - legacy support for %.10s - better documentation of flag # in format strings - Bytes and CamlinternalFormat missing from threads stdlib.cma - -dsource omits parens for `List ((`String "A")::[]) in patterns - __MODULE__ aborts the compiler if the module name cannot be inferred - Debug section is sometimes not readable when using -pack - Missing command line options for ocamldoc - fix race condition when retrieving backtraces - String.sub throws Invalid_argument("Bytes.sub") - Fix ocamldebug module source lookup - Inclusion of packs failing to run module initializers - infinite loop in Mtype.remove_aliases - compilation fails with Env.Error(_) - -short-paths and signature inclusion errors - Fatal error with recursive modules - Recursive module containing alias causes Segmentation fault - Some bugs in generative functors - ocamldep support for "-open M" - Code generation errors for ARM - Improve Windows (MSVC and mingw) build - ocamlbuild: add -bin-annot when using -pack - Fatal error when tracing a function with abstract type - ocamlbuild: add an -ocamlmklib option to change the ocamlmklib command
55 lines
1.5 KiB
Text
55 lines
1.5 KiB
Text
# $NetBSD: Makefile.common,v 1.40 2015/01/20 14:12:25 jaapb Exp $
|
|
|
|
# used by x11/labltk/Makefile
|
|
# used by x11/ocaml-graphics/Makefile
|
|
DISTNAME= ocaml-4.02.1
|
|
CATEGORIES= lang
|
|
MASTER_SITES= http://caml.inria.fr/pub/distrib/ocaml-4.02/
|
|
#EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= jaapb@NetBSD.org
|
|
HOMEPAGE= http://caml.inria.fr/ocaml/
|
|
COMMENT= The latest implementation of the Caml dialect of ML
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
USE_TOOLS+= gmake
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ENV+= BDB_LIBS=${BDB_LINK:Q}
|
|
CONFIGURE_ENV+= BDB_BUILTIN=${USE_BUILTIN.${BDB_TYPE}:Q}
|
|
CONFIGURE_ARGS+= -prefix ${PREFIX}
|
|
CONFIGURE_ARGS+= -libs ${LDFLAGS:Q}
|
|
CONFIGURE_ARGS+= -with-pthread
|
|
CONFIGURE_ARGS+= -host ${MACHINE_GNU_PLATFORM:Q}
|
|
CONFIGURE_ARGS+= -mandir ${PREFIX}/${PKGMANDIR}
|
|
CPPFLAGS+= -DDB_DBM_HSEARCH
|
|
|
|
INSTALL_MAKE_FLAGS+= PREFIX=${PREFIX} \
|
|
MANDIR=${PREFIX}/${PKGMANDIR}
|
|
DISTINFO_FILE= ${.CURDIR}/../../lang/ocaml/distinfo
|
|
PATCHDIR= ${.CURDIR}/../../lang/ocaml/patches
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} == "Darwin" || ${OPSYS} == "Linux"
|
|
INSTALL_UNSTRIPPED= yes
|
|
.endif
|
|
|
|
.include "../../mk/bdb.buildlink3.mk"
|
|
|
|
BDB_LINK= ${BDB_LIBS}
|
|
.if empty(BDBBASE:M/usr)
|
|
BDB_LINK+= -L${BDBBASE}/lib ${COMPILER_RPATH_FLAG}${BDBBASE}/lib
|
|
.endif
|
|
|
|
post-extract: cp-power-bsd cp-gnu-config
|
|
|
|
.PHONY: cp-power-bsd
|
|
cp-power-bsd:
|
|
${CP} ${WRKSRC}/asmrun/power-elf.S ${WRKSRC}/asmrun/power-bsd.S
|
|
|
|
.PHONY: cp-gnu-config
|
|
cp-gnu-config:
|
|
${CP} ${PKGSRCDIR}/mk/gnu-config/config.guess ${WRKSRC}/config/gnu/
|
|
${CP} ${PKGSRCDIR}/mk/gnu-config/config.sub ${WRKSRC}/config/gnu/
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|