diff options
author | Niclas Zeising <zeising@FreeBSD.org> | 2013-12-16 11:11:09 +0000 |
---|---|---|
committer | Niclas Zeising <zeising@FreeBSD.org> | 2013-12-16 11:11:09 +0000 |
commit | 47be7a61c97731aa5fe34c56767ad5e10bb5c5d2 (patch) | |
tree | 2df88f8b6e2af92b78ac24eb382268b7c290efab /x11-servers/xephyr | |
parent | 7b9110d87c22c27df1baa93f8cb4cf30e205efc7 (diff) |
Notes
Diffstat (limited to 'x11-servers/xephyr')
-rw-r--r-- | x11-servers/xephyr/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/x11-servers/xephyr/Makefile b/x11-servers/xephyr/Makefile index bab652ef2770..f62b4b09b5b4 100644 --- a/x11-servers/xephyr/Makefile +++ b/x11-servers/xephyr/Makefile @@ -19,10 +19,16 @@ CONFIGURE_ARGS= --enable-kdrive --enable-xephyr --disable-dmx --disable-xvfb \ --disable-xnest --localstatedir=/var --without-dtrace SLAVE_PORT= yes -PLIST_FILES= bin/Xephyr +PLIST_FILES= bin/Xephyr man/man1/Xephyr.1.gz + +.include <bsd.port.options.mk> -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/hw/kdrive/ephyr/Xephyr ${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${WRKSRC}/hw/kdrive/ephyr/Xephyr ${STAGEDIR}${PREFIX}/bin/ +.if defined(WITH_NEW_XORG) + ${INSTALL_MAN} ${WRKSRC}/hw/kdrive/ephyr/man/Xephyr.1 ${STAGEDIR}${PREFIX}/man/man1/ +.else + ${INSTALL_MAN} ${WRKSRC}/hw/kdrive/ephyr/Xephyr.1 ${STAGEDIR}${PREFIX}/man/man1/ +.endif .include "${MASTERDIR}/Makefile" |