summaryrefslogtreecommitdiff
path: root/x11/fbdesk
diff options
context:
space:
mode:
authorreed <reed@pkgsrc.org>2004-09-24 19:06:39 +0000
committerreed <reed@pkgsrc.org>2004-09-24 19:06:39 +0000
commitb2c04c2c8358650c58db847ea15f8d8bb65ea98c (patch)
treec053af331f1d387220cc020414365cbb121b6db8 /x11/fbdesk
parent0b2f61b496bd0a798aefb99f29239d39a3795898 (diff)
downloadpkgsrc-b2c04c2c8358650c58db847ea15f8d8bb65ea98c.tar.gz
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 (limited to 'x11/fbdesk')
-rw-r--r--x11/fbdesk/Makefile12
-rw-r--r--x11/fbdesk/PLIST4
-rw-r--r--x11/fbdesk/distinfo8
-rw-r--r--x11/fbdesk/patches/patch-aa14
-rw-r--r--x11/fbdesk/patches/patch-ab10
5 files changed, 39 insertions, 9 deletions
diff --git a/x11/fbdesk/Makefile b/x11/fbdesk/Makefile
index bb7fd613add..a74d5fd614f 100644
--- a/x11/fbdesk/Makefile
+++ b/x11/fbdesk/Makefile
@@ -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
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 --git a/x11/fbdesk/PLIST b/x11/fbdesk/PLIST
index 6113fa9242b..fbbfed882e4 100644
--- a/x11/fbdesk/PLIST
+++ b/x11/fbdesk/PLIST
@@ -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 --git a/x11/fbdesk/distinfo b/x11/fbdesk/distinfo
index fd458ac4103..72b650f97ba 100644
--- a/x11/fbdesk/distinfo
+++ b/x11/fbdesk/distinfo
@@ -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 --git a/x11/fbdesk/patches/patch-aa b/x11/fbdesk/patches/patch-aa
new file mode 100644
index 00000000000..ada63700d18
--- /dev/null
+++ b/x11/fbdesk/patches/patch-aa
@@ -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 --git a/x11/fbdesk/patches/patch-ab b/x11/fbdesk/patches/patch-ab
new file mode 100644
index 00000000000..72e04b6e86b
--- /dev/null
+++ b/x11/fbdesk/patches/patch-ab
@@ -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"
+