diff options
author | snj <snj@pkgsrc.org> | 2004-01-29 22:25:06 +0000 |
---|---|---|
committer | snj <snj@pkgsrc.org> | 2004-01-29 22:25:06 +0000 |
commit | 0555bf0ada33f1946489aa104d84ca7bbaeffbd8 (patch) | |
tree | e2d23309ddb920242c0dc1a2bf14223138319640 /pkgtools | |
parent | d0c47e6b081d43b73616493b7aea3b0b66c91f45 (diff) | |
download | pkgsrc-0555bf0ada33f1946489aa104d84ca7bbaeffbd8.tar.gz |
Put post-install message into MESSAGE, so that people using
PKGSRC_MESSAGE_RECIPIENTS will get a copy mailed to them.
Okayed by jmmv and wiz.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkgdepgraph/INSTALL | 22 | ||||
-rw-r--r-- | pkgtools/pkgdepgraph/MESSAGE | 11 | ||||
-rw-r--r-- | pkgtools/pkgdepgraph/Makefile | 5 |
3 files changed, 12 insertions, 26 deletions
diff --git a/pkgtools/pkgdepgraph/INSTALL b/pkgtools/pkgdepgraph/INSTALL deleted file mode 100644 index d7db9b0b225..00000000000 --- a/pkgtools/pkgdepgraph/INSTALL +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh -# -# $NetBSD: INSTALL,v 1.3 2003/08/30 20:23:00 jlam Exp $ - -PKGNAME=$1 -STAGE=$2 - -case ${STAGE} in -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 "============================================================" - ;; -esac - -exit 0 diff --git a/pkgtools/pkgdepgraph/MESSAGE b/pkgtools/pkgdepgraph/MESSAGE new file mode 100644 index 00000000000..01cc50905b3 --- /dev/null +++ b/pkgtools/pkgdepgraph/MESSAGE @@ -0,0 +1,11 @@ +=========================================================================== +$NetBSD: MESSAGE,v 1.1 2004/01/29 22:25:06 snj Exp $ + +Note that in order to facilitate the use of this package on "client +machines", the dependency of this package upon the "graphviz" package +(located in graphics/graphviz) has been removed. You must install the +"graphviz" package in order to view the graph data that this program +generates, though much of the functionality of this program does not +require you to look at the graphs. + +=========================================================================== diff --git a/pkgtools/pkgdepgraph/Makefile b/pkgtools/pkgdepgraph/Makefile index e649ea2454b..15df3526dc3 100644 --- a/pkgtools/pkgdepgraph/Makefile +++ b/pkgtools/pkgdepgraph/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2004/01/20 12:23:57 agc Exp $ +# $NetBSD: Makefile,v 1.14 2004/01/29 22:25:06 snj Exp $ # DISTNAME= pkgdepgraph-2.5 @@ -58,7 +58,4 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/pkgdepgraph.0 ${PREFIX}/man/cat1 ${INSTALL_MAN} ${WRKSRC}/pkgdepgraph.1 ${PREFIX}/man/man1 -post-install: - @${SH} ${INSTALL_FILE} ${PKGNAME} POST-INSTALL - .include "../../mk/bsd.pkg.mk" |