pkgsrc-Changes archive

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

CVS commit: pkgsrc/x11/tabbed



Module Name:    pkgsrc
Committed By:   leot
Date:           Sun Oct  9 12:32:03 UTC 2022

Modified Files:
        pkgsrc/x11/tabbed: Makefile PLIST distinfo
Added Files:
        pkgsrc/x11/tabbed/patches: patch-Makefile

Log Message:
tabbed: Update to 0.7

0.7
---
- Add Xft support
- Permit to autofocus urgent tabs via Ctrl-Shift-u
- Permit to focus urgent tabs via Ctrl-u
- Add xembed wrapper utility.
  xembed will cause a command to attempt to XEmbed into the window given
  by the environment variable XEMBED, so long as it is in the foreground
  of its controlling terminal. This causes a process to effectively take
  the place of the terminal window, unless it is backgrounded.
- Support urgency WM hints
- Several bug fixes and improvements


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/x11/tabbed/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/x11/tabbed/PLIST
cvs rdiff -u -r1.4 -r1.5 pkgsrc/x11/tabbed/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/x11/tabbed/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/tabbed/Makefile
diff -u pkgsrc/x11/tabbed/Makefile:1.2 pkgsrc/x11/tabbed/Makefile:1.3
--- pkgsrc/x11/tabbed/Makefile:1.2      Fri Sep  8 06:27:51 2017
+++ pkgsrc/x11/tabbed/Makefile  Sun Oct  9 12:32:02 2022
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2017/09/08 06:27:51 wiz Exp $
+# $NetBSD: Makefile,v 1.3 2022/10/09 12:32:02 leot Exp $
 
-DISTNAME=      tabbed-0.6
+DISTNAME=      tabbed-0.7
 CATEGORIES=    x11
 MASTER_SITES=  https://dl.suckless.org/tools/
 
@@ -20,9 +20,15 @@ SUBST_SED.makefile+= -e 's,share/man,${P
 SUBST_SED.makefile+=   -e 's,/usr/X11R6,${X11BASE},'
 SUBST_SED.makefile+=   -e 's,^CFLAGS = ,CFLAGS += ,'
 SUBST_SED.makefile+=   -e 's,^LDFLAGS = ,LDFLAGS += ,'
+SUBST_SED.makefile+=   -e 's/-I$${FREETYPEINC}/$${FREETYPEINC}/'
+SUBST_SED.makefile+=   -e 's,^FREETYPEINC *=.*,FREETYPEINC != freetype-config --cflags,'
 SUBST_SED.makefile+=   -e 's/cc/${CC:Q}/'
+SUBST_SED.makefile+=   -e '/^CFLAGS/ s/-Os//'
 
 INSTALLATION_DIRS=     bin ${PKGMANDIR}/man1
 
+.include "../../fonts/fontconfig/buildlink3.mk"
+.include "../../graphics/freetype2/buildlink3.mk"
 .include "../../x11/libX11/buildlink3.mk"
+.include "../../x11/libXft/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/x11/tabbed/PLIST
diff -u pkgsrc/x11/tabbed/PLIST:1.1 pkgsrc/x11/tabbed/PLIST:1.2
--- pkgsrc/x11/tabbed/PLIST:1.1 Mon Feb  1 15:05:56 2016
+++ pkgsrc/x11/tabbed/PLIST     Sun Oct  9 12:32:02 2022
@@ -1,3 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2016/02/01 15:05:56 leot Exp $
+@comment $NetBSD: PLIST,v 1.2 2022/10/09 12:32:02 leot Exp $
 bin/tabbed
+bin/xembed
 man/man1/tabbed.1

Index: pkgsrc/x11/tabbed/distinfo
diff -u pkgsrc/x11/tabbed/distinfo:1.4 pkgsrc/x11/tabbed/distinfo:1.5
--- pkgsrc/x11/tabbed/distinfo:1.4      Tue Oct 26 11:34:29 2021
+++ pkgsrc/x11/tabbed/distinfo  Sun Oct  9 12:32:02 2022
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.4 2021/10/26 11:34:29 nia Exp $
+$NetBSD: distinfo,v 1.5 2022/10/09 12:32:02 leot Exp $
 
-BLAKE2s (tabbed-0.6.tar.gz) = da8e2175b352dd87f4fbba1f7805381408131cf9cfacce212f67e604e22b2531
-SHA512 (tabbed-0.6.tar.gz) = bcad873251be6b5de21311531e8d24330003b42790cb94d559a0d1be45408b3e0722c14e7c7f2cefd0717fd2a2d7a100fa08fc4e10e7bb669935909602286553
-Size (tabbed-0.6.tar.gz) = 12926 bytes
+BLAKE2s (tabbed-0.7.tar.gz) = b80e87add064b3c8473e8daa05abd23c953d6d73e936459763a92c5886a2eab1
+SHA512 (tabbed-0.7.tar.gz) = 770420935fd152e10bef59e29eeb8125ee181993691c6c5f03baf311bd685c2b5f0ded13854b3715cc60d0f1ae99eceacd3e6cb7e4008c34917ae55c38b436a7
+Size (tabbed-0.7.tar.gz) = 13778 bytes
+SHA1 (patch-Makefile) = 94f9b16abd8e6a4020466c89608284c97ba1fc31

Added files:

Index: pkgsrc/x11/tabbed/patches/patch-Makefile
diff -u /dev/null pkgsrc/x11/tabbed/patches/patch-Makefile:1.1
--- /dev/null   Sun Oct  9 12:32:03 2022
+++ pkgsrc/x11/tabbed/patches/patch-Makefile    Sun Oct  9 12:32:03 2022
@@ -0,0 +1,17 @@
+$NetBSD: patch-Makefile,v 1.1 2022/10/09 12:32:03 leot Exp $
+
+Avoid to install xembed(1).
+
+Accidentally not present in tabbed-0.7 distfile.
+
+--- Makefile.orig      2022-10-04 17:39:51.000000000 +0000
++++ Makefile
+@@ -51,8 +51,6 @@ install: all
+       @mkdir -p "${DESTDIR}${MANPREFIX}/man1"
+       @sed "s/VERSION/${VERSION}/g" < tabbed.1 > "${DESTDIR}${MANPREFIX}/man1/tabbed.1"
+       @chmod 644 "${DESTDIR}${MANPREFIX}/man1/tabbed.1"
+-      @sed "s/VERSION/${VERSION}/g" < xembed.1 > "${DESTDIR}${MANPREFIX}/man1/xembed.1"
+-      @chmod 644 "${DESTDIR}${MANPREFIX}/man1/xembed.1"
+ 
+ uninstall:
+       @echo removing executable files from ${DESTDIR}${PREFIX}/bin



Home | Main Index | Thread Index | Old Index