[oe] [PATCH] synergy: project has moved from synergy.googlecode.com

Rudolf J Streif rudolf.streif at gmail.com
Thu Aug 20 20:19:02 UTC 2015


The synergy project on synergy.googlecode.com is defunct. The
sources cannot be downloaded from there anymore. The new project
home is synergy-project.org, but sources can only be downloaded
from ther with a login. The source code repo is on github.com/synergy.

New recipe to check out the code from GitHub. The code contains
zip archives for gmock and gtest, which need to be extracted before
do_configure.

Signed-off-by: Rudolf J Streif <rudolf.streif at gmail.com>
---
 meta-oe/recipes-support/synergy/synergy_git.bb | 33 ++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)
 create mode 100644 meta-oe/recipes-support/synergy/synergy_git.bb

diff --git a/meta-oe/recipes-support/synergy/synergy_git.bb b/meta-oe/recipes-support/synergy/synergy_git.bb
new file mode 100644
index 0000000..8650685
--- /dev/null
+++ b/meta-oe/recipes-support/synergy/synergy_git.bb
@@ -0,0 +1,33 @@
+SUMMARY = "Synergy - control multiple computers with one keyboard and mouse"
+HOMEPAGE = "http://synergy-project.org"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=0f366945b209c5523e39889f636af00a"
+LICENSE = "GPL-2.0"
+SECTION = "x11/utils"
+
+DEPENDS = "libx11 libxtst libxinerama"
+
+SRC_URI = "git://github.com/synergy/synergy.git;protocol=http"
+
+# HEAD
+SRCREV_pn-synergy ?= "${AUTOREV}"
+
+# Version 1.7.4-rc8
+SRCREV_pn-synergy ?= "c734bab59ecb7703605e01438e6bff4338b5cb34"
+
+S = "${WORKDIR}/git"
+
+inherit cmake
+
+do_unpack_extra() {
+    cd ${S}/ext
+    for file in *.zip; do
+        fname="${file##*/}"
+        unzip $file -d ${fname%.*}
+    done
+}
+addtask unpack_extra after do_unpack before do_patch
+
+do_install() {
+    install -d ${D}/usr/bin
+    install -m 0755 ${S}/bin/synergy* ${D}/usr/bin/
+}
-- 
2.1.0




More information about the Openembedded-devel mailing list