mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
d253f442d4
- bump PORTREVISION Approved by: maintainer timeout on QAT BotMail Prompted by: QAT QA run
47 lines
1.4 KiB
Makefile
47 lines
1.4 KiB
Makefile
# New ports collection makefile for: CMUCL
|
|
# Date created: Jul, 15, 1997
|
|
# Whom: cracauer@cons.org "Martin Cracauer"
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
#
|
|
|
|
PORTNAME= cmucl
|
|
PORTVERSION= 19c
|
|
PORTREVISION= 1
|
|
CATEGORIES= lang lisp
|
|
MASTER_SITES= ftp://ftp.common-lisp.net/pub/project/cmucl/release/${PORTVERSION}/ \
|
|
http://www.pmsf.de/pub/cmucl/release/${PORTVERSION}/ \
|
|
ftp://ftp.averillpark.net/cmucl/release/${PORTVERSION}/ \
|
|
ftp://ftp.linux.org.uk/pub/lisp/cmucl/release/${PORTVERSION}/ \
|
|
ftp://ftp.tepus.com/pub/project/cmucl/release/${PORTVERSION}/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-x86-FreeBSD
|
|
|
|
MAINTAINER= cracauer@cons.org
|
|
COMMENT= The CMU implementation of Common Lisp
|
|
|
|
LIB_DEPENDS= c.4:${PORTSDIR}/misc/compat4x
|
|
|
|
# To make available on other archs, has to be cross-compiled (there is a
|
|
# script for this, but a configuration file has to be written).
|
|
IA32_BINARY_PORT= yes
|
|
USE_BZIP2= yes
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
MAN1= lisp.1 cmucl.1
|
|
|
|
PLIST_SUB= VER=${PORTVERSION}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKDIR}/bin/lisp ${PREFIX}/bin
|
|
cd ${WRKDIR} && ${FIND} lib | \
|
|
${CPIO} -pdm -L -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}
|
|
${INSTALL_MAN} ${WRKDIR}/man/man1/cmucl.1 ${MANPREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKDIR}/man/man1/lisp.1 ${MANPREFIX}/man/man1
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKDIR}/doc/cmucl/* ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|