summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorjmmv <jmmv>2005-06-09 21:09:39 +0000
committerjmmv <jmmv>2005-06-09 21:09:39 +0000
commit3a2ca73acaf8eec842fab0e1c6e9d1a627a1a7ba (patch)
treed35cd059fbff47733fb897f4e50099876e462854 /sysutils
parent22f2a65780c0e68229ee963350dbc5635396d3bc (diff)
downloadpkgsrc-3a2ca73acaf8eec842fab0e1c6e9d1a627a1a7ba.tar.gz
Update to 0.7.2. Doing this during the freeze to close the longstanding
PR pkg/28850. (Patch applied with multiple changes.) Version 0.7.2 * Features: - Now if ${HOME}/.ideskrc file don't exist then the default ${PREFIX}/share/idesk/dot.ideskrc file is loaded with default options. - if ${HOME}/.idesktop files doesn't exist then the default ${PREFIX}/share/idesk/default.lnk file is loaded with default options but remember you must create the directory .idesktop. - New option Background.File for background image (wallpaper) in .ideskrc file example Background.File: /path_to_image/background.jpg - Optional feature for Background.File is the default folder_home.png image in ${PREFIX}/share/idesk directory. If you define Background.File option and that image is invalid or it isn't exist then folder_home.png file image is loaded. - Regroup the new options in .ideskrc file for tooltip + ToolTip.FontSize: 11 + ToolTip.FontName: gothic + ToolTip.ForeColor: #0000FF + ToolTip.BackColor: #FFFFFF + ToolTip.CaptionOnHover: true + ToolTip.CaptionPlacement: Right * Minor bug fixes: - Clean up the code - Fixed the init scripts (automake version problems) - Now only .lnk type extension for the image files are valid images, any other extension is a invalid image and they aren't loaded. Version 0.7.1 * Minor bug fixes: * Fixed the default value for BackColorTip attribute (background color for tooltip) in Tooltip (don't see the letters) * Fixed the default value for FillStyle attribute. Now is "None" the default value instead "FillHLine". Valid values are: FillInvert, FillHLine, FillVLine and None. Version 0.7.0 * Features: - Added the GNU configure and build system for Idesk. Now is easy configure, build and install this project. - Now Startup Notification is optional (with --enable-libsn option). Default is disable. - 'FillStyle' attribute. Define the appearance for the icon when the user click it. - Now is possible define the Font, Size, Foreground and Background color for the ToolTip. * Bug fixes: * Fixed the old bug for transparent effect when the user run idesk and others windows were open, Idesk take a "snapshot" from the current screen but also take from the others windows, producing that the transparent effect wasn't seen good (horrible effect produced). * Fix the problem with SnapShadow have the value true. * Fix the bug, when restart the program with double middle click. * Fix the error of the imlib with color_modifier null. * Fix the bug, when the Caption attribute is empty string. (Thanks to Rene De La Garza <rene.delagarza@gmail.com>) Version 0.6.1 Bug fixes. Font problem and idesk restarting. Version 0.6.0 Porting from Imlib to Imlib2 ready!!! In addition, better support for mouse actions (EnterNotify and LeaveNotify events). The SVG support was remove because not implemented in Imlib2 yet and a few fixes and clean ups here and there. Now the application run although it fails in loading some configuration files icon. GTK and GDK support isn't necessary now. Startup notification support for launch applications!!! but is very experimental and under some Window Managers it will not worki ... and more. See the Screenshots. Version 0.5.6 Bug-fixes and better support for SVG. Version 0.5.5 Multiple commands, completely configurable actions, automatic background updating with Esetroot, a new option to only show the caption on mouseover, and a few fixes and clean ups here and there. Version 0.5.2.1 Fixed a few bugs here and there. Took away the need for the SVG: true field.and other things that I forgot to list. Version 0.5.0 Added SVG support using librsvg. Still rudimentary, need to check for bugs andd leaks. Version ? (maybe .5) New idesk mostly coding structure changes. Code was re-written to be more object oriented and modular. Added single-click, click-delay, and snapping options.
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/idesk/Makefile25
-rw-r--r--sysutils/idesk/PLIST8
-rw-r--r--sysutils/idesk/distinfo9
-rw-r--r--sysutils/idesk/patches/patch-aa14
4 files changed, 26 insertions, 30 deletions
diff --git a/sysutils/idesk/Makefile b/sysutils/idesk/Makefile
index 899194d193c..363ad4b6e0c 100644
--- a/sysutils/idesk/Makefile
+++ b/sysutils/idesk/Makefile
@@ -1,22 +1,27 @@
-# $NetBSD: Makefile,v 1.11 2005/06/01 18:03:22 jlam Exp $
+# $NetBSD: Makefile,v 1.12 2005/06/09 21:09:39 jmmv Exp $
#
-DISTNAME= idesk-0.3.5
-PKGREVISION= 3
+DISTNAME= idesk-0.7.2
CATEGORIES= sysutils x11
-MASTER_SITES= http://idesk.sourceforge.net/releases/
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=idesk/}
MAINTAINER= pancake@phreaker.net
-HOMEPAGE= http://sourceforge.net/projects/idesk/
-COMMENT= Gives users of minimal WMs icons on their desktop
+HOMEPAGE= http://idesk.sourceforge.net/
+COMMENT= Lightweight desktop icons handler
-USE_TOOLS+= gmake
+GNU_CONFIGURE= YES
+USE_LANGUAGES= c c++
+USE_TOOLS+= gmake
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/idesk ${PREFIX}/bin/idesk
+CONFIGURE_ARGS+= --enable-libsn
+
+post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/idesk
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/idesk
-.include "../../graphics/imlib/buildlink3.mk"
+.include "../../devel/pkgconfig/buildlink3.mk"
.include "../../fonts/Xft2/buildlink3.mk"
+.include "../../graphics/imlib2/buildlink3.mk"
+.include "../../x11/startup-notification/buildlink3.mk"
+.include "../../mk/x11.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/sysutils/idesk/PLIST b/sysutils/idesk/PLIST
index f62f2f8c875..0eaf2a7b9b8 100644
--- a/sysutils/idesk/PLIST
+++ b/sysutils/idesk/PLIST
@@ -1,4 +1,10 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2003/09/08 14:27:27 jmmv Exp $
+@comment $NetBSD: PLIST,v 1.2 2005/06/09 21:09:39 jmmv Exp $
bin/idesk
share/doc/idesk/README
+share/idesk/README
+share/idesk/default.lnk
+share/idesk/dot.ideskrc
+share/idesk/dot.xsession
+share/idesk/folder_home.xpm
+@dirrm share/idesk
@dirrm share/doc/idesk
diff --git a/sysutils/idesk/distinfo b/sysutils/idesk/distinfo
index 1f88413dfec..54f7c04bb21 100644
--- a/sysutils/idesk/distinfo
+++ b/sysutils/idesk/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.2 2005/02/24 13:40:54 agc Exp $
+$NetBSD: distinfo,v 1.3 2005/06/09 21:09:39 jmmv Exp $
-SHA1 (idesk-0.3.5.tar.gz) = 63c34874bdfe640908e1329955d2ec266589cc27
-RMD160 (idesk-0.3.5.tar.gz) = 971d65c4db02cdade5e51c75b4830eac084ad65c
-Size (idesk-0.3.5.tar.gz) = 7966 bytes
-SHA1 (patch-aa) = 6a37e76734e24d7f301ffd1ff12f9ffe2612185e
+SHA1 (idesk-0.7.2.tar.gz) = ee911e48e16169bb75e2f5479885ca04a7e43b4c
+RMD160 (idesk-0.7.2.tar.gz) = 02f295c40ce1505c7fefdd713ee8db96fc5cd9e5
+Size (idesk-0.7.2.tar.gz) = 207021 bytes
diff --git a/sysutils/idesk/patches/patch-aa b/sysutils/idesk/patches/patch-aa
deleted file mode 100644
index 97168aef2c4..00000000000
--- a/sysutils/idesk/patches/patch-aa
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2003/09/08 14:27:28 jmmv Exp $
-
---- Makefile.orig 2002-11-09 19:06:52.000000000 +0100
-+++ Makefile
-@@ -1,7 +1,7 @@
- cc = g++
- #cflags = -g -O2 -W -Wall
--cflags = -g -O2
--libs = `imlib-config --libs` -lXft
-+cflags = ${CPPFLAGS} ${CFLAGS} `imlib-config --cflags` `xft-config --cflags`
-+libs = ${LDFLAGS} `imlib-config --libs` -lXft
- bin = idesk
-
- objs = Desk.o Icon.o Database.o Main.o