mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
604b1dfaa8
dump metadata along with a kernel backtrace, in order to assist FreeBSD developers in identifying and fixing common panics. Discussed on: freebsd-hackers
26 lines
539 B
Makefile
26 lines
539 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= panicmail
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.daemonology.net/panicmail/
|
|
|
|
MAINTAINER= cperciva@FreeBSD.org
|
|
COMMENT= Automatically report kernel panics
|
|
|
|
LICENSE= BSD
|
|
|
|
RUN_DEPENDS= pkesh:${PORTSDIR}/security/pkesh
|
|
|
|
NO_BUILD= yes
|
|
NO_INSTALL= yes
|
|
|
|
PLIST_FILES= etc/rc.d/panicmail \
|
|
etc/cperciva-panicmail.pem
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/panicmail ${STAGEDIR}${PREFIX}/etc/rc.d/
|
|
${INSTALL_DATA} ${WRKSRC}/cperciva-panicmail.pem ${STAGEDIR}${PREFIX}/etc
|
|
|
|
.include <bsd.port.mk>
|