blob: 324fc940830a0dcffa5cf9da422028542a792d9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# New ports collection makefile for: Gauche Readline
# Date created: 15 Jan 2004
# Whom: Erik Greenwald <erik@smluc.org>
#
# $FreeBSD$
#
PORTNAME= readline
PORTVERSION= 0.1
CATEGORIES= devel scheme
MASTER_SITES= http://www.shiro.dreamhost.com/scheme/vault/
PKGNAMEPREFIX= gauche-
EXTRACT_SUFX= .tgz
DIST_SUBDIR= gauche
MAINTAINER= erik@smluc.org
COMMENT= A pure gauche/scheme implementation of the Readline library
RUN_DEPENDS= gosh:${PORTSDIR}/lang/gauche
BUILD_DEPENDS= gauche-config:${PORTSDIR}/lang/gauche
GAUCHE_LIBDIR= share/gauche/site/lib
PLIST_SUB+= GAUCHE_LIBDIR=${GAUCHE_LIBDIR}
do-install:
${CP} -R ${WRKSRC}/readline* `gauche-config --sitelibdir`
.include <bsd.port.mk>
|