View | Details | Raw Unified | Return to bug 275141 | Differences between
and this patch

Collapse All | Expand All

(-)b/x11/Makefile (+1 lines)
Lines 431-436 Link Here
431
    SUBDIR += wl-clipboard
431
    SUBDIR += wl-clipboard
432
    SUBDIR += wl-mirror
432
    SUBDIR += wl-mirror
433
    SUBDIR += wlogout
433
    SUBDIR += wlogout
434
    SUBDIR += wlopm
434
    SUBDIR += wlr-randr
435
    SUBDIR += wlr-randr
435
    SUBDIR += wlr-which-key
436
    SUBDIR += wlr-which-key
436
    SUBDIR += wlrctl
437
    SUBDIR += wlrctl
(-)b/x11/wlopm/Makefile (+33 lines)
Added Link Here
1
PORTNAME=	wlopm
2
DISTVERSIONPREFIX=	v
3
DISTVERSION=	0.1.0
4
CATEGORIES=	x11 wayland
5
MASTER_SITES=	https://git.sr.ht/~leon_plickat/${PORTNAME}/archive/
6
DISTNAME=	${DISTVERSIONFULL}
7
DIST_SUBDIR=	${PORTNAME}
8
9
MAINTAINER=	tino.engel@mail.de
10
COMMENT=	Wayland output power management
11
WWW=		https://git.sr.ht/~leon_plickat/wlopm
12
13
LICENSE=	GPLv3
14
LICENSE_FILE=	${WRKSRC}/LICENSE
15
16
BUILD_DEPENDS=	wayland-scanner:graphics/wayland
17
LIB_DEPENDS=	libwayland-client.so:graphics/wayland
18
19
USES=		gmake localbase:ldflags
20
21
ALL_TARGET=	wlopm
22
CFLAGS+=	-Wno-strict-prototypes
23
LIBS=		-lwayland-client
24
WRKSRC=		${WRKDIR}/${PORTNAME}-${DISTVERSIONFULL}
25
26
PLIST_FILES=	bin/wlopm \
27
		share/man/man1/wlopm.1.gz
28
29
do-install:
30
	${INSTALL_PROGRAM} ${WRKSRC}/wlopm ${STAGEDIR}${PREFIX}/bin/wlopm
31
	${INSTALL_DATA} ${WRKSRC}/wlopm.1 ${STAGEDIR}${PREFIX}/share/man/man1/wlopm.1
32
33
.include <bsd.port.mk>
(-)b/x11/wlopm/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1700117590
2
SHA256 (wlopm/v0.1.0.tar.gz) = f9a7ec03a412e602420ab11d0eea872f6d30dfe5cfee93cd3d0289e4fbbb3aa1
3
SIZE (wlopm/v0.1.0.tar.gz) = 19004
(-)b/x11/wlopm/files/patch-Makefile (+11 lines)
Added Link Here
1
--- Makefile.orig	2023-11-18 08:35:21 UTC
2
+++ Makefile
3
@@ -4,7 +4,7 @@ PREFIX=/usr/local
4
 BINDIR=$(PREFIX)/bin
5
 MANDIR=$(PREFIX)/share/man
6
 
7
-CFLAGS+=-Wall -Werror -Wextra -Wpedantic -Wno-unused-parameter -Wconversion -Wformat-security -Wformat -Wsign-conversion -Wfloat-conversion -Wunused-result
8
+CFLAGS+=-Wall -Wextra -Wpedantic -Wno-unused-parameter -Wconversion -Wformat-security -Wformat -Wsign-conversion -Wfloat-conversion -Wunused-result
9
 LIBS=-lwayland-client
10
 OBJ=wlopm.o wlr-output-power-management-unstable-v1.o
11
 GEN=wlr-output-power-management-unstable-v1.c wlr-output-power-management-unstable-v1.h
(-)b/x11/wlopm/pkg-descr (-1 / +3 lines)
Added Link Here
0
- 
1
wlopm - Wayland output power management
2
3
Simple client implementing zwlr-output-power-management-v1.

Return to bug 275141