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

Collapse All | Expand All

(-)b/x11/swayimg/Makefile (-4 / +3 lines)
Lines 1-11 Link Here
1
PORTNAME=	swayimg
1
PORTNAME=	swayimg
2
DISTVERSIONPREFIX=	v
2
DISTVERSIONPREFIX=	v
3
DISTVERSION=	1.6
3
DISTVERSION=	1.7
4
PORTREVISION=	3
5
CATEGORIES=	x11 wayland
4
CATEGORIES=	x11 wayland
6
5
7
PATCH_SITES=	https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
6
PATCH_SITES=	https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
8
PATCHFILES+=	787d13e36783.patch:-p1 # https://github.com/artemsen/swayimg/pull/23
9
PATCHFILES+=	d12f10e9ebbd.patch:-p1 # https://github.com/artemsen/swayimg/pull/24
7
PATCHFILES+=	d12f10e9ebbd.patch:-p1 # https://github.com/artemsen/swayimg/pull/24
10
8
11
MAINTAINER=	jbeich@FreeBSD.org
9
MAINTAINER=	jbeich@FreeBSD.org
Lines 15-21 LICENSE= MIT Link Here
15
LICENSE_FILE=	${WRKSRC}/LICENSE
13
LICENSE_FILE=	${WRKSRC}/LICENSE
16
14
17
BUILD_DEPENDS=	wayland-protocols>0:graphics/wayland-protocols
15
BUILD_DEPENDS=	wayland-protocols>0:graphics/wayland-protocols
18
LIB_DEPENDS=	libjson-c.so:devel/json-c \
16
LIB_DEPENDS=	libepoll-shim.so:devel/libepoll-shim \
17
		libjson-c.so:devel/json-c \
19
		libwayland-client.so:graphics/wayland \
18
		libwayland-client.so:graphics/wayland \
20
		libxkbcommon.so:x11/libxkbcommon
19
		libxkbcommon.so:x11/libxkbcommon
21
20
(-)b/x11/swayimg/distinfo (-5 / +3 lines)
Lines 1-7 Link Here
1
TIMESTAMP = 1644401520
1
TIMESTAMP = 1659275210
2
SHA256 (artemsen-swayimg-v1.6_GH0.tar.gz) = 944ad0c547c7fa45f26001431305529f75a8685f47e939c20442a7c16a6b22c0
2
SHA256 (artemsen-swayimg-v1.7_GH0.tar.gz) = 2bb7bde8f993396c9f2a32c2789abdf30667f3191bf6f69f9823cdc2f06aa932
3
SIZE (artemsen-swayimg-v1.6_GH0.tar.gz) = 74037
3
SIZE (artemsen-swayimg-v1.7_GH0.tar.gz) = 77022
4
SHA256 (787d13e36783.patch) = 9b7236eb0392e430615ba306c5e15589f2eb20a89f95fa18458b4fedc1e26382
5
SIZE (787d13e36783.patch) = 2021
6
SHA256 (d12f10e9ebbd.patch) = 682a8889be251a91f4d70d9091de880a458651a9b32788b974a1ddb4f496a27c
4
SHA256 (d12f10e9ebbd.patch) = 682a8889be251a91f4d70d9091de880a458651a9b32788b974a1ddb4f496a27c
7
SIZE (d12f10e9ebbd.patch) = 973
5
SIZE (d12f10e9ebbd.patch) = 973
(-)b/x11/swayimg/files/patch-meson.build (-1 / +19 lines)
Added Link Here
0
- 
1
--- meson.build.orig	2022-02-20 08:36:23 UTC
2
+++ meson.build
3
@@ -39,6 +39,8 @@ bash  = dependency('bash-completion', required: get_op
4
 # optional dependencies: other features
5
 exif  = dependency('libexif', required: get_option('exif'))
6
 bash  = dependency('bash-completion', required: get_option('bash'))
7
+# Non-Linux
8
+epoll = dependency('epoll-shim', required: false)
9
 
10
 # configuration file
11
 conf = configuration_data()
12
@@ -150,6 +152,7 @@ executable(
13
   dependencies: [
14
     avif,
15
     cairo,
16
+    epoll,
17
     exif,
18
     gif,
19
     jpeg,

Return to bug 265536