blob: 5c9bcc5ed2f7a0b4c9bec800d261b8c205da8354 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# $FreeBSD$
PORTNAME= synergy
PORTVERSION= 1.3.8
DISTVERSIONSUFFIX= -Source
CATEGORIES= sysutils
MASTER_SITES= GOOGLE_CODE
MAINTAINER= kevlo@FreeBSD.org
COMMENT= Mouse and keyboard sharing utility
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
USES= cmake
USE_XORG= ice xtst x11 sm
MAKE_JOBS_UNSAFE=yes
CFLAGS+= -L${LOCALBASE}/lib -I${LOCALBASE}/include
PLIST_FILES= bin/synergys bin/synergyc
PORTEXAMPLES= synergy.conf.example synergy.conf.example-basic \
synergy.conf.example-advanced
NO_STAGE= yes
do-install:
.for f in synergys synergyc
${INSTALL_PROGRAM} ${WRKSRC}/bin/${f} ${PREFIX}/bin
.endfor
.if !defined(NOPORTEXAMPLES)
${MKDIR} ${EXAMPLESDIR}
.for f in ${PORTEXAMPLES}
${INSTALL_DATA} ${WRKSRC}/doc/${f} ${EXAMPLESDIR}
.endfor
.endif
.include <bsd.port.mk>
|