ab8e840802
caused multi-second pauses for each event rendering it useless, due to queueing in xcb buffers not triggering X file descriptor changes. Patch from http://bugs.gentoo.org/show_bug.cgi?id=257794 OK & hint in the right direction from maintainer dim@ :)
39 lines
972 B
Makefile
39 lines
972 B
Makefile
# $OpenBSD: Makefile,v 1.9 2009/09/03 18:05:35 pvalchev Exp $
|
|
|
|
COMMENT= mouse and keyboard sharing utility
|
|
|
|
DISTNAME= synergy-1.3.1
|
|
PKGNAME= ${DISTNAME}p3
|
|
CATEGORIES= net
|
|
|
|
HOMEPAGE= http://synergy2.sourceforge.net/
|
|
|
|
MAINTAINER= Dimitry Andric <dim@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= ICE SM X11 Xext Xinerama Xtst c m pthread \
|
|
pthread-stubs stdc++ xcb
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=synergy2/}
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
USE_X11= Yes
|
|
NO_REGRESS= Yes
|
|
|
|
post-install:
|
|
@${INSTALL_DATA_DIR} ${PREFIX}/share/doc/synergy
|
|
@cd ${WRKDIST}/doc && tar cf - *.html *.css images | \
|
|
tar -C ${PREFIX}/share/doc/synergy -xpf -
|
|
@chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/doc/synergy
|
|
@${INSTALL_DATA_DIR} ${PREFIX}/share/examples/synergy
|
|
@${INSTALL_DATA} ${WRKBUILD}/examples/synergy.conf \
|
|
${PREFIX}/share/examples/synergy
|
|
|
|
.include <bsd.port.mk>
|