summaryrefslogtreecommitdiff
path: root/pkgtools/pkgdepgraph/INSTALL
blob: fb13ad41acb9a8b66f16700a99296972ffcb867e (plain)
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
#!/bin/sh
#
# $NetBSD: INSTALL,v 1.2 2003/03/06 21:13:13 atatat Exp $

PKGNAME=$1
STAGE=$2

case ${STAGE} in
PRE-INSTALL)
	;;

POST-INSTALL)
	echo "============================================================"
	echo "Note that in order to facilitate the use of this package on"
	echo ""\""client machines"\"", the dependency of this package upon the"
	echo ""\""graphviz"\"" package (located in graphics/graphviz) has been"
	echo "removed.  You must install the "\""graphviz"\"" package in order"
	echo "to view the graph data that this program generates, though"
	echo "much of the functionality of this program does not require"
	echo "you to look at the graphs."
	echo "============================================================"
	;;

*)
	echo "Unexpected argument: ${STAGE}"
	exit 1
	;;
esac

exit 0