b4fd0b8e38
been inactive for over 12 months and did not respond to my email confirming their status: keith, nakai, torstenb Reviewed by: portmgr
42 lines
1 KiB
Makefile
42 lines
1 KiB
Makefile
# New ports collection makefile for: slib
|
|
# Date created: 01 April 1998
|
|
# Whom: Yukihiro Nakai <Nakai@technologist.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= slib
|
|
PORTVERSION= 2d5
|
|
PORTREVISION= 1
|
|
CATEGORIES= lang scheme
|
|
MASTER_SITES= http://swissnet.ai.mit.edu/ftpdir/scm/
|
|
DISTNAME= slib${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A portable scheme library
|
|
|
|
RUN_DEPENDS= guile:${PORTSDIR}/lang/guile
|
|
|
|
WRKSRC= ${WRKDIR}/slib
|
|
|
|
NO_BUILD= yes
|
|
|
|
do-install:
|
|
${MKDIR} ${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/*.scm ${DATADIR}
|
|
${RM} -f ${LOCALBASE}/share/guile/slib
|
|
${LN} -sf ${PREFIX}/share/slib ${LOCALBASE}/share/guile/slib
|
|
${LOCALBASE}/bin/guile -c \
|
|
"(use-modules (ice-9 slib)) (require 'new-catalog)"
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for file in ANNOUNCE COPYING ChangeLog FAQ README
|
|
${INSTALL_MAN} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
${INSTALL_MAN} ${WRKSRC}/slib.info ${PREFIX}/info
|
|
install-info ${PREFIX}/info/slib.info ${PREFIX}/info/dir
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|