diff options
author | hubertf <hubertf@pkgsrc.org> | 2003-10-20 00:31:29 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2003-10-20 00:31:29 +0000 |
commit | 4d27f35bc154b044f4c0a9e63f3a52644a5151ee (patch) | |
tree | 30705e5312ce97c2abe10fe99529f71c59c46afd /sysutils/dmesg2gif/Makefile | |
parent | 74543e31dcf509e0367ee7cf207229f9cd9b041b (diff) | |
download | pkgsrc-4d27f35bc154b044f4c0a9e63f3a52644a5151ee.tar.gz |
Import dmesg2gif-1.0: Output dmesg(8) device tree as GIF graph
Read dmesg(8) output (e.g. from /var/run/dmesg.boot), and output the
device tree as GIF image to stdout.
Usage: cat /var/run/dmesg.boot | /usr/pkg/bin/dmesg2gif | xv -
Diffstat (limited to 'sysutils/dmesg2gif/Makefile')
-rw-r--r-- | sysutils/dmesg2gif/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/sysutils/dmesg2gif/Makefile b/sysutils/dmesg2gif/Makefile new file mode 100644 index 00000000000..552e9de2c38 --- /dev/null +++ b/sysutils/dmesg2gif/Makefile @@ -0,0 +1,25 @@ +# $NetBSD: Makefile,v 1.1.1.1 2003/10/20 00:31:29 hubertf Exp $ +# + +DISTNAME= dmesg2gif-1.0 +WRKSRC= ${WRKDIR} +CATEGORIES= sysutils +MASTER_SITES= # empty +DISTFILES= # empty + +MAINTAINER= hubertf@NetBSD.org +COMMENT= Output dmesg(8) device tree as GIF graph + +USE_PKGINSTALL= YES + +DEPENDS+= graphviz-[0-9]*:.../../graphics/graphviz + +EXTRACT_ONLY= # empty +NO_CHECKSUM= yes +NO_CONFIGURE= yes +NO_BUILD= yes + +do-install: + ${INSTALL_SCRIPT} ${FILESDIR}/dmesg2gif ${PREFIX}/bin/dmesg2gif + +.include "../../mk/bsd.pkg.mk" |