1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

add q-graph 1.2

Q-Graph -- graph library and editor for the Q language
This commit is contained in:
Ying-Chieh Liao 2004-01-09 00:55:57 +00:00
parent f2fcb94f17
commit 32f9d63c3d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=97724
5 changed files with 57 additions and 0 deletions

View File

@ -326,6 +326,7 @@
SUBDIR += py-ming
SUBDIR += py-opengl
SUBDIR += py-paint
SUBDIR += q-graph
SUBDIR += qcread
SUBDIR += qglviewer
SUBDIR += qiv

32
graphics/q-graph/Makefile Normal file
View File

@ -0,0 +1,32 @@
# New ports collection makefile for: q-graph
# Date created: 14 August 2003
# Whom: ag@muwiinfa.geschichte.uni-mainz.de Albert Graef
#
# $FreeBSD$
#
PORTNAME= graph
PORTVERSION= 1.2
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= q-lang
PKGNAMEPREFIX= q-
MAINTAINER= ag@muwiinfa.geschichte.uni-mainz.de
COMMENT= Q-Graph -- graph library and editor for the Q language
RUN_DEPENDS= ${LOCALBASE}/bin/q:${PORTSDIR}/lang/q
USE_REINPLACE= yes
USE_GNOME= gnometarget
GNU_CONFIGURE= yes
DATADIR= ${PREFIX}/share/q
EXAMPLESDIR= ${PREFIX}/share/examples/q/graph
post-patch:
@${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} \
${GREP} -l "^examplesdir" | ${XARGS} ${REINPLACE_CMD} -e \
"s;[(]pkgdatadir[)]/examples;(datadir)/examples/q;"
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (graph-1.2.tar.gz) = 18498370afdfd106e52a5987a8cc1768

View File

@ -0,0 +1,13 @@
This is Q-Graph, a graph library and editor for the Q programming language.
The package contains:
- graph.q: a graph data structure implemented as a kind of asymmetric
adjacency list dictionary, and a collection of the usual graph operations
- graphed.q: a full-featured graph editor, allows you to create and edit your
input graphs with ease (requires Tcl/Tk)
WWW: http://q-lang.sourceforge.net
- Albert Graef
ag@muwiinfa.geschichte.uni-mainz.de

View File

@ -0,0 +1,10 @@
bin/graphed
bin/graphed2
%%DATADIR%%/etc/README-Graph
%%DATADIR%%/lib/graph.q
%%DATADIR%%/lib/graphed.q
%%DATADIR%%/lib/graphed.tcl
%%EXAMPLESDIR%%/G
%%EXAMPLESDIR%%/README
%%EXAMPLESDIR%%/dijkstra.q
@dirrm %%EXAMPLESDIR%%