mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
48135f0ca6
keep static executable files drop MAINTAINERship PR: 51537 Submitted by: Kimura Fuyuki <fuyuki@hadaly.org>
37 lines
754 B
Makefile
37 lines
754 B
Makefile
# New ports collection makefile for: CHICKEN
|
|
# Date created: 31 December 2002
|
|
# Whom: Kimura Fuyuki <fuyuki@hadaly.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= chicken
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= lang
|
|
MASTER_SITES= http://www.call-with-current-continuation.org/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A Scheme-to-C compiler
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
USE_REINPLACE= yes
|
|
USE_LIBTOOL= yes
|
|
INSTALLS_SHLIB= yes
|
|
|
|
MAN1= chicken-config.1 chicken.1 csc.1 csi.1
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's/\(install-data-am: \)install-data-local/\1/' \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
${CP} -R ${WRKSRC}/examples/* ${EXAMPLESDIR}
|
|
${MKDIR} ${DOCSDIR}
|
|
${CP} -R ${WRKSRC}/doc/* ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|