summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authorschnoebe <schnoebe@pkgsrc.org>2011-02-01 04:38:11 +0000
committerschnoebe <schnoebe@pkgsrc.org>2011-02-01 04:38:11 +0000
commit6d160d694261d22fbee6c199194fa48be7a90eee (patch)
tree688c15859a8cb2647fee24283446944fbd92d20f /x11
parent349efc38df200d297b517f4312ffbbf7984393f8 (diff)
downloadpkgsrc-6d160d694261d22fbee6c199194fa48be7a90eee.tar.gz
# November 5, 2010
New bugfix release 0.8.1. Fixes: * fix build failure for non-debug configurations * several manpage updates * fix SEGFAULT while parsing command line * icon layout fixes Known issues: some Gnome icons that are "hidden" actually create a window that is detected and embedded by stalonetray. Such icons appear as empty spaces in the tray. Applications that are known to behave this way are gnome-power-manager and gpk-update-icon. # October 21, 2009 New major release 0.8.0. New features/notable changes: * Remote control. Now it is possible to execute clicks on icons windows from command line. See documentation on --remote-click option for more info * Support for window struts EWMH property: now maximized windows do not cover stalonetray window. See documentation on --window-strut option for more info. * In addition to --icon-size which defines default icon size, now there is also a --slot-size which defines size of slot containing an icon. * Initial and maximal tray window dimensions are now specified in slot_size multiples * Scrollbars: now tray window has extra border, which user can click on to scroll icon area. This means that one can have fixed-size tray window (usefull when it is swallowed by FvwmButtons). See documentation on --scrollbars option for more info. This feature is experimental. * Semi-ugly support for WindowMaker dockapp mode. See documentation on --dockapp-mode option for more info. Notable fixes: * Build fix for NetBSD. * Fix EWMH window type support. Some command line and configuration file options were depricated, see DEPRICATIONS section of manpage for more info.
Diffstat (limited to 'x11')
-rw-r--r--x11/stalonetray/Makefile6
-rw-r--r--x11/stalonetray/distinfo9
-rw-r--r--x11/stalonetray/patches/patch-pa14
3 files changed, 7 insertions, 22 deletions
diff --git a/x11/stalonetray/Makefile b/x11/stalonetray/Makefile
index 6ea87baec11..70cea8f67d3 100644
--- a/x11/stalonetray/Makefile
+++ b/x11/stalonetray/Makefile
@@ -1,13 +1,13 @@
-# $NetBSD: Makefile,v 1.4 2008/04/25 15:04:32 smb Exp $
+# $NetBSD: Makefile,v 1.5 2011/02/01 04:38:11 schnoebe Exp $
#
-DISTNAME=stalonetray-0.7.6
+DISTNAME=stalonetray-0.8.1
CATEGORIES=x11
MASTER_SITES=${MASTER_SITE_SOURCEFORGE:=stalonetray/}
-PKGREVISION= 1
MAINTAINER= smb@NetBSD.org
HOMEPAGE= http://stalonetray.sourceforge.net/
COMMENT= Stand-alone system tray
+LICENSE= gnu-gpl-v2
PKG_DESTDIR_SUPPORT= user-destdir
diff --git a/x11/stalonetray/distinfo b/x11/stalonetray/distinfo
index 7fa86f50b52..52a036604cb 100644
--- a/x11/stalonetray/distinfo
+++ b/x11/stalonetray/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.2 2008/03/15 20:35:26 smb Exp $
+$NetBSD: distinfo,v 1.3 2011/02/01 04:38:11 schnoebe Exp $
-SHA1 (stalonetray-0.7.6.tar.gz) = 0900717162b2ea79ac0eb8f1f4e8f0d31e655c25
-RMD160 (stalonetray-0.7.6.tar.gz) = 5c58f6b5d7f9bc0ac9234f9b656031b5a7456798
-Size (stalonetray-0.7.6.tar.gz) = 172358 bytes
-SHA1 (patch-pa) = 70c1fa740edabf6b1057afe860102938785b393f
+SHA1 (stalonetray-0.8.1.tar.gz) = 80a137a80a469354f59dd6c228834d72db82777a
+RMD160 (stalonetray-0.8.1.tar.gz) = be340f5390669c975bb525407f0963a2ad2ded6f
+Size (stalonetray-0.8.1.tar.gz) = 195544 bytes
diff --git a/x11/stalonetray/patches/patch-pa b/x11/stalonetray/patches/patch-pa
deleted file mode 100644
index 149f9a98619..00000000000
--- a/x11/stalonetray/patches/patch-pa
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-pa,v 1.1 2008/03/15 20:35:26 smb Exp $
-
---- src/settings.c.orig 2008-03-15 16:06:02.000000000 -0400
-+++ src/settings.c 2008-03-15 16:06:34.000000000 -0400
-@@ -535,7 +535,8 @@
- while (!feof(cfg)) {
- lnum++;
- if (fgets(buf, READ_BUF_SZ, cfg) == NULL) {
-- if (errno) ERR(("read error (%s)\n", strerror(errno)));
-+ if (ferror(cfg))
-+ ERR(("read error (%s)\n", strerror(errno)));
- break;
- }
-