blob: 5326f2698142a6c5ecd47344b5f08412fc1bd73b (
plain) (
blame)
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
53
54
55
56
|
# New ports collection makefile for: see
# Date created: 22 September 2004
# Whom: numisemis@yahoo.com
#
# $FreeBSD$
#
PORTNAME= see
PORTVERSION= 1.3.1
PORTREVISION= 1
CATEGORIES= lang devel
MASTER_SITES= http://www.adaptive-enterprises.com.au/~d/software/see/
MAINTAINER= numisemis@yahoo.com
COMMENT= Simple ECMAScript Engine (SEE)
CONFLICTS= see-devel-[0-9]*
OPTIONS= GC "Use Boehm-Weiser garbage collection pkg" on \
OPTIMIZED_CFLAGS "Enable some additional optimizations" off
INSTALLS_SHLIB= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_PERL5_BUILD= yes
CONFIGURE_ENV= LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib ${PTHREAD_LIBS}" \
CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include ${PTHREAD_CFLAGS}"
.include <bsd.port.pre.mk>
.if defined(WITH_OPTIMIZED_CFLAGS)
CFLAGS+= -O3 -fomit-frame-pointer
.endif
.if !defined(WITHOUT_GC)
LIB_DEPENDS+= gc:${PORTSDIR}/devel/boehm-gc
.else
CONFIGURE_ARGS+= --without-boehm-gc
PTHREAD_CFLAGS=
PTHREAD_LIBS=
.endif
post-patch:
@${REINPLACE_CMD} -e "s|PACKAGE_BUGREPORT='leonard@users|PACKAGE_BUGREPORT='leonard\\\@users|" \
${WRKSRC}/configure
.if !defined(NOPORTDOCS)
post-install:
${MKDIR} ${DOCSDIR}
.for f in doc/USAGE.html AUTHORS NEWS README TODO
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.post.mk>
|