summaryrefslogtreecommitdiff
path: root/sysutils/memdump/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/memdump/Makefile')
-rw-r--r--sysutils/memdump/Makefile37
1 files changed, 37 insertions, 0 deletions
diff --git a/sysutils/memdump/Makefile b/sysutils/memdump/Makefile
new file mode 100644
index 000000000000..e40c2fe3db35
--- /dev/null
+++ b/sysutils/memdump/Makefile
@@ -0,0 +1,37 @@
+# Ports collection makefile for: memdump
+# Date created: 16 June 2004
+# Whom: Yonatan <Yonatan@xpert.com>
+#
+# $FreeBSD$
+#
+
+PORTNAME= memdump
+PORTVERSION= 1.0
+CATEGORIES= sysutils
+MASTER_SITES= http://www.porcupine.org/forensics/
+
+MAINTAINER= yonatan@xpert.com
+COMMENT= Forensic utility for memory-dumping
+
+.include <bsd.port.pre.mk>
+
+.if ( ${OSVERSION} >= 500000 )
+IGNORE= Only supports FreeBSD up to 4.x (yet?)
+.endif
+
+ALL_TARGET= what
+
+PLIST_FILES= bin/memdump
+PORTDOCS= README LICENSE
+MAN1= memdump.1
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/memdump ${PREFIX}/bin
+ ${INSTALL_MAN} ${WRKSRC}/memdump.1 ${MANPREFIX}/man/man1
+. if !defined(NOPORTDOCS)
+ ${MKDIR} ${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/LICENSE ${DOCSDIR}
+. endif
+
+.include <bsd.port.post.mk>