pkgsrc-Changes archive

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

CVS commit: pkgsrc/misc/catpoint



Module Name:    pkgsrc
Committed By:   wiz
Date:           Sat May 11 15:34:57 UTC 2024

Modified Files:
        pkgsrc/misc/catpoint: distinfo
Added Files:
        pkgsrc/misc/catpoint/patches: patch-Makefile

Log Message:
catpoint: fix build

Tried linking against ncursesw.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/misc/catpoint/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/misc/catpoint/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/misc/catpoint/distinfo
diff -u pkgsrc/misc/catpoint/distinfo:1.3 pkgsrc/misc/catpoint/distinfo:1.4
--- pkgsrc/misc/catpoint/distinfo:1.3   Tue Oct 26 10:58:58 2021
+++ pkgsrc/misc/catpoint/distinfo       Sat May 11 15:34:57 2024
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.3 2021/10/26 10:58:58 nia Exp $
+$NetBSD: distinfo,v 1.4 2024/05/11 15:34:57 wiz Exp $
 
 BLAKE2s (catpoint-v0.2.tgz) = 49958a81ef20ed1dc323829bc2190452d043e78e2b860edea857c676dc18df08
 SHA512 (catpoint-v0.2.tgz) = 9a3ce033dde8854ceaf6601ecb5258464001f125ee15c4efece97a1339e30f83b889d0195bc63be001050a98603c7f9f482b05f94d123fbfaa886b95d7619a74
 Size (catpoint-v0.2.tgz) = 16613 bytes
+SHA1 (patch-Makefile) = e97072db7d569151f44bf54e0139ea9e6af7123f

Added files:

Index: pkgsrc/misc/catpoint/patches/patch-Makefile
diff -u /dev/null pkgsrc/misc/catpoint/patches/patch-Makefile:1.1
--- /dev/null   Sat May 11 15:34:57 2024
+++ pkgsrc/misc/catpoint/patches/patch-Makefile Sat May 11 15:34:57 2024
@@ -0,0 +1,16 @@
+$NetBSD: patch-Makefile,v 1.1 2024/05/11 15:34:57 wiz Exp $
+
+Always link against libcurses and let the pkgsrc framework decide
+which library it provides.
+
+--- Makefile.orig      2020-12-20 18:01:30.000000000 +0000
++++ Makefile
+@@ -13,7 +13,7 @@ MANPREFIX = ${PREFIX}/share/man
+ # use system flags.
+ CATPOINT_CFLAGS = ${CFLAGS}
+ CATPOINT_CPPFLAGS = ${CPPFLAGS} -D_DEFAULT_SOURCE
+-CATPOINT_LDFLAGS = ${LDFLAGS} -lncursesw
++CATPOINT_LDFLAGS = ${LDFLAGS} -lcurses
+ # Gentoo
+ #CATPOINT_LDFLAGS = ${LDFLAGS} -lncursesw -ltinfow
+ 



Home | Main Index | Thread Index | Old Index