e8ee429372
-- This is a collection of four libraries which can be used to build foreign function call interfaces in embedded interpreters. The four packages are: avcall - calling C functions with variable arguments vacall - C functions accepting variable argument prototypes trampoline - closures as first-class C functions callback - closures with variable arguments as first-class C functions (a reentrant combination of vacall and trampoline) WWW: http://clisp.cons.org/~haible/packages-ffcall.html Submitted by: Christian Edward Gruber <cgruber@israfil.net>
29 lines
747 B
Makefile
29 lines
747 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2002/05/01 17:19:23 lebel Exp $
|
|
# $FreeBSD: ports/devel/ffcall/Makefile,v 1.2 2001/08/31 14:20:18 sobomax Exp $
|
|
# Original From: jagapen@home.com
|
|
|
|
COMMENT= "foreign function call libraries"
|
|
|
|
DISTNAME= ffcall-1.8
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://ftp.santafe.edu/pub/gnu/
|
|
HOMEPAGE= http://clisp.cons.org/~haible/packages-ffcall.html
|
|
|
|
MAINTAINER= Christian Edward Gruber <cgruber@israfil.net>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
USE_GMAKE= yes
|
|
USE_LIBTOOL= yes
|
|
CONFIGURE_STYLE=autoconf
|
|
MODGNU_CONFIG_GUESS_DIRS?=${WRKSRC}/autoconf
|
|
|
|
pre-install:
|
|
@${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ffcall/html
|
|
|
|
.include <bsd.port.mk>
|