mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
70ebd7d2b6
After discussions with the CMUCL implementor's list it has been decided that the FreeBSD port should stay as it is, which means that the 6.3 binary gets installed on all FreeBSD versions. That means the port will not be smartened up to select binaries built for newer FreeBSD versions that might be available. Consensus on the list was that those who care about that level of detail do not use the port (remember that it's a binary distribution anyway) and that for those who casually want to run some Common Lisp code it is good enough to just run the 6.3 binary. The next release will probably not have a FreeBSD-6.3 binary but at that time the majority of users will probably be on FreeBSD-7.x or higher. Tested: install/deinstall, manual check for proper removal, portlint. Commited during partial thaw as a leave port that doesn't affect other ports.
47 lines
1.4 KiB
Makefile
47 lines
1.4 KiB
Makefile
# Ports collection makefile for: CMUCL
|
|
# Date created: Jul, 15, 1997
|
|
# Whom: cracauer@cons.org "Martin Cracauer"
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
#
|
|
|
|
PORTNAME= cmucl
|
|
PORTVERSION= 19f
|
|
PORTREVISION= 1
|
|
CATEGORIES= lang lisp
|
|
MASTER_SITES= http://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_6.3-release
|
|
|
|
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>
|