View | Details | Raw Unified | Return to bug 143103
Collapse All | Expand All

(-)Makefile (-6 / +5 lines)
Lines 35-40 Link Here
35
PLIST_SUB+=	HAVE_ICA_CERTS="@comment "
35
PLIST_SUB+=	HAVE_ICA_CERTS="@comment "
36
.endif
36
.endif
37
37
38
SUB_FILES=	wfcmgr wfica
39
SUB_LIST=	CDIR=${CDIR}
40
38
.include <bsd.port.pre.mk>
41
.include <bsd.port.pre.mk>
39
42
40
.if defined(BATCH) || defined(PACKAGE_BUILDING)
43
.if defined(BATCH) || defined(PACKAGE_BUILDING)
Lines 76-88 Link Here
76
		${ECHO} "-----------------------------------------------------------" ; \
79
		${ECHO} "-----------------------------------------------------------" ; \
77
		${FALSE} ; \
80
		${FALSE} ; \
78
	fi
81
	fi
79
	${SED} s%DESTINATION%${CDIR}% < ${FILESDIR}/wfcmgr \
80
		> ${WRKSRC}/wfcmgr.x
81
	${SED} s%DESTINATION%${CDIR}% < ${FILESDIR}/wfica \
82
		> ${WRKSRC}/wfica.x
83
	cd ${WRKSRC} && ${SH} -c './setupwfc'
82
	cd ${WRKSRC} && ${SH} -c './setupwfc'
84
	${INSTALL_SCRIPT} ${WRKSRC}/wfcmgr.x ${PREFIX}/bin/wfcmgr
83
	${INSTALL_SCRIPT} ${WRKDIR}/wfcmgr ${PREFIX}/bin/wfcmgr
85
	${INSTALL_SCRIPT} ${WRKSRC}/wfica.x ${PREFIX}/bin/wfica
84
	${INSTALL_SCRIPT} ${WRKDIR}/wfica ${PREFIX}/bin/wfica
86
# XXX: This is missing a "${BRANDELF} -t Linux <executables>".
85
# XXX: This is missing a "${BRANDELF} -t Linux <executables>".
87
86
88
.if defined(ICA_CERTS)
87
.if defined(ICA_CERTS)
(-)pkg-descr (-1 lines)
Lines 16-22 Link Here
16
If your Citrix server does not have one of the supplied root-certificates,
16
If your Citrix server does not have one of the supplied root-certificates,
17
you can copy the certificate to /usr/ports/distfiles and add the
17
you can copy the certificate to /usr/ports/distfiles and add the
18
following line to your /etc/make.conf:
18
following line to your /etc/make.conf:
19
20
	ICA_CERTS=mycert.crt
19
	ICA_CERTS=mycert.crt
21
20
22
It will then automatically be installed and removed with the normal
21
It will then automatically be installed and removed with the normal
(-)files/wfcmgr (-3 lines)
Removed Link Here
1
#!/bin/sh
2
export ICAROOT=DESTINATION
3
exec $ICAROOT/wfcmgr
(-)files/wfcmgr.in (+3 lines)
Added Link Here
1
#!/bin/sh
2
export ICAROOT=%%CDIR%%
3
exec $ICAROOT/wfcmgr
(-)files/wfica (-3 lines)
Removed Link Here
1
#!/bin/sh
2
export ICAROOT=DESTINATION
3
exec $ICAROOT/wfica "$@"
(-)files/wfica.in (+3 lines)
Added Link Here
1
#!/bin/sh
2
export ICAROOT=%%CDIR%%
3
exec $ICAROOT/wfica "$@"

Return to bug 143103