mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
4c30955d29
PR: 23408 Submitted by: maintainer
53 lines
1.5 KiB
Makefile
53 lines
1.5 KiB
Makefile
# Ports collection makefile for: spin
|
|
# Date created: Oct 23, 1997
|
|
# Whom: jhanna@home.com
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= spin
|
|
PORTVERSION= 3.4.2
|
|
CATEGORIES= math
|
|
MASTER_SITES= ftp://netlib.bell-labs.com/netlib/spin/ \
|
|
ftp://www.netlib.org/spin/ \
|
|
ftp://ftp.freesoftware.com/pub/netlib/spin/
|
|
DISTFILES= spin342.tar.gz html.tar.gz
|
|
|
|
MAINTAINER= jhanna@home.com
|
|
|
|
DIST_SUBDIR= spin
|
|
WRKSRC= ${WRKDIR}/Src3.4
|
|
MAKEFILE= makefile
|
|
ALL_TARGET= spin
|
|
|
|
post-extract:
|
|
@cd ${WRKDIR}/Test && ${SH} ${WRKDIR}/Test/examples
|
|
|
|
post-patch:
|
|
@${PERL} -pi -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKDIR}/Xspin3.4/xspin342.tcl
|
|
|
|
pre-build:
|
|
cd ${WRKSRC} && ${MAKE} clean
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/spin ${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKDIR}/Xspin3.4/xspin342.tcl ${PREFIX}/bin
|
|
${RM} -f ${PREFIX}/bin/xspin
|
|
${LN} -s ${PREFIX}/bin/xspin342.tcl ${PREFIX}/bin/xspin
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/doc/spin/Doc
|
|
${MKDIR} ${PREFIX}/share/doc/spin/Examples
|
|
${MKDIR} ${PREFIX}/share/doc/spin/HTML
|
|
${MKDIR} ${PREFIX}/share/doc/spin/Test
|
|
${INSTALL_DATA} ${WRKDIR}/Doc/* ${PREFIX}/share/doc/spin/Doc
|
|
${INSTALL_DATA} ${WRKDIR}/Test/ex.* ${PREFIX}/share/doc/spin/Examples
|
|
${INSTALL_DATA} ${WRKDIR}/HTML/* ${PREFIX}/share/doc/spin/HTML
|
|
.for i in README.tests abp erathostenes hello leader leader.ltl leader2 \
|
|
loops mobile1 mobile1.ltl mobile2 mobile2.ltl pathfinder peterson petersonN pftp priorities snoopy sort wordcount
|
|
${INSTALL_DATA} ${WRKDIR}/Test/$i ${PREFIX}/share/doc/spin/Test
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|