Commit ea8e927e authored by Rene Ladan's avatar Rene Ladan
Browse files

x11/wapanel: Remove expired port

parent 5bd0a2dc
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5464,3 +5464,4 @@ sysutils/logstash7||2026-06-30|Has expired: 7.x reached EoL on 15 Jan 2026 - use
security/mcrypt||2026-06-30|Has expired: Abandoned, it has multiple vulnerabilities
security/steghide||2026-06-30|Has expired: This version is over 22 years old and has vulnerability
java/jad||2026-06-30|Has expired: This is a version that is over 25 years old and has multiple vulnerabilities
x11/wapanel||2026-06-30|Has expired: https://github.com/Firstbober/wapanel/issues/39
+0 −1
Original line number Diff line number Diff line
@@ -469,7 +469,6 @@
    SUBDIR += virtualgl
    SUBDIR += walker
    SUBDIR += wallutils
    SUBDIR += wapanel
    SUBDIR += watershot
    SUBDIR += waveterm
    SUBDIR += way-displays

x11/wapanel/Makefile

deleted100644 → 0
+0 −41
Original line number Diff line number Diff line
PORTNAME=	wapanel
DISTVERSION=	1.1.0
PORTREVISION=	7
CATEGORIES=	x11 wayland

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Desktop bar for Wayfire and other wlroots compositors
WWW=		https://firstbober.github.io/wapanel/

LICENSE=	MIT
LICENSE_FILE=	${WRKSRC}/LICENSE

BROKEN=		does not build with toml11 4.0.0+
DEPRECATED=	https://github.com/Firstbober/wapanel/issues/39
EXPIRATION_DATE=2026-06-30

BUILD_DEPENDS=	toml11>0:devel/toml11 \
		wayland-protocols>0:graphics/wayland-protocols
LIB_DEPENDS=	libwayland-client.so:graphics/wayland \
		libgtk-layer-shell.so:x11-toolkits/gtk-layer-shell

USES=		compiler:c++17-lang gnome meson pkgconfig
USE_GITHUB=	yes
USE_GNOME=	gdkpixbuf gtk30
GH_ACCOUNT=	Firstbober
MESON_ARGS=	-Dsystem_toml11=true

OPTIONS_DEFINE=	PULSEAUDIO
OPTIONS_DEFAULT=PULSEAUDIO
OPTIONS_SUB=	yes

PULSEAUDIO_LIB_DEPENDS=	libpulse.so:audio/pulseaudio
PULSEAUDIO_MESON_TRUE=	volume-control

post-patch:
# Respect PREFIX for *.desktop
	@${REINPLACE_CMD} 's,/usr/share,${DATADIR:H},' \
		${WRKSRC}/src/applets/task-switcher/task_switcher.cc \
		${WRKSRC}/thirdparty/xdgpp/xdg.hpp

.include <bsd.port.mk>

x11/wapanel/distinfo

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
TIMESTAMP = 1641468719
SHA256 (Firstbober-wapanel-1.1.0_GH0.tar.gz) = 4f2f11f0d001b4507b5b1dc6622df68a9e786f590cabf603bc5a3b296039f0a5
SIZE (Firstbober-wapanel-1.1.0_GH0.tar.gz) = 907007
+0 −19
Original line number Diff line number Diff line
--- wapanel.toml.orig	2021-04-23 06:00:30 UTC
+++ wapanel.toml
@@ -16,11 +16,11 @@
 		file_manager = "thunar $HOME"
 
 		[panel.applet.logout]
-			shutdown = "systemctl poweroff"
-			restart = "systemctl reboot"
-			logout = "loginctl terminate-user $USER"
-			suspend = "systemctl suspend"
-			hibernate = "systemctl hibernate"
+			shutdown = "shutdown -p now"
+			restart = "shutdown -r now"
+			logout = "kill -9 -1"
+			suspend = "zzz"
+			hibernate = "acpiconf -s 4"
 			lock = "swaylock"
 
 	[[panel.applet]]
Loading