diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-08-30 01:59:33 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-08-30 01:59:33 +0000 |
commit | ed1014cedbb27b7c81c419511ff5af10b6071cb4 (patch) | |
tree | 216072d81a061322d1036357121dcf27abdd9ca0 /lang/fpl/Makefile | |
parent | new port: net/luasocket - IP library for Lua language (diff) |
new port: net/fpl
FPL is a complete script programming language _very_ similar
to C. If you are a software developer and plans to add any
kind of macro/script control, consider the FPL alternative!
FPL library lets the software programmer define functions
and variables that FPL should accept. The library will call
a function in the software whenever any of these functions
are used or variables are read in an FPL program.
PR: ports/46756
Submitted by: Dominic Marks <dom@cus.org.uk>
Notes
Notes:
svn path=/head/; revision=88033
Diffstat (limited to 'lang/fpl/Makefile')
-rw-r--r-- | lang/fpl/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/lang/fpl/Makefile b/lang/fpl/Makefile new file mode 100644 index 000000000000..b97d3b69b23a --- /dev/null +++ b/lang/fpl/Makefile @@ -0,0 +1,34 @@ +# +# New ports collection makefile for: fpl +# Date created: 02/01/2003 +# Whom: Dominic Marks <dom@cus.org.uk> +# +# $FreeBSD$ +# + +PORTNAME= fpl +PORTVERSION= 14.12 +CATEGORIES= lang +MASTER_SITES= ftp://ich.bin.kein.hoschi.de/fpl/ \ + http://www.cus.org.uk/~dom/distfiles/fpl/ + +MAINTAINER= d.marks@student.umist.ac.uk +COMMENT= An interpreted script/macro language + +ALL_TARGET= + +.include <bsd.port.pre.mk> + +pre-build: + @${MV} ${WRKSRC}/src/Makefile ${WRKSRC}/src/Makefile.old + @${MV} ${WRKSRC}/src/Makefile.FreeBSD ${WRKSRC}/src/Makefile + +do-install: + @${MKDIR} ${PREFIX}/lib/${PORTNAME}/ + ${INSTALL_DATA} -m 0644 \ + ${WRKSRC}/src/libfpl.a \ + ${WRKSRC}/src/libent.a \ + ${WRKSRC}/src/liballoc.a \ + ${PREFIX}/lib/${PORTNAME}/ + +.include <bsd.port.post.mk> |