1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-16 07:58:04 +00:00
freebsd-ports/devel/ocaml-opam/Makefile
John Marino 840b84bc3d devel/ocaml-opam: Update 1.1.0 -> 1.1.1 and unbreak
Updating to the latest point version did not fix the problems.  The
first is that now the built tool ocp-build requires TERM to be set in
the environment, otherwise it returns non-zero result with an error
message (hidden by /dev/null in first instance) and breaks the build.

Later the build failed the FS because it was saving preferences at $HOME.
Adding -no-user-prefs switch to the command seems to suppress that.

Finally, the GNU makefile is not jobs safe, so indicate that.  The GNU
makefile does not participate much in the overall build.
2014-03-27 19:19:01 +00:00

26 lines
455 B
Makefile

# Created by: J. Giovannangeli
# $FreeBSD$
PORTNAME= opam
PORTVERSION= 1.1.1
CATEGORIES= devel
MASTER_SITES= http://www.ocamlpro.com/pub/
PKGNAMEPREFIX= ocaml-
DISTNAME= opam-full-${PORTVERSION}
MAINTAINER= joris@giovannangeli.fr
COMMENT= Source-based package manager for OCaml
LICENSE= GPLv3
BUILD_DEPENDS= curl:${PORTSDIR}/ftp/curl
USES= gmake
USE_OCAML= yes
GNU_CONFIGURE= yes
MAKE_ENV+= TERM=xterm
MAKE_JOBS_UNSAFE= yes
.include <bsd.port.mk>