mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
39 lines
963 B
Makefile
39 lines
963 B
Makefile
# New ports collection makefile for: elk
|
|
# Version required: 3.0pl2
|
|
# Date created: 08 March 1995
|
|
# Whom: thomas@ghpc8.ihf.rwth-aachen.de
|
|
#
|
|
# $Id: Makefile,v 1.12 1996/11/12 02:18:06 obrien Exp $
|
|
#
|
|
|
|
DISTNAME= elk-3.0
|
|
PKGNAME= elk-3.0.2
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ftp://ftp.uni-bremen.de/pub/programming/languages/scheme/elk/ \
|
|
ftp://crl.dec.com/pub/X11/contrib/devel_tools/ \
|
|
ftp://ftp.th-darmstadt.de/pub/X11/contrib/devel_tools/
|
|
|
|
MAINTAINER= tg@freebsd.org
|
|
|
|
PATCH_STRIP= -p1
|
|
ALL_TARGET= default
|
|
MAN1= elk.1
|
|
|
|
#
|
|
# we install the scheme binary as ${PREFIX}/bin/elk
|
|
# to avoid a clash with mit-scheme.
|
|
#
|
|
|
|
pre-install:
|
|
@${MKDIR} ${PREFIX}/share/elk
|
|
|
|
post-install:
|
|
@(cd ${PREFIX}/share/elk; \
|
|
${CP} bin/scheme ${PREFIX}/bin/elk; \
|
|
${MKDIR} ${PREFIX}/include/elk; \
|
|
${CP} -R include/* ${PREFIX}/include/elk; \
|
|
rm -rf bin include)
|
|
@${INSTALL_MAN} ${WRKSRC}/doc/man/elk.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|