aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesús Daniel Colmenares Oviedo <dtxdf@FreeBSD.org>2026-02-05 07:09:31 +0000
committerJesús Daniel Colmenares Oviedo <dtxdf@FreeBSD.org>2026-02-05 07:10:37 +0000
commit0589ed4aa5ba254c2bf1c6b5d640f331b1dad2e3 (patch)
tree93a0c67587f84c0a2ee3a47e3587cbf6c7a1c862
parent6fb64b093146f2d2731aed954d247b9d5ea84a38 (diff)
sysutils/xclipsync: New port: Trivial tool for synchronizing the clipboard between two X11 sessions
xclipsync is a simple and lightweight script for synchronizing the clipboard between two X servers created, for example, by Xephyr(1) or Xnest(1), or even for synchronizing the clipboard between the host and another X server. WWW: https://github.com/DtxdF/xclipsync
-rw-r--r--sysutils/Makefile1
-rw-r--r--sysutils/xclipsync/Makefile26
-rw-r--r--sysutils/xclipsync/distinfo3
-rw-r--r--sysutils/xclipsync/pkg-descr4
4 files changed, 34 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile
index 9628edae66aa..3a5c9026bf83 100644
--- a/sysutils/Makefile
+++ b/sysutils/Makefile
@@ -1615,6 +1615,7 @@
SUBDIR += xbatt
SUBDIR += xbattbar
SUBDIR += xcdroast
+ SUBDIR += xclipsync
SUBDIR += xcp
SUBDIR += xcpustate
SUBDIR += xdu
diff --git a/sysutils/xclipsync/Makefile b/sysutils/xclipsync/Makefile
new file mode 100644
index 000000000000..03df6285c227
--- /dev/null
+++ b/sysutils/xclipsync/Makefile
@@ -0,0 +1,26 @@
+PORTNAME= xclipsync
+DISTVERSIONPREFIX= v
+DISTVERSION= 0.1.2
+CATEGORIES= sysutils
+
+MAINTAINER= dtxdf@FreeBSD.org
+COMMENT= Trivial tool for synchronizing the clipboard between two X11 sessions
+
+LICENSE= BSD3CLAUSE
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+RUN_DEPENDS= xclip>=0:x11/xclip
+
+USES= tk:wrapper
+USE_GITHUB= yes
+GH_ACCOUNT= DtxdF
+
+NO_ARCH= yes
+NO_BUILD= yes
+
+PLIST_FILES= bin/xclipsync \
+ libexec/xclipsync/smart-xclip-out.sh \
+ libexec/xclipsync/xclipfrom \
+ share/man/man1/xclipsync.1.gz
+
+.include <bsd.port.mk>
diff --git a/sysutils/xclipsync/distinfo b/sysutils/xclipsync/distinfo
new file mode 100644
index 000000000000..2d9c3aae9a3c
--- /dev/null
+++ b/sysutils/xclipsync/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1770275072
+SHA256 (DtxdF-xclipsync-v0.1.2_GH0.tar.gz) = f77f40957d615c11a726acbbf4e4e9effec25568a080e4e217a483eb01728dcf
+SIZE (DtxdF-xclipsync-v0.1.2_GH0.tar.gz) = 5217
diff --git a/sysutils/xclipsync/pkg-descr b/sysutils/xclipsync/pkg-descr
new file mode 100644
index 000000000000..f80700f17521
--- /dev/null
+++ b/sysutils/xclipsync/pkg-descr
@@ -0,0 +1,4 @@
+xclipsync is a simple and lightweight script for synchronizing the
+clipboard between two X servers created, for example, by Xephyr(1) or
+Xnest(1), or even for synchronizing the clipboard between the host and
+another X server.