9c8b5ede43
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
25 lines
684 B
Makefile
25 lines
684 B
Makefile
# $NetBSD: Makefile,v 1.23 2006/03/04 21:30:42 jlam Exp $
|
|
|
|
DISTNAME= psmisc-20.1
|
|
CATEGORIES= sysutils
|
|
PKGREVISION= 1
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=psmisc/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://psmisc.sourceforge.net/
|
|
COMMENT= Miscellaneous procfs tools: killall, pidof, and pstree
|
|
|
|
CONFLICTS+= pstree<=2.16
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
GNU_CONFIGURE= yes
|
|
LIBS+= ${BUILDLINK_LDADD.getopt}
|
|
|
|
# "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/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|