blob: 25410f4694ab052875acb26c1a498fd3e13b2b96 (
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
44
45
46
47
48
49
50
51
52
|
# $NetBSD: Makefile,v 1.8 2012/10/02 20:11:47 asau Exp $
#
DISTNAME= js-1.6.20070208
PKGNAME= ossp-${DISTNAME}
PKGREVISION= 3
CATEGORIES= lang
MASTER_SITES= http://www.ossp.org/pkg/lib/js/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.ossp.org/pkg/lib/js/
COMMENT= Sanitized distribution of Mozilla's JavaScript implementation
###
### XXX This could be eliminated with buildlinkery, but I do not have time
### right now. You'll probably want to use this package in lieu of
### spidermonkey anyway.
###
CONFLICTS+= spidermonkey-[0-9]*
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
USE_TOOLS+= pkg-config
CFLAGS+= -Wall
PKGCONFIG_OVERRIDE+= js.pc.in
CONFIGURE_ARGS+= --with-dso
CONFIGURE_ARGS+= --with-editline
CONFIGURE_ARGS+= --with-file
CONFIGURE_ARGS+= --without-perl
REPLACE_SH= js-config.sh.in
REPLACE_INTERPRETER+= js
REPLACE.js.old= ./js
REPLACE.js.new= ${PREFIX}/bin/js
REPLACE_FILES.js= jslint.js jspack.js
.include "libm.mk"
.if !empty(JS_FDLIBM_MATH_REQUESTED:M[Yy][Ee][Ss])
MAKE_ENV+= -DJS_FDLIBM_MATH_REQUESTED=1
CONFIGURE_ENV+= LIBM=""
.else
CONFIGURE_ENV+= LIBM="-lm"
.endif
.include "../../mk/dlopen.buildlink3.mk"
.include "../../devel/readline/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|