freebsd-ports/devel/cl-port/Makefile
Edwin Groothuis b8be369e1d New Port: Common Lisp portability package
CLOCC Port is a wrapper library for various functions (sockets,
	shell access, etc) that are widely implemented in Common Lisp
	systems, but lack a standardized interface.

	This port depends on the previously submitted ASDF port. It installs
	the source files and an .asd file (which plays a similar role to
	a Makefile and a pkg-config script). There are other ports for each
	supported Lisp system.

PR:		ports/52365
Submitted by:	Henrik Motakef <henrik.motakef@web.de>
2003-09-28 09:44:07 +00:00

41 lines
1.3 KiB
Makefile

# New ports collection Makefile for: cl-port
# Date created: 12 May 2003
# Whom: Henrik Motakef <henrik.motakef@web.de>
#
# $FreeBSD$
PORTNAME= port
PORTVERSION= 2002.10.02.1
CATEGORIES= devel
MASTER_SITES= ftp://ftp.linux.org.uk/pub/lisp/experimental/cclan/ \
ftp://ftp.ntnu.no/pub/lisp/cclan/ \
ftp://www.aarg.net/pub/cclan/ \
http://thingamy.com/cclan/ \
http://www-jcsu.jesus.cam.ac.uk/ftp/pub/cclan/
PKGNAMEPREFIX= cl-
DISTNAME= clocc-${PORTNAME}_2002-10-02-1
MAINTAINER= henrik.motakef@web.de
COMMENT= Cross-Lisp portability package
BUILD_DEPENDS= ${LOCALBASE}/lib/common-lisp/asdf/asdf.lisp:${PORTSDIR}/devel/cl-asdf
RUN_DEPENDS= ${LOCALBASE}/lib/common-lisp/asdf/asdf.lisp:${PORTSDIR}/devel/cl-asdf
WRKSRC= ${WRKDIR}/clocc-${PORTNAME}
DOCSDIR?= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
NO_BUILD= yes
CL_LIBDIR= ${PREFIX}/lib/common-lisp
do-install:
${MKDIR} ${CL_LIBDIR}/port
${INSTALL_DATA} ${WRKSRC}/clocc-port.asd ${CL_LIBDIR}/port/port.asd
${INSTALL_DATA} ${WRKSRC}/port.system ${CL_LIBDIR}/port/port.system
${INSTALL_DATA} ${WRKSRC}/*.lisp ${CL_LIBDIR}/port/
${LN} -s ${CL_LIBDIR}/port/port.asd ${CL_LIBDIR}/system-registry/port.asd
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/port.html ${DOCSDIR}
.endif
.include <bsd.port.mk>