blob: 3b38be1919027c20fcf0ce7f9612bfd789ff7365 (
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
28
29
30
31
32
|
# New ports collection makefile for: NetBSD's pgrep/pkill
# Date created: Tue Nov 5 14:01:47 UTC 2002
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= pkill
PORTVERSION= 0.2
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= lioux
DISTNAME= ${PORTNAME}-current-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= NetBSD's pgrep and pkill: find or signal processes matching criteria
WRKSRC= ${WRKDIR}/${PORTNAME}-current
MAKE_ENV= BINDIR=${PREFIX}/bin \
MANDIR=${PREFIX}/man/man
MANCOMPRESSED= yes
MAN1= pgrep.1 pkill.1
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 502110
IGNORE= "is included in the base system"
.endif
.include <bsd.port.post.mk>
|