diff options
author | beat <beat@FreeBSD.org> | 2010-09-13 19:01:55 +0800 |
---|---|---|
committer | beat <beat@FreeBSD.org> | 2010-09-13 19:01:55 +0800 |
commit | 14e385467e08b3e820702e00315b98dd8f2cd791 (patch) | |
tree | be558cab5ced8697256f8493371035988e77b76c /lang/gauche | |
parent | 82da92ed2140e1b69a5726474fbb5ab9b5fc2d57 (diff) | |
download | freebsd-ports-gnome-14e385467e08b3e820702e00315b98dd8f2cd791.tar.gz freebsd-ports-gnome-14e385467e08b3e820702e00315b98dd8f2cd791.tar.zst freebsd-ports-gnome-14e385467e08b3e820702e00315b98dd8f2cd791.zip |
- Fix build on PowerPC [1]
- Fix leftovers with NOPORTDOCS option set
PR: ports/149783 [1]
Submitted by: andreast [1]
Approved by: maintainer timeout (26 days)
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 |