blob: 088b3e1647ad007ae81a8869d243a1b4087c4dfc (
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
|
# $NetBSD: Makefile,v 1.15 2003/07/17 22:53:45 grant Exp $
DISTNAME= psmisc-20.1
CATEGORIES= sysutils
PKGREVISION= 1
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=psmisc/}
MAINTAINER= jlam@NetBSD.org
HOMEPAGE= http://psmisc.sourceforge.net/
COMMENT= miscellaneous procfs tools: killall, pidof, and pstree
CONFLICTS+= pstree<=2.16
USE_BUILDLINK2= # defined
GNU_CONFIGURE= # defined
LIBS+= ${LIBGETOPT}
# "make install" doesn't install the link from killall -> pidof.
post-install:
${RM} -f ${PREFIX}/bin/pidof
${LN} -f ${PREFIX}/bin/killall ${PREFIX}/bin/pidof
.include "../../devel/libgetopt/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
|