View | Details | Raw Unified | Return to bug 152718 | Differences between
and this patch

Collapse All | Expand All

(-)sysutils/pdsh/Makefile (-1 / +47 lines)
Lines 16-26 Link Here
16
16
17
LICENSE=	GPLv2
17
LICENSE=	GPLv2
18
18
19
CONFIGURE_ARGS=	--with-ssh
20
USE_BZIP2=	yes
19
USE_BZIP2=	yes
21
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
22
USE_PERL5_BUILD=yes
21
USE_PERL5_BUILD=yes
23
22
23
OPTIONS=	SSH		"Enable SSH support" On \
24
		DSHGROUPS	"Enable DSH groups" On \
25
		NETGROUP	"Enable NIS Netgroup support" Off \
26
		READLINE	"Enable GNU readline support" Off \
27
		RSH		"Enable RSH support" Off 
28
29
.include <bsd.port.options.mk>
30
31
.if defined(WITH_SSH)
32
CONFIGURE_ARGS+=	--with-ssh
33
PLIST_SUB+=		SSH=""
34
.else
35
CONFIGURE_ARGS+=	--without-ssh
36
PLIST_SUB+=		SSH="@comment "
37
.endif
38
39
.if defined(WITH_DSHGROUPS)
40
CONFIGURE_ARGS+=	--with-dshgroups
41
PLIST_SUB+=		DSH=""
42
.else
43
CONFIGURE_ARGS+=	--without-dshgroups
44
PLIST_SUB+=		DSH="@comment "
45
.endif
46
47
.if defined(WITH_NETGROUP)
48
CONFIGURE_ARGS+=	--with-netgroup
49
PLIST_SUB+=		NETGROUP=""
50
.else
51
CONFIGURE_ARGS+=	--without-netgroup
52
PLIST_SUB+=		NETGROUP="@comment "
53
.endif
54
55
.if defined(WITH_READLINE)
56
CONFIGURE_ARGS+=	--with-readline
57
LIB_DEPENDS+=		readline:${PORTSDIR}/devel/readline
58
.else
59
CONFIGURE_ARGS+=	--without-readline
60
.endif
61
62
.if defined(WITH_RSH)
63
CONFIGURE_ARGS+=	--with-rsh
64
PLIST_SUB+=		RSH=""
65
.else
66
CONFIGURE_ARGS+=	--without-rsh
67
PLIST_SUB+=		RSH="@comment "
68
.endif
69
24
MAN1=		dshbak.1 pdcp.1 pdsh.1
70
MAN1=		dshbak.1 pdcp.1 pdsh.1
25
MLINKS=		pdcp.1 rpdcp.1
71
MLINKS=		pdcp.1 rpdcp.1
26
72
(-)sysutils/pdsh/pkg-plist (-6 / +12 lines)
Lines 6-15 Link Here
6
lib/pdsh/execcmd.a
6
lib/pdsh/execcmd.a
7
lib/pdsh/execcmd.la
7
lib/pdsh/execcmd.la
8
lib/pdsh/execcmd.so
8
lib/pdsh/execcmd.so
9
lib/pdsh/sshcmd.a
9
%%DSH%%lib/pdsh/dshgroup.a
10
lib/pdsh/sshcmd.la
10
%%DSH%%lib/pdsh/dshgroup.la
11
lib/pdsh/sshcmd.so
11
%%DSH%%lib/pdsh/dshgroup.so
12
lib/pdsh/xrcmd.a
12
%%NETGROUP%%lib/pdsh/netgroup.a
13
lib/pdsh/xrcmd.la
13
%%NETGROUP%%lib/pdsh/netgroup.la
14
lib/pdsh/xrcmd.so
14
%%NETGROUP%%lib/pdsh/netgroup.so
15
%%SSH%%lib/pdsh/sshcmd.a
16
%%SSH%%lib/pdsh/sshcmd.la
17
%%SSH%%lib/pdsh/sshcmd.so
18
%%RSH%%lib/pdsh/xrcmd.a
19
%%RSH%%lib/pdsh/xrcmd.la
20
%%RSH%%lib/pdsh/xrcmd.so
15
@dirrm lib/pdsh
21
@dirrm lib/pdsh

Return to bug 152718