mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
53 lines
1.4 KiB
Makefile
53 lines
1.4 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= algotutor
|
|
PORTVERSION= 0.8.6
|
|
PORTREVISION= 4
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://www.cyut.edu.tw/~ckhung/dl/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= kevlo@FreeBSD.org
|
|
COMMENT= Interactive tutorial for algorithms and data structures
|
|
|
|
BUILD_DEPENDS= p5-Tk>=0:${PORTSDIR}/x11-toolkits/p5-Tk
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USE_PERL5= build
|
|
NO_BUILD= yes
|
|
|
|
MAN1= algotutor.1 gen_at_graph.1
|
|
BINFILES= algotutor gen_at_graph
|
|
LIBFILES= BST.pm Board.pm Collection.pm Configurable.pm DCEdge.pm \
|
|
Edge.pm Graph.pm Heap.pm Line.pm PQueue.pm RBTree.pm \
|
|
RecCanvas.pm RecDialog.pm TreeNode.pm Vector.pm Vector2.pm \
|
|
Vector3.pm Vertex.pm basic.pl utilalgo
|
|
|
|
USES= shebangfix perl5
|
|
SHEBANG_FILES= algotutor
|
|
|
|
NO_STAGE= yes
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,!!SITE_PERL!!,${SITE_PERL},' \
|
|
-e 's|!!PREFIX!!|${PREFIX}|g' \
|
|
${WRKSRC}/algotutor
|
|
|
|
do-install:
|
|
${MKDIR} ${SITE_PERL}/algotutor
|
|
${MKDIR} ${PREFIX}/share/algotutor
|
|
${CP} -R ${WRKSRC}/data ${PREFIX}/share/algotutor
|
|
${CP} -R ${WRKSRC}/cgeom ${SITE_PERL}/algotutor
|
|
${CP} -R ${WRKSRC}/dp ${SITE_PERL}/algotutor
|
|
${CP} -R ${WRKSRC}/graph ${SITE_PERL}/algotutor
|
|
.for file in ${MAN1}
|
|
${INSTALL_MAN} ${WRKSRC}/doc/${file} ${PREFIX}/man/man1
|
|
.endfor
|
|
.for file in ${BINFILES}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${file} ${PREFIX}/bin
|
|
.endfor
|
|
.for file in ${LIBFILES}
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${SITE_PERL}/algotutor
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|