diff --git a/sysutils/touchegg/Makefile b/sysutils/touchegg/Makefile index 1f7833b77867..50829c10f1ea 100644 --- a/sysutils/touchegg/Makefile +++ b/sysutils/touchegg/Makefile @@ -1,38 +1,38 @@ PORTNAME= touchegg -DISTVERSION= 2.0.15 -PORTREVISION= 1 +DISTVERSION= 2.0.16 CATEGORIES= sysutils MAINTAINER= yuri@FreeBSD.org COMMENT= Multi-touch gesture recognizer WWW= https://github.com/JoseExposito/touchegg LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= libgudev>0:devel/libgudev LIB_DEPENDS= libharfbuzz.so:print/harfbuzz \ libinotify.so:devel/libinotify \ libinput.so:x11/libinput \ libpugixml.so:textproc/pugixml \ libudev.so:devel/libudev-devd USES= cmake:testing compiler:c++17-lang desktop-file-utils gnome localbase:ldflags pkgconfig xorg USE_GNOME= cairo gdkpixbuf2 gtk30 USE_XORG= x11 xi xrandr xtst USE_GITHUB= yes GH_ACCOUNT= JoseExposito CMAKE_OFF= USE_SYSTEMD USE_SYSTEMD CMAKE_ARGS= -DCMAKE_INSTALL_FULL_DATAROOTDIR=${LOCALBASE}/etc \ -DCMAKE_INSTALL_DATAROOTDIR=etc LDFLAGS+= -linotify post-install: @${MV} \ ${STAGEDIR}${ETCDIR}/touchegg.conf \ ${STAGEDIR}${ETCDIR}/touchegg.conf.sample + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/touchegg .include diff --git a/sysutils/touchegg/distinfo b/sysutils/touchegg/distinfo index acc80a6f5242..725224fb8c80 100644 --- a/sysutils/touchegg/distinfo +++ b/sysutils/touchegg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673768637 -SHA256 (JoseExposito-touchegg-2.0.15_GH0.tar.gz) = b620049eb48ca911e606c91ad8655eb66b352e384975bfd721c184d0e2356edc -SIZE (JoseExposito-touchegg-2.0.15_GH0.tar.gz) = 26825847 +TIMESTAMP = 1687133982 +SHA256 (JoseExposito-touchegg-2.0.16_GH0.tar.gz) = 828ed2ca4d5d1aaab5c046460a88a7c33a49cc98b87d4c3943e3494da1ddb93c +SIZE (JoseExposito-touchegg-2.0.16_GH0.tar.gz) = 26826100 diff --git a/sysutils/touchegg/files/patch-src_daemon_dbus.h b/sysutils/touchegg/files/patch-src_daemon_dbus.h deleted file mode 100644 index 0155cf2f5945..000000000000 --- a/sysutils/touchegg/files/patch-src_daemon_dbus.h +++ /dev/null @@ -1,16 +0,0 @@ -- Unix Domain Socket with Abstract Socket Address aren't supported on FreeBSD - ---- src/daemon/dbus.h.orig 2023-01-15 09:10:50 UTC -+++ src/daemon/dbus.h -@@ -18,7 +18,11 @@ - #ifndef DAEMON_DBUS_H_ - #define DAEMON_DBUS_H_ - -+#if defined(__FreeBSD__) -+constexpr auto DBUS_ADDRESS = "unix:path=/tmp/touchegg#0"; -+#else - constexpr auto DBUS_ADDRESS = "unix:abstract=touchegg"; -+#endif - - constexpr auto DBUS_OBJECT_PATH = "/io/github/joseexposito/Touchegg"; -