diff options
author | smb <smb@pkgsrc.org> | 2008-03-15 20:35:26 +0000 |
---|---|---|
committer | smb <smb@pkgsrc.org> | 2008-03-15 20:35:26 +0000 |
commit | ea5e99c442976ef64812fd31105876dc3e42da01 (patch) | |
tree | 42cf4938b54b6781b9d23092474ce3983338d5b9 /x11 | |
parent | f633e95062b22c5a455d351c3ffaf89c4da9ba89 (diff) | |
download | pkgsrc-ea5e99c442976ef64812fd31105876dc3e42da01.tar.gz |
Fix portability bug that caused spurious error message on NetBSD (patch
reported upstream).
Update to newest upstream version.
0.7.6 news
- fix bug with sticky mode under Openbox
- fix bug with dissappearing window under WindowMaker (sf.net bug #1858069)
- fix layout bug which prevented tray to shrink properly
- fix resizing bug when grow gravity seemed to be ignored
- fix regression: KDE icons are collected at startup again
- fix focus model so that it (more-or-less) matches ICCM
0.7.5 news
- fix silly bug with window states (sticky works now)
- code cleanup in xembed implementation
0.7.4 news
- fix sample rc file (Debian bug #446899)
- fix fallback support mode for KDE icons (now KDE icons
work in Xmonad)
- detect if stalonetrays` window is no longer toplevel
and do not try to fix geometry (fixes excessive CPU
usage as reported in Debian bug #444748)
0.7.3 news
- fix freedesktop.org icons support on amd64 (Debian bug #445056)
0.7.2 news
- fix typo in parameter name for maximal tray height (Debian bug #444717)
0.7.1 news:
- fix crash on invalid rc file (Debian bug #443543)
- fix occasional KDE icons dissapearance (sf.net bug #1676375)
0.7 release highlights:
- tinting and fuzzy edges
- layout improvements
- XEMBED imlementation fixes
- massive code cleanup
Diffstat (limited to 'x11')
-rw-r--r-- | x11/stalonetray/Makefile | 4 | ||||
-rw-r--r-- | x11/stalonetray/distinfo | 9 | ||||
-rw-r--r-- | x11/stalonetray/patches/patch-pa | 14 |
3 files changed, 21 insertions, 6 deletions
diff --git a/x11/stalonetray/Makefile b/x11/stalonetray/Makefile index 683c2bf9578..e4c26fde0ba 100644 --- a/x11/stalonetray/Makefile +++ b/x11/stalonetray/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.2 2007/08/16 21:57:04 joerg Exp $ +# $NetBSD: Makefile,v 1.3 2008/03/15 20:35:26 smb Exp $ # -DISTNAME=stalonetray-0.6.5 +DISTNAME=stalonetray-0.7.6 CATEGORIES=x11 MASTER_SITES=${MASTER_SITE_SOURCEFORGE:=stalonetray/} diff --git a/x11/stalonetray/distinfo b/x11/stalonetray/distinfo index 4f9c113ac4b..7fa86f50b52 100644 --- a/x11/stalonetray/distinfo +++ b/x11/stalonetray/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.1 2007/08/04 13:44:21 smb Exp $ +$NetBSD: distinfo,v 1.2 2008/03/15 20:35:26 smb Exp $ -SHA1 (stalonetray-0.6.5.tar.gz) = dcfc0a96c90f56b259da7450860a17b14b829576 -RMD160 (stalonetray-0.6.5.tar.gz) = ee6ec9a7f462e6823b495d8cf0eba748ce458174 -Size (stalonetray-0.6.5.tar.gz) = 135304 bytes +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 diff --git a/x11/stalonetray/patches/patch-pa b/x11/stalonetray/patches/patch-pa new file mode 100644 index 00000000000..149f9a98619 --- /dev/null +++ b/x11/stalonetray/patches/patch-pa @@ -0,0 +1,14 @@ +$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; + } + |