summaryrefslogtreecommitdiff
path: root/graphics/graphviz
diff options
context:
space:
mode:
authorThomas Gellekum <tg@FreeBSD.org>1998-02-05 09:02:58 +0000
committerThomas Gellekum <tg@FreeBSD.org>1998-02-05 09:02:58 +0000
commit9b668dfc40582e544cd328ac190589b8237def06 (patch)
tree40c58a807ef72848c837dd9b63a26e9075e09e05 /graphics/graphviz
parentAllow the use of more ptys. (diff)
New distribution tarball, same version.
Changes for that submitted by: Chuck Robey <chuckr@freebsd.org>. I also cleaned up some gratuitious "#ifndef __FreeBSD__"'s while I was here.
Notes
Notes: svn path=/head/; revision=9599
Diffstat (limited to 'graphics/graphviz')
-rw-r--r--graphics/graphviz/Makefile11
-rw-r--r--graphics/graphviz/distinfo2
-rw-r--r--graphics/graphviz/files/patch-ac6
3 files changed, 7 insertions, 12 deletions
diff --git a/graphics/graphviz/Makefile b/graphics/graphviz/Makefile
index b9184797f0c8..e9fe6ca8f714 100644
--- a/graphics/graphviz/Makefile
+++ b/graphics/graphviz/Makefile
@@ -3,7 +3,7 @@
# Date created: 03 Feb 1998
# Whom: Thomas Gellekum <tg@FreeBSD.ORG>
#
-# $Id$
+# $Id: Makefile,v 1.1.1.1 1998/02/04 08:37:50 tg Exp $
#
DISTNAME= graphviz_1_21
@@ -14,6 +14,8 @@ EXTRACT_SUFX= .src.unix.tgz
MAINTAINER= ports@FreeBSD.ORG
+LIB_DEPENDS= tk42\\.1:${PORTSDIR}/x11/tk42
+
RESTRICTED= "Can't be fetched without license"
NO_PACKAGE= ${RESTRICTED}
NO_CDROM= ${RESTRICTED}
@@ -23,13 +25,6 @@ MAN1= dot.1 dotty.1 lefty.1 neato.1 tcldot.1
SELFILEDIR= ${WRKSRC}/cmd/lefty/ws/x11/libfilereq
-post-extract:
- @${MV} ${SELFILEDIR}/dir.c ${SELFILEDIR}/Dir.c
- @${MV} ${SELFILEDIR}/draw.c ${SELFILEDIR}/Draw.c
- @${MV} ${SELFILEDIR}/path.c ${SELFILEDIR}/Path.c
- @${MV} ${SELFILEDIR}/selfile.c ${SELFILEDIR}/SelFile.c
- @${MV} ${SELFILEDIR}/sfinternal.h ${SELFILEDIR}/SFinternal.h
-
post-install:
${INSTALL_DATA} ${WRKSRC}/../doc/*.ps ${PREFIX}/share/doc/graphviz
${INSTALL_DATA} ${WRKSRC}/../doc/*.html ${PREFIX}/share/doc/graphviz
diff --git a/graphics/graphviz/distinfo b/graphics/graphviz/distinfo
index e9fee8ea5d29..d22e5028dc96 100644
--- a/graphics/graphviz/distinfo
+++ b/graphics/graphviz/distinfo
@@ -1 +1 @@
-MD5 (graphviz_1_21.src.unix.tgz) = 5825b237c178e62cb9d9aaff62b54a3e
+MD5 (graphviz_1_21.src.unix.tgz) = a724dea82855a2261373a5dcdfb6d51a
diff --git a/graphics/graphviz/files/patch-ac b/graphics/graphviz/files/patch-ac
index 1d661db9d1de..a9446867c3c6 100644
--- a/graphics/graphviz/files/patch-ac
+++ b/graphics/graphviz/files/patch-ac
@@ -4,7 +4,7 @@
#include <fcntl.h>
#include <signal.h>
#include <sys/wait.h>
-+#ifndef __FreeBSD__
++#ifndef HAVE_TERMIOS
#include <termio.h>
+#else
+#include <termios.h>
@@ -16,7 +16,7 @@
static int findpty (int *fd) {
char *majorp, *minorp;
char pty[32], tty[32];
-+#ifndef __FreeBSD__
++#ifndef HAVE_TERMIOS
struct termio tio;
+#else
+ struct termios tio;
@@ -28,7 +28,7 @@
if ((fd[0] = open (pty, O_RDWR)) >= 0) {
sprintf (tty, "/dev/tty%c%c", *majorp, *minorp);
if ((fd[1] = open (tty, O_RDWR)) >= 0) {
-+#ifndef __FreeBSD__
++#ifndef HAVE_TERMIOS
ioctl (fd[1], TCGETA, &tio);
tio.c_lflag &= ~ECHO;
ioctl (fd[1], TCSETA, &tio);