pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/x11/fbdesk Updated fbdesk to 1.2.1. No maintainer for ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a73fdadb7a75
branches:  trunk
changeset: 481041:a73fdadb7a75
user:      reed <reed%pkgsrc.org@localhost>
date:      Fri Sep 24 19:06:39 2004 +0000

description:
Updated fbdesk to 1.2.1. No maintainer for this package. Any volunteers?

ChangeLog has:

Changes for 1.2.1:
   * Fixed startup bug
Changes for 1.2.0:
   * resource file changed to ~/.fluxbox/fbdesk
   * icons file change name to: ~/.fluxbox/fbdesk.icons
   * requires a window manager that supports NET WM spec
     (fluxbox development version > 0.9.* or cvs)
   * Fixed layering issues
     FbDesk should now be on bottom always
   * Added new resources:
     fbdesk.textAlpha: <number between 0 and 255 (opaque)>
     fbdesk.iconAlpha: <number between 0 and 255 (opaque)>
   * Fixed bit depth issue in ImagePNG
   * Updated FbTk (Henrik)

Improved COMMENT. This package does not just for fluxbox.

Removed dependency on fluxbox.

Also install the README.

patch-aa is for missing setlocale check. (This software doesn't
even have a configure to check for this, but is used several times.)

patch-ab is because stderr not defined (notice on NetBSD 1.6.2 but not Linux).

diffstat:

 x11/fbdesk/Makefile         |  12 +++++++-----
 x11/fbdesk/PLIST            |   4 +++-
 x11/fbdesk/distinfo         |   8 +++++---
 x11/fbdesk/patches/patch-aa |  14 ++++++++++++++
 x11/fbdesk/patches/patch-ab |  10 ++++++++++
 5 files changed, 39 insertions(+), 9 deletions(-)

diffs (86 lines):

diff -r 934519fa3c6b -r a73fdadb7a75 x11/fbdesk/Makefile
--- a/x11/fbdesk/Makefile       Fri Sep 24 16:17:53 2004 +0000
+++ b/x11/fbdesk/Makefile       Fri Sep 24 19:06:39 2004 +0000
@@ -1,21 +1,23 @@
-# $NetBSD: Makefile,v 1.8 2004/05/07 01:14:50 xtraeme Exp $
+# $NetBSD: Makefile,v 1.9 2004/09/24 19:06:39 reed Exp $
 #
 
-DISTNAME=      fbdesk-1.1.5
+DISTNAME=      fbdesk-1.2.1
 CATEGORIES=    x11 wm
 MASTER_SITES=  http://fluxbox.sourceforge.net/download/
 
 MAINTAINER=    tech-pkg%NetBSD.org@localhost
 HOMEPAGE=      http://fluxbox.sourceforge.net/fbdesk/
-COMMENT=       Application that creates and manage icons on your Fluxbox desktop
-
-DEPENDS+=      fluxbox>=0.1.14:../../wm/fluxbox
+COMMENT=       Application that creates and manage icons on your desktop
 
 USE_BUILDLINK3=        YES
 USE_LIBTOOL=   YES
 GNU_CONFIGURE= YES
 USE_X11=       YES
 
+post-install:
+       ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/fbdesk
+       ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/fbdesk/
+
 .include "../../graphics/png/buildlink3.mk"
 .include "../../fonts/Xft2/buildlink3.mk"
 .include "../../devel/pkgconfig/buildlink3.mk"
diff -r 934519fa3c6b -r a73fdadb7a75 x11/fbdesk/PLIST
--- a/x11/fbdesk/PLIST  Fri Sep 24 16:17:53 2004 +0000
+++ b/x11/fbdesk/PLIST  Fri Sep 24 19:06:39 2004 +0000
@@ -1,2 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2003/02/17 21:51:52 jschauma Exp $
+@comment $NetBSD: PLIST,v 1.2 2004/09/24 19:06:39 reed Exp $
 bin/fbdesk
+share/doc/fbdesk/README
+@dirrm share/doc/fbdesk
diff -r 934519fa3c6b -r a73fdadb7a75 x11/fbdesk/distinfo
--- a/x11/fbdesk/distinfo       Fri Sep 24 16:17:53 2004 +0000
+++ b/x11/fbdesk/distinfo       Fri Sep 24 19:06:39 2004 +0000
@@ -1,4 +1,6 @@
-$NetBSD: distinfo,v 1.3 2004/03/11 16:56:12 xtraeme Exp $
+$NetBSD: distinfo,v 1.4 2004/09/24 19:06:39 reed Exp $
 
-SHA1 (fbdesk-1.1.5.tar.gz) = 246b1e1d31465a54d3c0ab96b2e9c4007508738b
-Size (fbdesk-1.1.5.tar.gz) = 253057 bytes
+SHA1 (fbdesk-1.2.1.tar.gz) = d3095dc51f91aa919371b582a546fa3e018533e3
+Size (fbdesk-1.2.1.tar.gz) = 388679 bytes
+SHA1 (patch-aa) = b0ccdbfa83d7fe2a2f1f6f3c22b15508d0165602
+SHA1 (patch-ab) = 765d275b51250463f924accec763a1df40aad6e8
diff -r 934519fa3c6b -r a73fdadb7a75 x11/fbdesk/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/fbdesk/patches/patch-aa       Fri Sep 24 19:06:39 2004 +0000
@@ -0,0 +1,14 @@
+$NetBSD: patch-aa,v 1.1 2004/09/24 19:06:39 reed Exp $
+
+--- ./src/FbTk/Font.cc.orig    Mon Sep 20 03:45:01 2004
++++ ./src/FbTk/Font.cc
+@@ -230,7 +230,9 @@ bool Font::m_utf8mode = false;
+ 
+ // some initialisation for using fonts
+ void fontInit() {
++#ifdef HAVE_SETLOCALE
+     setlocale(LC_CTYPE, "");
++#endif //HAVE_SETLOCALE
+ }
+ 
+ Font::Font(const char *name, bool antialias):
diff -r 934519fa3c6b -r a73fdadb7a75 x11/fbdesk/patches/patch-ab
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/fbdesk/patches/patch-ab       Fri Sep 24 19:06:39 2004 +0000
@@ -0,0 +1,10 @@
+$NetBSD: patch-ab,v 1.1 2004/09/24 19:06:39 reed Exp $
+
+--- src/FbTk/FbPixmap.cc.orig   Mon Sep 20 03:26:19 2004
++++ src/FbTk/FbPixmap.cc
+@@ -23,2 +23,4 @@
+
++#include <stdio.h>
++
+ #include "FbPixmap.hh"
+



Home | Main Index | Thread Index | Old Index