diff options
author | lesi <lesi@FreeBSD.org> | 2007-07-03 02:02:22 +0800 |
---|---|---|
committer | lesi <lesi@FreeBSD.org> | 2007-07-03 02:02:22 +0800 |
commit | cc2c66790b04b1be743c6b9b3532e2e30059a0f0 (patch) | |
tree | 5135a4777a76f5afd7c7525e4078ee683796225d | |
parent | decdc70222841a69a63be227eeb4584bb6e9341b (diff) | |
download | freebsd-ports-graphics-cc2c66790b04b1be743c6b9b3532e2e30059a0f0.tar.gz freebsd-ports-graphics-cc2c66790b04b1be743c6b9b3532e2e30059a0f0.tar.zst freebsd-ports-graphics-cc2c66790b04b1be743c6b9b3532e2e30059a0f0.zip |
Only depend on xsm if /usr/bin/rsh is present.
PR: ports/112806
-rw-r--r-- | x11/xorg-apps/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/x11/xorg-apps/Makefile b/x11/xorg-apps/Makefile index 1df59bb8865..5ebb3fcb337 100644 --- a/x11/xorg-apps/Makefile +++ b/x11/xorg-apps/Makefile @@ -99,7 +99,6 @@ RUN_DEPENDS= bdftopcf:${PORTSDIR}/x11-fonts/bdftopcf \ xsetmode:${PORTSDIR}/x11/xsetmode \ xsetpointer:${PORTSDIR}/x11/xsetpointer \ xsetroot:${PORTSDIR}/x11/xsetroot \ - xsm:${PORTSDIR}/x11/xsm \ xstdcmap:${PORTSDIR}/x11/xstdcmap \ xtrapchar:${PORTSDIR}/x11/xtrap \ xvidtune:${PORTSDIR}/x11/xvidtune \ @@ -109,6 +108,10 @@ RUN_DEPENDS= bdftopcf:${PORTSDIR}/x11-fonts/bdftopcf \ xwud:${PORTSDIR}/x11/xwud \ xterm:${PORTSDIR}/x11/xterm +.if exists(/usr/bin/rsh) +RUN_DEPENDS+= xsm:${PORTSDIR}/x11/xsm +.endif + NO_BUILD= yes do-install: |