blob: 008b14918309ae8e5f5f631f6944e4b7738c0fa0 (
plain)
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
|
# $NetBSD: Makefile,v 1.56 2018/10/24 21:11:54 leot Exp $
#
DISTNAME= ocamlnet-4.1.6
PKGREVISION= 3
CATEGORIES= net
MASTER_SITES= http://download.camlcity.org/download/
MAINTAINER= jaapb@NetBSD.org
HOMEPAGE= http://projects.camlcity.org/projects/ocamlnet.html
COMMENT= Library focusing on application-level network protocols (OCaml)
LICENSE= zlib AND gnu-gpl-v2
MAKE_JOBS_SAFE= no
HAS_CONFIGURE= yes
CONFIGURE_ARGS+= -without-nethttpd -disable-tcl -disable-apache \
-enable-pcre -enable-zip
USE_TOOLS+= gmake
BUILD_TARGET= all
OCAML_USE_FINDLIB= yes
OCAML_FINDLIB_DIRS= \
equeue netcamlbox netcgi2-plex netcgi2 netclient netmulticore \
netplex netshm netstring-pcre netstring netsys netunidata \
netzip rpc-auth-local rpc-generator rpc
.include "../../mk/ocaml.mk"
.include "../../mk/bsd.prefs.mk"
PLIST_VARS+= xti
.if ${OCAML_USE_OPT_COMPILER} == "yes"
BUILD_TARGET+= opt
.endif
.if ${OPSYS} == "SunOS"
PLIST.xti= yes
OCAML_FINDLIB_DIRS+= rpc-xti
.endif
.include "options.mk"
.include "../../devel/pcre-ocaml/buildlink3.mk"
.include "../../archivers/ocaml-zip/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|