mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
021be14f65
COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Categories J-L. CR: D305 Approved by: portmgr (swills)
47 lines
997 B
Makefile
47 lines
997 B
Makefile
# Created by: cracauer@cons.org "Martin Cracauer"
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= scsh
|
|
PORTVERSION= 0.6.7
|
|
CATEGORIES= lang scheme
|
|
MASTER_SITES= SF \
|
|
ftp://ftp.scsh.net/pub/scsh/0.6/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Unix shell embedded into Scheme, with access to all Posix calls
|
|
|
|
CONFLICTS= scheme48-[0-9]*
|
|
|
|
LDFLAGS+= -Wl,-E
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} != "i386"
|
|
BROKEN= fails to install on ${ARCH}
|
|
.endif
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-lib-dirs-list='("${PREFIX}/lib/scsh/0.6")'
|
|
|
|
USES= gmake
|
|
ALL_TARGET= enough
|
|
MAN1= scsh.1
|
|
STRIP= #empty
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${PREFIX}/bin/scsh
|
|
.if !defined(NOPORTDOCS)
|
|
@(cd ${WRKSRC} && \
|
|
${INSTALL_DATA} README RELEASE COPYING ${PREFIX}/lib/scsh/doc)
|
|
@${RM} -f ${PREFIX}/share/doc/scsh
|
|
@${LN} -fs ${PREFIX}/lib/scsh/doc ${PREFIX}/share/doc/scsh
|
|
.else
|
|
@${RM} -rf ${PREFIX}/lib/scsh/doc
|
|
.endif
|
|
@(cd ${WRKSRC} && \
|
|
${CP} -R emacs ${PREFIX}/lib/scsh/)
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|