diff options
author | pav <pav@FreeBSD.org> | 2003-12-15 04:18:35 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2003-12-15 04:18:35 +0800 |
commit | 7aae79f07d7997afc488c2c8fdc1716cfe8b1a0e (patch) | |
tree | 1d007715d94f7d28ea71064bf691dc7b82fc54c3 /lang/slib-guile | |
parent | 9d3d978af2e02ad04b2b07f772c6a017b517d11f (diff) | |
download | freebsd-ports-gnome-7aae79f07d7997afc488c2c8fdc1716cfe8b1a0e.tar.gz freebsd-ports-gnome-7aae79f07d7997afc488c2c8fdc1716cfe8b1a0e.tar.zst freebsd-ports-gnome-7aae79f07d7997afc488c2c8fdc1716cfe8b1a0e.zip |
- Update to 3a1
- Split into two ports - interpreter independent library and installation
into guile
- Give maintainership to submitter
PR: ports/56393, ports/59888
Submitted by: Kimura Fuyuki <fuyuki@nigredo.org>
Diffstat (limited to 'lang/slib-guile')
-rw-r--r-- | lang/slib-guile/Makefile | 29 | ||||
-rw-r--r-- | lang/slib-guile/pkg-descr | 4 | ||||
-rw-r--r-- | lang/slib-guile/pkg-plist | 4 |
3 files changed, 37 insertions, 0 deletions
diff --git a/lang/slib-guile/Makefile b/lang/slib-guile/Makefile new file mode 100644 index 000000000000..5f7ac3bec9b9 --- /dev/null +++ b/lang/slib-guile/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: SLIB for Guile +# Date created: 3 November 2003 +# Whom: Kimura Fuyuki <fuyuki@nigredo.org> +# +# $FreeBSD$ +# + +PORTNAME= slib +PORTVERSION= 3a1 # Keep this in sync with lang/slib +CATEGORIES= lang scheme +MASTER_SITES= # empty +PKGNAMESUFFIX= -guile +DISTFILES= # empty + +MAINTAINER= fuyuki@nigredo.org +COMMENT= SLIB installation for Guile + +BUILD_DEPENDS= ${LOCALBASE}/share/slib/require.scm:${PORTSDIR}/lang/slib \ + guile:${PORTSDIR}/lang/guile +RUN_DEPENDS= ${BUILD_DEPENDS} + +NO_BUILD= yes + +do-install: + ${LN} -shf ${PREFIX}/share/slib ${LOCALBASE}/share/guile/slib + ${LOCALBASE}/bin/guile -c \ + "(use-modules (ice-9 slib)) (require 'new-catalog)" + +.include <bsd.port.mk> diff --git a/lang/slib-guile/pkg-descr b/lang/slib-guile/pkg-descr new file mode 100644 index 000000000000..38f64caad716 --- /dev/null +++ b/lang/slib-guile/pkg-descr @@ -0,0 +1,4 @@ +To use the features offered by the SLIB library, add the following +construct to your programs: + + (use-modules (ice-9 slib)) diff --git a/lang/slib-guile/pkg-plist b/lang/slib-guile/pkg-plist new file mode 100644 index 000000000000..7cac1ba99c30 --- /dev/null +++ b/lang/slib-guile/pkg-plist @@ -0,0 +1,4 @@ +@exec ln -shf %D/share/slib %D/share/guile/slib +@exec %D/bin/guile -c "(use-modules (ice-9 slib)) (require 'new-catalog)" +@unexec rm -f %D/share/guile/slib +@unexec rm -f %D/share/guile/slibcat |