diff options
author | vanilla <vanilla@FreeBSD.org> | 2004-08-08 23:48:21 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2004-08-08 23:48:21 +0800 |
commit | 7328d5fe95e5d56995c6818f62095039ec751e3d (patch) | |
tree | c7e797528c06a5332ce0b3e1f0597ae7a251cc4c /lang/embryo | |
parent | 6ace4e1582ba64d6b8514626b140be9cd02c7d08 (diff) | |
download | freebsd-ports-gnome-7328d5fe95e5d56995c6818f62095039ec751e3d.tar.gz freebsd-ports-gnome-7328d5fe95e5d56995c6818f62095039ec751e3d.tar.zst freebsd-ports-gnome-7328d5fe95e5d56995c6818f62095039ec751e3d.zip |
Add embryo, it's a C like scripting language used in parts of the Enlightenment.
Diffstat (limited to 'lang/embryo')
-rw-r--r-- | lang/embryo/Makefile | 25 | ||||
-rw-r--r-- | lang/embryo/distinfo | 2 | ||||
-rw-r--r-- | lang/embryo/pkg-descr | 6 | ||||
-rw-r--r-- | lang/embryo/pkg-plist | 18 |
4 files changed, 51 insertions, 0 deletions
diff --git a/lang/embryo/Makefile b/lang/embryo/Makefile new file mode 100644 index 000000000000..cb2e689760ca --- /dev/null +++ b/lang/embryo/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: embryo +# Date created: 08/08/2004 +# Whom: vanilla +# +# $FreeBSD$ +# + +PORTNAME= embryo +PORTVERSION= 0.9.0 +CATEGORIES= lang +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= enlightenment + +MAINTAINER= vanilla@FreeBSD.org +COMMENT= A C like scripting language used in parts of the Enlightenment + +USE_LIBTOOL_VER= 15 +USE_GNOME= gnomehack pkgconfig +INSTALLS_SHLIB= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +.include <bsd.port.mk> + +CONFIGURE_TARGET:= --build=${CONFIGURE_TARGET} diff --git a/lang/embryo/distinfo b/lang/embryo/distinfo new file mode 100644 index 000000000000..fa7753b43040 --- /dev/null +++ b/lang/embryo/distinfo @@ -0,0 +1,2 @@ +MD5 (embryo-0.9.0.tar.gz) = 1c60761baaeaa19b4e92588f2654e06d +SIZE (embryo-0.9.0.tar.gz) = 1448799 diff --git a/lang/embryo/pkg-descr b/lang/embryo/pkg-descr new file mode 100644 index 000000000000..c0eca8260c1e --- /dev/null +++ b/lang/embryo/pkg-descr @@ -0,0 +1,6 @@ +Embryo is a tiny library designed interpret limited small programs compiled +by the included scmall compiler. This is mostly cleaning up and reduction +in size of the original small abstract machine. the compiler itself has been +left alone almost completely. + +WWW: http://www.enlightenment.org/pages/embryo.html diff --git a/lang/embryo/pkg-plist b/lang/embryo/pkg-plist new file mode 100644 index 000000000000..caa404b93ee7 --- /dev/null +++ b/lang/embryo/pkg-plist @@ -0,0 +1,18 @@ +bin/embryo +bin/embryo_cc +bin/embryo-config +include/Embryo.h +lib/libembryo.a +lib/libembryo.so +lib/libembryo.so.9 +libdata/pkgconfig/embryo.pc +%%DATADIR%%/include/default.inc +%%DATADIR%%/examples/example.inc +%%DATADIR%%/examples/example.sma +%%DATADIR%%/examples/recurse.inc +%%DATADIR%%/examples/recurse.sma +%%DATADIR%%/examples/test.inc +%%DATADIR%%/examples/test.sma +@dirrm %%DATADIR%%/examples +@dirrm %%DATADIR%%/include +@dirrm %%DATADIR%% |