blob: 7cf67094fd2fb8eca51b38000232c5d42141b94c (
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
|
# Created by: Johann Visagie <wjv@FreeBSD.org>
# $FreeBSD$
PORTNAME= gato
PORTVERSION= 1.2.2
CATEGORIES= math python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= Gato-${PORTVERSION}
MAINTAINER= python@FreeBSD.org
COMMENT= Python-based toolbox to visualise algorithms on graphs
LICENSE= LGPL21
LICENSE_FILE= ${WRKSRC}/LGPL.txt
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/py-tkinter
NO_ARCH= yes
PORTEXAMPLES= *
USES= python:2
USE_PYTHON= autoplist distutils
post-install:
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
.for sample in *.alg *.pro *.cat
${INSTALL_DATA} ${WRKSRC}/${sample} ${STAGEDIR}${EXAMPLESDIR}
.endfor
.include <bsd.port.mk>
|