pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/x11/dunst



Module Name:    pkgsrc
Committed By:   vins
Date:           Mon Jan 16 20:53:46 UTC 2023

Modified Files:
        pkgsrc/x11/dunst: Makefile distinfo
        pkgsrc/x11/dunst/patches: patch-Makefile

Log Message:
x11/dunst: fix build on NetBSD-9.

The package Makefile uses the `-not' operator of GNU's find(1).
This was added to NetBSD-10 for compatibility reasons, but is not
available on previous versions of NetBSD's find(1) command.


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 pkgsrc/x11/dunst/Makefile
cvs rdiff -u -r1.11 -r1.12 pkgsrc/x11/dunst/distinfo
cvs rdiff -u -r1.6 -r1.7 pkgsrc/x11/dunst/patches/patch-Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/x11/dunst/Makefile
diff -u pkgsrc/x11/dunst/Makefile:1.24 pkgsrc/x11/dunst/Makefile:1.25
--- pkgsrc/x11/dunst/Makefile:1.24      Mon Jan  9 18:44:17 2023
+++ pkgsrc/x11/dunst/Makefile   Mon Jan 16 20:53:46 2023
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.24 2023/01/09 18:44:17 vins Exp $
+# $NetBSD: Makefile,v 1.25 2023/01/16 20:53:46 vins Exp $
 
 DISTNAME=      dunst-1.9.0
+PKGREVISION=   1
 CATEGORIES=    x11
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=dunst-project/}
 GITHUB_TAG=    v${PKGVERSION_NOREV}

Index: pkgsrc/x11/dunst/distinfo
diff -u pkgsrc/x11/dunst/distinfo:1.11 pkgsrc/x11/dunst/distinfo:1.12
--- pkgsrc/x11/dunst/distinfo:1.11      Mon Jan  9 18:44:17 2023
+++ pkgsrc/x11/dunst/distinfo   Mon Jan 16 20:53:46 2023
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.11 2023/01/09 18:44:17 vins Exp $
+$NetBSD: distinfo,v 1.12 2023/01/16 20:53:46 vins Exp $
 
 BLAKE2s (dunst-1.9.0.tar.gz) = 9793df513b94e81d59fcbbf8451f036d99154840b81035b31884680329515a19
 SHA512 (dunst-1.9.0.tar.gz) = e43c960561d1f804c1d8f73f9376b33f61bf1ba5c5d0579c9875ef96da6522e214d5b74166ca3375dff1b4b0291b611b2d9ac1fb41fa8722db04c21e898824d1
 Size (dunst-1.9.0.tar.gz) = 4609222 bytes
-SHA1 (patch-Makefile) = 3b0f86f345f024fc1f6d15654a715a254e78fb58
+SHA1 (patch-Makefile) = 385d0ba12d4195e4d33afb56299af7a579a097fd
 SHA1 (patch-src_input.c) = 5f5da708c7419c1fa94da9c3cc82b90c8abe8e3f
 SHA1 (patch-src_x11_x.c) = e3f7ce8e0522c258154f9be8e19221536e039c8b

Index: pkgsrc/x11/dunst/patches/patch-Makefile
diff -u pkgsrc/x11/dunst/patches/patch-Makefile:1.6 pkgsrc/x11/dunst/patches/patch-Makefile:1.7
--- pkgsrc/x11/dunst/patches/patch-Makefile:1.6 Mon Jan  9 18:44:17 2023
+++ pkgsrc/x11/dunst/patches/patch-Makefile     Mon Jan 16 20:53:46 2023
@@ -1,9 +1,19 @@
-$NetBSD: patch-Makefile,v 1.6 2023/01/09 18:44:17 vins Exp $
+$NetBSD: patch-Makefile,v 1.7 2023/01/16 20:53:46 vins Exp $
 
 Use BSD_INSTALL.
+Fix find(1) usage on non-GNU systems.
 
 --- Makefile.orig      2022-06-27 12:43:39.000000000 +0000
 +++ Makefile
+@@ -35,7 +35,7 @@ LDFLAGS := ${DEFAULT_LDFLAGS} ${LDFLAGS}
+ 
+ ifeq (0,${WAYLAND})
+ # without wayland support
+-SRC := $(sort $(shell ${FIND} src/ -not \( -path src/wayland -prune \) -name '*.c'))
++SRC := $(sort $(shell ${FIND} src/ ! \( -path src/wayland -prune \) -name '*.c'))
+ else
+ # with Wayland support
+ SRC := $(sort $(shell ${FIND} src/ -name '*.c'))
 @@ -184,22 +184,22 @@ clean-wayland-protocols:
  install: install-dunst install-dunstctl install-dunstrc install-service install-dunstify
  



Home | Main Index | Thread Index | Old Index