diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2003-03-26 09:31:42 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2003-03-26 09:31:42 +0000 |
commit | 981ba063de68f7dbb1f1bc10bc8b26ba10e3a9ee (patch) | |
tree | c119c5f5e19707868d3d88a3e20d11211ea34025 /sysutils/synergy/Makefile | |
parent | add cdonkey 0.8.9 (diff) |
Initial import of synergy 1.0.3
ynergy lets you easily share a single mouse and keyboard between
multiple computers with different operating systems.
Diffstat (limited to 'sysutils/synergy/Makefile')
-rw-r--r-- | sysutils/synergy/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sysutils/synergy/Makefile b/sysutils/synergy/Makefile new file mode 100644 index 000000000000..a501dd3dd1bc --- /dev/null +++ b/sysutils/synergy/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: synergy +# Date created: 26 March 2003 +# Whom: Kevin Lo <kevlo@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= synergy +PORTVERSION= 1.0.3 +CATEGORIES= sysutils +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME}2 + +MAINTAINER= kevlo@FreeBSD.org +COMMENT= Mouse and keyboard sharing utility + +GNU_CONFIGURE= yes +USE_X_PREFIX= yes + +DOCS= AUTHORS BUGS ChangeLog COPYING FAQ HISTORY INSTALL \ + NEWS README TODO + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for file in ${DOCS} + @${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} +.endfor +.endif + ${MKDIR} ${PREFIX}/share/examples/synergy + ${INSTALL_DATA} ${WRKSRC}/examples/synergy.conf ${PREFIX}/share/examples/synergy + +.include <bsd.port.mk> |