freebsd-ports/lang/ferite/Makefile
Edwin Groothuis 51eca5f2e6 [UPDATE]: lang/ferite: Update to version 1.0.2
This patch will update lang/ferite to version 1.0.2. This version fixes several memory issues:

	- Fix for a threading issue that caused the engine to crash with a memory issue.
	- Fix for rmi and a lack of parsing of arguments within function calls.
	- Fix for rmi that caused the starvation of network sockets within the server environment. The new fix forces
		the GC to be run when in blocking listen mode and also forces the shutdown of network sockets.
	- Fix for array code that would cause objects to have an inflated refcount and cause scripts to not deleted
		objects within the GC
	- Fix for refcounting issues within the assignment of objects
	- Fix for building on CYGWIN: required -no-undefined on the libraries and a missing header in aphex_thread.c
	- Fix for class/namespace modifies on a class/namesapce that already exists

PR:		ports/91409
Submitted by:	Frank Laszlo <laszlof@vonostingroup.com>
2006-01-07 02:26:57 +00:00

45 lines
1.1 KiB
Makefile

# New ports collection Makefile for: ferite
# Date created: 21 August 2001
# Whom: Jeremy Norris <ishmael27@home.com>
#
# $FreeBSD$
#
PORTNAME= ferite
PORTVERSION= 1.0.2
CATEGORIES= lang
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= laszlof@vonostingroup.com
COMMENT= An embeddable scripting language
LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre \
xml2.5:${PORTSDIR}/textproc/libxml2
USE_AUTOTOOLS= libtool:15
USE_GMAKE= yes
USE_REINPLACE= yes
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
INSTALLS_SHLIB= yes
PLIST_SUB= MACHINE_ARCH=${MACHINE_ARCH}
MAN1= builder.1 ferite.1
PORTDOCS= *
.include <bsd.port.pre.mk>
post-patch:
@${REINPLACE_CMD} -e 's|<stdint\.h>|<inttypes.h>|' \
${WRKSRC}/src/ferite_scanner.c
@${FIND} ${WRKSRC} -name Makefile.in -print | ${XARGS} \
${REINPLACE_CMD} -e "s|-lferite|-lferite -L${WRKSRC}/src/.libs|g"
.if defined(NOPORTDOCS)
MAKE_ENV+= NOPORTDOCS=${NOPORTDOCS}
.endif
.include <bsd.port.post.mk>