blob: 6034cb30568ceec1e00f27891d9aecd4dc9819cc (
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
33
34
35
36
37
38
39
40
41
42
|
# Created by: rantapaa@uswest.net
# $FreeBSD$
PORTNAME= psmisc
PORTVERSION= 22.16
CATEGORIES= sysutils
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/
MAINTAINER= douglas@douglasthrift.net
COMMENT= Port of the Linux pstree, killall, and pidof commands
LICENSE= GPLv2
BUILD_DEPENDS= gsed:${PORTSDIR}/textproc/gsed
CONFLICTS= pidof-[0-9]* pstree-2.[0-9]*
GNU_CONFIGURE= yes
USE_GMAKE= yes
OPTIONS_DEFINE= NLS
.include <bsd.port.options.mk>
MAN1= killall.1 pstree.1
.if ${PORT_OPTIONS:MNLS}
USES+= gettext
CONFIGURE_ARGS= --enable-nls
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS= --disable-nls
PLIST_SUB+= NLS="@comment "
.endif
post-patch:
@${REINPLACE_CMD} -e '/^#define COMM_LEN / s|16|254|' ${WRKSRC}/src/comm.h
post-install:
@${LN} -fs ${PREFIX}/bin/killall ${PREFIX}/bin/pidof
.include <bsd.port.mk>
|