blob: c1c80fb6fe9c7b2e5d54adfe2159b14e886ef2fa (
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
|
# $NetBSD: Makefile,v 1.11 2005/07/16 01:19:20 jlam Exp $
#
DISTNAME= dmesg2gif-1.3
CATEGORIES= sysutils
MASTER_SITES= # empty
DISTFILES= # empty
MAINTAINER= hubertf@NetBSD.org
COMMENT= Output dmesg(8) device tree as GIF image
DEPENDS+= graphviz-[0-9]*:../../graphics/graphviz
WRKSRC= ${WRKDIR}
EXTRACT_ONLY= # empty
NO_BUILD= yes
NO_CHECKSUM= yes
NO_CONFIGURE= yes
USE_TOOLS+= perl:run
INSTALLATION_DIRS= bin man/man1
do-install:
${INSTALL_SCRIPT} ${FILESDIR}/dmesg2gif ${PREFIX}/bin/dmesg2gif
${INSTALL_MAN} ${FILESDIR}/dmesg2gif.1 ${PREFIX}/man/man1/dmesg2gif.1
.include "../../mk/bsd.pkg.mk"
|