summaryrefslogtreecommitdiff
path: root/lang/gauche/Makefile
blob: 31ac8bfddfd82d35b104b0b5a6ad6f4747e90988 (plain) (blame)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# New ports collection makefile for:	gauche
# Date created:		9 September 2002
# Whom:			Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#

PORTNAME=	gauche
PORTVERSION=	0.7.2	# Keep databases/gauche-gdbm in sync with this
CATEGORIES=	lang scheme
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR=	${PORTNAME}
DISTNAME=	Gauche-${PORTVERSION}
EXTRACT_SUFX=	.tgz

MAINTAINER=	erik@smluc.org
COMMENT=	Scheme script interpreter with multibyte character handling

# Choices are: "pthreads" and "no", but it seems that FreeBSD does not
# yet fully support threads with Boehm GC.
GAUCHE_THREADS?=	no
# Choices are: "utf-8", "euc-jp", "shift-jis" and "no"
GAUCHE_ENCODING?=	utf-8

INFOSECTION=	The Algorithmic Language Scheme

MAN1=		gosh.1 \
		gauche-config.1
GNU_CONFIGURE=	yes
CONFIGURE_ARGS=	--enable-threads=${GAUCHE_THREADS} \
		--enable-multibyte=${GAUCHE_ENCODING}
PLIST_SUB=	VERSION="${PORTVERSION}" \
		TARGET="${CONFIGURE_TARGET}" \
		INFOSECTION="${INFOSECTION}"

post-install:
	${STRIP_CMD} ${PREFIX}/bin/gosh
	-${PREFIX}/bin/gosh -u slib -e "(require 'logical)" -e "(exit 0)"
.if !defined(NOPORTDOCS)
	${INSTALL_MAN} ${WRKSRC}/doc/*.1 ${MANPREFIX}/man/man1/
	${INSTALL_DATA} ${WRKSRC}/doc/*.info ${PREFIX}/info/
.for info in gauche-refe.info gauche-refj.info
	install-info --section="${INFOSECTION}" ${WRKSRC}/doc/${info} ${PREFIX}/info/dir
.endfor
.endif

.include <bsd.port.mk>