1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-12 03:00:28 +00:00
freebsd-ports/textproc/cl-meta/Makefile
Jimmy Olgeni 0e5dcb10fc Building textproc/cl-meta-clisp fails with the following message:
;; Compiling file /usr/local/lib/common-lisp/meta/meta.lisp ...
*** - SYSTEM::LINE-COMMENT-READER: Invalid byte #xFC in CHARSET:ASCII
      conversion

It turns out that clisp does not like non-ASCII characters, even
in comments.

textproc/cl-meta contains source code for textproc/cl-meta-clisp:
patch a comment line to use "Nuremberg" rather than the actual
German spelling, which contains the 0xFC character (U-umlaut).

This unbreaks textproc/cl-meta-clisp.

Noticed by:	QAT via itetcu, pointyhat via pav
2010-07-23 13:10:12 +00:00

38 lines
996 B
Makefile

# New ports collection Makefile for: cl-meta
# Date created: 16 May 2003
# Whom: Henrik Motakef <henrik.motakef@web.de>
#
# $FreeBSD$
PORTNAME= meta
PORTVERSION= 0.1
PORTREVISION= 2
CATEGORIES= textproc lisp
MASTER_SITES= ftp://ftp.linux.org.uk/pub/lisp/experimental/cclan/ \
ftp://ftp.ntnu.no/pub/lisp/cclan/ \
http://www-jcsu.jesus.cam.ac.uk/ftp/pub/cclan/
PKGNAMEPREFIX= cl-
DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= olgeni@FreeBSD.org
COMMENT= A parser generator for Common Lisp
WRKSRC= ${WRKDIR}/${PORTNAME}
NO_BUILD= yes
USE_ASDF= yes
do-install:
@${MKDIR} ${ASDF_PATHNAME}
@${INSTALL_DATA} ${WRKSRC}/*.lisp ${ASDF_PATHNAME}
@${INSTALL_DATA} ${WRKSRC}/meta.asd ${ASDF_PATHNAME}
@${LN} -sf ${ASDF_PATHNAME}/*.asd ${ASDF_REGISTRY}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/Prag-Parse.* ${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include "${.CURDIR}/../../devel/cl-asdf/bsd.cl-asdf.mk"
.include <bsd.port.mk>