blob: 326ec485b1fb61bdf6e0927280801b7c3f682256 (
plain) (
blame)
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
27
|
# New ports collection Makefile for: memgrep
# Date created: 22 February 2003
# Whom: Clement Laforet <sheepkiller@cultdeadsheep.org>
#
# $FreeBSD$
#
PORTNAME= memgrep
PORTVERSION= 0.7.0
CATEGORIES= sysutils
MASTER_SITES= http://www.hick.org/code/skape/memgrep/
MAINTAINER= sheepkiller@cultdeadsheep.org
COMMENT= Utility to manipulate memory from running processes and core files
HAS_CONFIGURE= yes
INSTALLS_SHLIB= yes
ONLY_FOR_ARCHS= i386
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}/html
${INSTALL_DATA} ${WRKSRC}/docs/html/* ${DOCSDIR}/html
.endif
.include <bsd.port.mk>
|