blob: 3d0898bdd9ea4d7a417e5508b50584d3f2bc063d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# New ports collection makefile for: algotutor
# Date created: 19 January 2005
# Whom: Kevin Lo <kevlo@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= algotutor
PORTVERSION= 0.8.5
PORTREVISION= 1
CATEGORIES= math
MASTER_SITES= http://saturn.stu.edu.tw/~ckhung/dl/
EXTRACT_SUFX= .tgz
MAINTAINER= kevlo@FreeBSD.org
COMMENT= An interactive tutorial for algorithms and data structures
BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Tk.pm:${PORTSDIR}/x11-toolkits/p5-Tk
RUN_DEPENDS= ${BUILD_DEPENDS}
USE_PERL5_BUILD=yes
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 PQueue.pm RBTree.pm RecCanvas.pm \
RecDialog.pm TreeNode.pm Vector.pm Vertex.pm basic.pl \
utilalgo
post-patch:
${REINPLACE_CMD} -e 's,#!/usr/bin/perl,#!${PERL},' ${WRKSRC}/algotutor
${PERL} -pi -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>
|