freebsd-ports/lang/see/Makefile
Mark Linimon 7a91875788 These ports also build on armv7 (and thus, presumably, on armv6).
Approved by:	portmgr (tier-2 blanket)
Obtained from:	armv7 TRYBROKEN run
2019-05-04 04:24:52 +00:00

55 lines
1.5 KiB
Makefile

# Created by: Simun Mikecin <numisemis@yahoo.com>
# $FreeBSD$
PORTNAME= see
PORTVERSION= 3.1.1424
PORTREVISION= 4
CATEGORIES= lang devel
MASTER_SITES= http://download.openpkg.org/components/cache/see/ \
http://lil.fr.distfiles.macports.org/see/ \
ftp://ftp.mirrorservice.org/sites/distfiles.macports.org/see/ \
ftp://mirror.csclub.uwaterloo.ca/MacPorts/mpdistfiles/see/
MAINTAINER= numisemis@yahoo.com
COMMENT= Simple ECMAScript Engine (SEE)
LICENSE= BSD3CLAUSE DTOA.C
LICENSE_COMB= multi
LICENSE_NAME_DTOA.C= License of dtoa.c
LICENSE_FILE_BSD3CLAUSE= ${WRKSRC}/COPYING
LICENSE_FILE_DTOA.C= ${WRKSRC}/COPYING
LICENSE_PERMS_DTOA.C= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
OPTIONS_DEFINE= GC DEBUG DOCS
OPTIONS_DEFAULT= GC
GC_DESC= Use Boehm-Weiser garbage collection package
DEBUG_DESC= Internal SEE library debugging
CONFLICTS= see-devel-[0-9]*
USES= libtool pathfix perl5
USE_LDCONFIG= yes
USE_PERL5= build
GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip
CFLAGS+= -O3
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -lpthread -L${LOCALBASE}/lib
DEBUG_CFLAGS_OFF= -DNDEBUG
GC_LIB_DEPENDS= libgc.so:devel/boehm-gc
GC_CONFIGURE_WITH= boehm-gc
post-patch:
@${REINPLACE_CMD} -e "s|PACKAGE_BUGREPORT='leonard@users|PACKAGE_BUGREPORT='leonard\\\@users|" \
${WRKSRC}/configure
post-install:
${MKDIR} ${STAGEDIR}${DOCSDIR}
.for f in doc/USAGE.html AUTHORS NEWS README TODO COPYING
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>