diff options
author | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2008-06-17 09:51:11 +0000 |
---|---|---|
committer | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2008-06-17 09:51:11 +0000 |
commit | 37851b261878bf9cbd32edc8ccaf4b93c373c7b1 (patch) | |
tree | 0ae264af79ad7019ca3b43bc545ebba86197b9d6 /lang/gauche | |
parent | 67a591575294d0acb5ec303da01ae14e421b5912 (diff) | |
download | ports-37851b261878bf9cbd32edc8ccaf4b93c373c7b1.tar.gz ports-37851b261878bf9cbd32edc8ccaf4b93c373c7b1.zip |
- fix install when -DNOPORTDOCS
Submitted by: QA Tindy run
Approved by: maintainer timeout
Notes
Notes:
svn path=/head/; revision=214997
Diffstat (limited to 'lang/gauche')
-rw-r--r-- | lang/gauche/Makefile | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/lang/gauche/Makefile b/lang/gauche/Makefile index f0b25f4632f4..aad7d157726a 100644 --- a/lang/gauche/Makefile +++ b/lang/gauche/Makefile @@ -7,7 +7,7 @@ PORTNAME= gauche PORTVERSION= 0.8.13 # Keep databases/gauche-gdbm in sync with this -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang scheme MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -26,21 +26,26 @@ GAUCHE_ENCODING?= utf-8 # breaks in ext/uvecor.c on some locales MAKE_ENV= LANG=C -INFOSECTION= The Algorithmic Language Scheme +#INFOSECTION= The Algorithmic Language Scheme -MAN1= gosh.1 \ - gauche-config.1 GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-threads=${GAUCHE_THREADS} \ --enable-multibyte=${GAUCHE_ENCODING} \ --with-slib=${LOCALBASE}/share/slib \ --with-iconv=${LOCALBASE} PLIST_SUB= VERSION="${PORTVERSION}" \ - TARGET="${CONFIGURE_TARGET}" \ - INFOSECTION="${INFOSECTION}" + TARGET="${CONFIGURE_TARGET}" + +# INFOSECTION="${INFOSECTION}" + USE_ICONV= yes USE_LDCONFIG= yes + +MAN1= gosh.1 gauche-config.1 + +.if !defined(NOPORTDOCS) INFO= gauche-refe gauche-refj +.endif .include <bsd.port.pre.mk> @@ -63,8 +68,8 @@ post-install: ${TOUCH} ${DOCSDIR}/.keepme ${MKDIR} ${EXAMPLESDIR} ${TOUCH} ${EXAMPLESDIR}/.keepme -.if !defined(NOPORTDOCS) ${INSTALL_MAN} ${WRKSRC}/doc/*.1 ${MANPREFIX}/man/man1/ +.if !defined(NOPORTDOCS) ${INSTALL_DATA} ${WRKSRC}/doc/*.info ${WRKSRC}/doc/*.info-[1-7] ${PREFIX}/info/ .endif |