1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-13 07:34:50 +00:00
freebsd-ports/lang/see/Makefile
Fernando Apesteguía d177d8bc64 devel/boehm-gc: update to 7.6.8
ChangeLog: https://github.com/ivmai/bdwgc/releases/tag/v7.6.8

* Giving maintainership to yasu@utahime.org
* Bumping PORTREVISION for dependent ports

PR:	230577
Submitted by:	yasu@utahime.org
Approved by:	tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D16704
2018-08-31 18:27:13 +00:00

59 lines
1.8 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
BROKEN_aarch64= fails to configure: floating point not detected: Exactly one of IEEE_8087, IEEE_MC68k, VAX, or IBM should be defined
BROKEN_armv6= fails to configure: floating point not detected: Exactly one of IEEE_8087, IEEE_MC68k, VAX, or IBM should be defined
BROKEN_armv7= fails to configure: floating point not detected: Exactly one of IEEE_8087, IEEE_MC68k, VAX, or IBM should be defined
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>