pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/sysutils/idesk Update to 0.7.2. Doing this during the...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/241d0f6e88e2
branches:  trunk
changeset: 495445:241d0f6e88e2
user:      jmmv <jmmv%pkgsrc.org@localhost>
date:      Thu Jun 09 21:09:39 2005 +0000

description:
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@localhost>)

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:

 sysutils/idesk/Makefile         |  25 +++++++++++++++----------
 sysutils/idesk/PLIST            |   8 +++++++-
 sysutils/idesk/distinfo         |   9 ++++-----
 sysutils/idesk/patches/patch-aa |  14 --------------
 4 files changed, 26 insertions(+), 30 deletions(-)

diffs (88 lines):

diff -r d0de06250f74 -r 241d0f6e88e2 sysutils/idesk/Makefile
--- a/sysutils/idesk/Makefile   Thu Jun 09 20:25:31 2005 +0000
+++ b/sysutils/idesk/Makefile   Thu Jun 09 21:09:39 2005 +0000
@@ -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@localhost
-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 -r d0de06250f74 -r 241d0f6e88e2 sysutils/idesk/PLIST
--- a/sysutils/idesk/PLIST      Thu Jun 09 20:25:31 2005 +0000
+++ b/sysutils/idesk/PLIST      Thu Jun 09 21:09:39 2005 +0000
@@ -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 -r d0de06250f74 -r 241d0f6e88e2 sysutils/idesk/distinfo
--- a/sysutils/idesk/distinfo   Thu Jun 09 20:25:31 2005 +0000
+++ b/sysutils/idesk/distinfo   Thu Jun 09 21:09:39 2005 +0000
@@ -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 -r d0de06250f74 -r 241d0f6e88e2 sysutils/idesk/patches/patch-aa
--- a/sysutils/idesk/patches/patch-aa   Thu Jun 09 20:25:31 2005 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -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



Home | Main Index | Thread Index | Old Index