mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +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)
27 lines
661 B
Makefile
27 lines
661 B
Makefile
# Created by: Wes Peters <wes@softweyr.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= snobol4
|
|
PORTVERSION= 1.5
|
|
PORTREVISION= 1
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ftp://ftp.ultimate.com/snobol/
|
|
|
|
MAINTAINER= johans@FreeBSD.org
|
|
COMMENT= Port of Macro SNOBOL4, supports full SNOBOL4 plus SPITBOL
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} \
|
|
--snolibdir=${PREFIX}/lib/${PORTNAME}
|
|
USES= gmake
|
|
PLIST_SUB+= VERSION=${PORTVERSION}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's:[^=]*\.tmp$$:${WRKSRC}/&:' ${WRKSRC}/configure
|
|
|
|
post-install:
|
|
${LN} -sf sdb-${PORTVERSION} ${STAGEDIR}${PREFIX}/bin/sdb
|
|
${LN} -sf snobol4-${PORTVERSION} ${STAGEDIR}${PREFIX}/bin/snobol4
|
|
|
|
.include <bsd.port.mk>
|