mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
a1c3980ac8
Reset maintainership for llwang@infor.org due to multiple timeouts and email address permanent failure. Return all ports to the free pool except py-numpy, which is taken under the wing of the python@ team. We thank you for your contribution to the FreeBSD project Approved by: portmgr
50 lines
1.0 KiB
Makefile
50 lines
1.0 KiB
Makefile
# Created by: Li-Lun Wang <llwang@infor.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= whitespace
|
|
PORTVERSION= 0.3
|
|
PORTREVISION= 7
|
|
CATEGORIES= lang
|
|
MASTER_SITES= http://compsoc.dur.ac.uk/whitespace/downloads/
|
|
DISTNAME= wspace-${PORTVERSION}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Interpreter for the Whitespace programming language
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= ghc:${PORTSDIR}/lang/ghc
|
|
LIB_DEPENDS= gmp.10:${PORTSDIR}/math/gmp \
|
|
ffi.6:${PORTSDIR}/devel/libffi
|
|
|
|
USES= perl5
|
|
USE_PERL5= build
|
|
WRKSRC= ${WRKDIR}/WSpace
|
|
USE_GMAKE= yes
|
|
ALL_TARGET= ${TARGET}
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
OPTIONS_DEFAULT= DOCS EXAMPLES
|
|
|
|
PORTEXAMPLES= *
|
|
PORTDOCS= *
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/wspace ${PREFIX}/bin
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR}
|
|
.endif
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/docs/tutorial.html ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|