1
0
forked from ports/contrib

synergy: 2.0.0 -> 1.11.1

This commit is contained in:
Tim Biermann 2020-05-28 15:50:35 +00:00
parent 2e81bf8cb1
commit 9f1d1c3bb7
3 changed files with 10 additions and 14 deletions

View File

@ -1,5 +1,5 @@
drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/ drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/synergy-core -rwxr-xr-x root/root usr/bin/synergy
-rwxr-xr-x root/root usr/bin/synergyc -rwxr-xr-x root/root usr/bin/synergyc
-rwxr-xr-x root/root usr/bin/synergys -rwxr-xr-x root/root usr/bin/synergys

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF355YuBMdDAmIVLd0808L+hFbm74mpeT+mlj4K1S+3tSp7azBLihr3A4K8kaZBxrfpWp2r6lzPhaLWvwZo1L4Xgg= RWSagIOpLGJF3yOp24aBvHQ/fPaOf/zKjnZGlcF2NqNpsCXKau5zM/6cyPAActMnG6TWYXZoNUdIEwObAqa/pBS+CqokLmT+AA0=
SHA256 (Pkgfile) = 9a02e01f16835619265f6fc6f2a77469ff4909070200fea0477e63c18e7677a3 SHA256 (Pkgfile) = a799a55ac0118303c05f6e0910f3fa14afe1f6e3c27f20c595289f058554d55a
SHA256 (.footprint) = cc92690b3ec13280e7810525f99903f3b9dc2485036783507d1d11e9d1979036 SHA256 (.footprint) = bc82db54aefa88b2d5fb268ce5e0d5420c0b763983c5bdc6fdd5d008a237eca9
SHA256 (v2.0.0-stable.tar.gz) = d4afbbde2c819da44588afbf66ebb3376494d627f6bc4efaf0144b3fb3a41905 SHA256 (synergy-1.11.1.tar.gz) = 338e5fda0323f8c24259d8fc26e513bdc4f0f249bf66e9722953bb8e6311f88b

View File

@ -1,23 +1,19 @@
# Description: Share mouse and keyboard between multiple computers # Description: Share mouse and keyboard between multiple computers
# URL: http://synergy-foss.org/ # URL: http://synergy-foss.org/
# Maintainer: Thomas Penteker, tek at serverop dot de # Maintainer: Thomas Penteker, tek at serverop dot de
# Depends on: xorg-libxrender xorg-libxdmcp xorg-libxcb avahi xorg-libxtst # Depends on: avahi cmake qt5 xorg-libxcb xorg-libxdmcp xorg-libxrender xorg-libxtst
name=synergy name=synergy
version=2.0.0 version=1.11.1
release=1 release=1
source=(https://github.com/symless/synergy-core/archive/v${version}-stable.tar.gz) source=(https://github.com/symless/synergy-core/archive/v${version}-stable/$name-$version.tar.gz)
build() { build() {
# work around a failing cmake file by defining re/version
cmake -S$name-core-$version-stable -Bbuild -GNinja \ cmake -S$name-core-$version-stable -Bbuild -GNinja \
-DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_PREFIX=/usr
-DSYNERGY_REVISION=0bd448d5 \
-DSYNERGY_VERSION=$version .
cmake --build build cmake --build build
install -d -m 755 $PKG/usr/bin install -d -m 755 $PKG/usr/bin
install -D -m 755 build/bin/synergy $PKG/usr/bin
install -D -m 755 build/bin/synergyc $PKG/usr/bin install -D -m 755 build/bin/synergyc $PKG/usr/bin
install -D -m 755 build/bin/synergy-core $PKG/usr/bin
install -D -m 755 build/bin/synergys $PKG/usr/bin install -D -m 755 build/bin/synergys $PKG/usr/bin
} }