diff options
author | Beat Gaetzi <beat@FreeBSD.org> | 2010-09-13 11:01:55 +0000 |
---|---|---|
committer | Beat Gaetzi <beat@FreeBSD.org> | 2010-09-13 11:01:55 +0000 |
commit | 298ed53dd25ac3e733af4da59764b44ce1f1b33d (patch) | |
tree | 211bbfe8a00ca03a3351b1e4640de8f3ab2eabab /lang/gauche | |
parent | 8a35c4ab76386588b1ce4552dee9a4cb6256baee (diff) | |
download | ports-298ed53dd25ac3e733af4da59764b44ce1f1b33d.tar.gz ports-298ed53dd25ac3e733af4da59764b44ce1f1b33d.zip |
Notes
Diffstat (limited to 'lang/gauche')
-rw-r--r-- | lang/gauche/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lang/gauche/Makefile b/lang/gauche/Makefile index f20c0a8d4263..8bd403e5dbe3 100644 --- a/lang/gauche/Makefile +++ b/lang/gauche/Makefile @@ -15,9 +15,8 @@ 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: "pthreads" and "no" +GAUCHE_THREADS?= pthreads # Choices are: "utf-8", "euc-jp", "shift-jis" and "no" GAUCHE_ENCODING?= utf-8 @@ -55,6 +54,11 @@ INFO= gauche-refe gauche-refj BROKEN= Does not compile on ${ARCH} .endif +post-patch: +.if defined(NOPORTDOCS) + @${REINPLACE_CMD} -e 's|all: info|all:|' ${WRKSRC}/doc/Makefile.in +.endif + post-install: ${STRIP_CMD} ${PREFIX}/bin/gosh ${RM} -f ${PREFIX}/share/gauche/${PORTVERSION}/lib/slibcat |