summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059>2006-10-14 01:47:19 +0800
committermezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059>2006-10-14 01:47:19 +0800
commit7db28beb045b61dd7b430c0bb72716942ed60ff8 (patch)
tree3f1450a9f3650c97767a6cece813a5a7e8b87304
parent345608152d6a2164687d6c9f925ba5ff589ae222 (diff)
downloadmarcuscom-ports-7db28beb045b61dd7b430c0bb72716942ed60ff8.tar.gz
marcuscom-ports-7db28beb045b61dd7b430c0bb72716942ed60ff8.tar.zst
marcuscom-ports-7db28beb045b61dd7b430c0bb72716942ed60ff8.zip
Move to LOCALBASE.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7778 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r--deskutils/gdesklets-recentlyused/Makefile44
-rw-r--r--deskutils/gdesklets-recentlyused/distinfo3
-rw-r--r--deskutils/gdesklets-recentlyused/files/patch-Install_RecentlyUsed_Sensor.bin18
-rw-r--r--deskutils/gdesklets-recentlyused/files/pkg-message.in14
-rw-r--r--deskutils/gdesklets-recentlyused/pkg-descr11
-rw-r--r--deskutils/gdesklets-recentlyused/pkg-plist16
-rw-r--r--deskutils/gdesklets-starterbar/Makefile70
-rw-r--r--deskutils/gdesklets-starterbar/distinfo3
-rw-r--r--deskutils/gdesklets-starterbar/files/pkg-message.in17
-rw-r--r--deskutils/gdesklets-starterbar/pkg-descr4
-rw-r--r--deskutils/gdesklets-starterbar/pkg-plist75
-rw-r--r--irc/gdesklets-irc/Makefile51
-rw-r--r--irc/gdesklets-irc/distinfo3
-rw-r--r--irc/gdesklets-irc/pkg-descr13
-rw-r--r--irc/gdesklets-irc/pkg-message13
-rw-r--r--irc/gdesklets-irc/pkg-plist26
-rw-r--r--x11-clocks/gdesklets-clock/Makefile53
-rw-r--r--x11-clocks/gdesklets-clock/distinfo3
-rw-r--r--x11-clocks/gdesklets-clock/files/Clock::__init__.py16
-rw-r--r--x11-clocks/gdesklets-clock/files/patch-Install_Clock_Sensor.bin19
-rw-r--r--x11-clocks/gdesklets-clock/pkg-descr3
-rw-r--r--x11-clocks/gdesklets-clock/pkg-message19
-rw-r--r--x11-clocks/gdesklets-clock/pkg-plist41
-rw-r--r--x11-clocks/gdesklets-countdown/Makefile50
-rw-r--r--x11-clocks/gdesklets-countdown/distinfo3
-rw-r--r--x11-clocks/gdesklets-countdown/pkg-descr6
-rw-r--r--x11-clocks/gdesklets-countdown/pkg-message17
-rw-r--r--x11-clocks/gdesklets-countdown/pkg-plist16
28 files changed, 627 insertions, 0 deletions
diff --git a/deskutils/gdesklets-recentlyused/Makefile b/deskutils/gdesklets-recentlyused/Makefile
new file mode 100644
index 000000000..166923844
--- /dev/null
+++ b/deskutils/gdesklets-recentlyused/Makefile
@@ -0,0 +1,44 @@
+# New ports collection makefile for: gdesklets-recentlyused
+# Date created: 02 September 2003
+# Whom: Mezz <mezz7@cox.net>
+#
+# $FreeBSD$
+#
+
+PORTNAME= recentlyused
+PORTVERSION= 0.6
+PORTREVISION= 5
+CATEGORIES= deskutils gnome
+MASTER_SITES= http://gdesklets.gnomedesktop.org/files/
+PKGNAMEPREFIX= gdesklets-
+DISTNAME= recently-used-${PORTVERSION}
+
+MAINTAINER= ports@FreeBSD.org
+COMMENT= A toolbar for the most recently used items from ~/.recently-used
+
+RUN_DEPENDS= gdesklets:${PORTSDIR}/deskutils/gdesklets
+
+USE_PYTHON= yes
+USE_XLIB= yes
+SUB_FILES= pkg-message
+PKGMESSAGE= ${WRKDIR}/pkg-message
+
+NAME= RecentlyUsed
+DATADIR= ${PREFIX}/share/gnome
+
+do-build:
+ @${WRKSRC}/Install_${NAME}_Sensor.bin --nomsg ${WRKSRC}
+ @${FIND} ${WRKSRC} -name '*.orig' -delete
+
+do-install:
+ @${MKDIR} ${DATADIR}/gdesklets/Displays/${NAME}
+ @${MKDIR} ${DATADIR}/gdesklets/Sensors/${NAME}
+ @${INSTALL_DATA} ${WRKSRC}/*.display ${DATADIR}/gdesklets/Displays/${NAME}/
+ @${INSTALL_DATA} ${WRKSRC}/${NAME}/*.py ${DATADIR}/gdesklets/Sensors/${NAME}/
+ @${INSTALL_DATA} ${WRKSRC}/${NAME}/AUTHORS ${DATADIR}/gdesklets/Sensors/${NAME}/
+ @${CP} ${WRKSRC}/${NAME}/.recently-used ${DATADIR}/gdesklets/Sensors/${NAME}/
+
+post-install:
+ @${CAT} ${PKGMESSAGE}
+
+.include <bsd.port.mk>
diff --git a/deskutils/gdesklets-recentlyused/distinfo b/deskutils/gdesklets-recentlyused/distinfo
new file mode 100644
index 000000000..c8bf26e1a
--- /dev/null
+++ b/deskutils/gdesklets-recentlyused/distinfo
@@ -0,0 +1,3 @@
+MD5 (recently-used-0.6.tar.gz) = ab6752b577d74eff382c44c48194a405
+SHA256 (recently-used-0.6.tar.gz) = f230c3d63447016a72d0bec4f6b24c52e8893701fd52e2a773258113c27e323e
+SIZE (recently-used-0.6.tar.gz) = 9650
diff --git a/deskutils/gdesklets-recentlyused/files/patch-Install_RecentlyUsed_Sensor.bin b/deskutils/gdesklets-recentlyused/files/patch-Install_RecentlyUsed_Sensor.bin
new file mode 100644
index 000000000..16824f3c0
--- /dev/null
+++ b/deskutils/gdesklets-recentlyused/files/patch-Install_RecentlyUsed_Sensor.bin
@@ -0,0 +1,18 @@
+--- Install_RecentlyUsed_Sensor.bin.orig Sat Sep 20 01:59:52 2003
++++ Install_RecentlyUsed_Sensor.bin Sat Sep 20 02:00:20 2003
+@@ -75,15 +75,9 @@
+ else:
+ cmd = "mkdir -p %(destination)s; cd %(destination)s; " X "LANG=C tar -xzvf %(tmp)s 2>&1"
+- fail, out = commands.getstatusoutput(cmd % vars())
++ commands.getstatusoutput(cmd % vars())
+ os.unlink(tmp)
+
+- if (fail):
+- if (no_message): print ERROR_TAR + out
+- else: message(ERROR_TAR + out, "error")
+- sys.exit(1)
+-
+- print out
+ if (not list_only):
+ if (no_message): print SUCCESS
+ else: message(SUCCESS, "info")
diff --git a/deskutils/gdesklets-recentlyused/files/pkg-message.in b/deskutils/gdesklets-recentlyused/files/pkg-message.in
new file mode 100644
index 000000000..d24637207
--- /dev/null
+++ b/deskutils/gdesklets-recentlyused/files/pkg-message.in
@@ -0,0 +1,14 @@
+##
+To view the installed applets:
+
+ ls %%PREFIX%%/share/gnome/gdesklets/Displays
+
+To use those applets:
+
+ gdesklets open %%PREFIX%%/share/gnome/gdesklets/Displays/${name}/${name}.display
+
+Replace ${name} with the correct name of the applets you want to use.
+
+NOTE: Be sure to login as your user when you use the gdesklets command,
+ as the configuration will be stored in the ~/.gdesklets/ directory.
+##
diff --git a/deskutils/gdesklets-recentlyused/pkg-descr b/deskutils/gdesklets-recentlyused/pkg-descr
new file mode 100644
index 000000000..f770cc91f
--- /dev/null
+++ b/deskutils/gdesklets-recentlyused/pkg-descr
@@ -0,0 +1,11 @@
+The Recently Used Toolbar displays icons for the most recently used items
+according to your GNOME ~/.recently-used file. The Desklet displays a
+configurable number of icons in the last used order. As you scroll over the
+icons in the toolbar they expand similar to the starter bar desklet. If the
+file has a thumbnail already created, then the thumbnail will be shown
+instead of the MIME icon.
+
+If you click on one of the icons in the toolbar it will launch the application
+that GNOME has associated with that specific MIME type.
+
+WWW: http://www.clarkson.edu/~clarkbw/desklets/
diff --git a/deskutils/gdesklets-recentlyused/pkg-plist b/deskutils/gdesklets-recentlyused/pkg-plist
new file mode 100644
index 000000000..f133cfaa0
--- /dev/null
+++ b/deskutils/gdesklets-recentlyused/pkg-plist
@@ -0,0 +1,16 @@
+share/gnome/gdesklets/Displays/RecentlyUsed/recently-used.display
+share/gnome/gdesklets/Sensors/RecentlyUsed/.recently-used
+share/gnome/gdesklets/Sensors/RecentlyUsed/AUTHORS
+share/gnome/gdesklets/Sensors/RecentlyUsed/Animator.py
+share/gnome/gdesklets/Sensors/RecentlyUsed/Icon.py
+share/gnome/gdesklets/Sensors/RecentlyUsed/MimeIcon.py
+share/gnome/gdesklets/Sensors/RecentlyUsed/RecentFile.py
+share/gnome/gdesklets/Sensors/RecentlyUsed/RecentParser.py
+share/gnome/gdesklets/Sensors/RecentlyUsed/RecentReader.py
+share/gnome/gdesklets/Sensors/RecentlyUsed/RfileSet.py
+share/gnome/gdesklets/Sensors/RecentlyUsed/TestReader.py
+share/gnome/gdesklets/Sensors/RecentlyUsed/TestRecent.py
+share/gnome/gdesklets/Sensors/RecentlyUsed/TestRfileSet.py
+share/gnome/gdesklets/Sensors/RecentlyUsed/__init__.py
+@dirrm share/gnome/gdesklets/Sensors/RecentlyUsed
+@dirrm share/gnome/gdesklets/Displays/RecentlyUsed
diff --git a/deskutils/gdesklets-starterbar/Makefile b/deskutils/gdesklets-starterbar/Makefile
new file mode 100644
index 000000000..e638a3857
--- /dev/null
+++ b/deskutils/gdesklets-starterbar/Makefile
@@ -0,0 +1,70 @@
+# New ports collection makefile for: gdesklets-starterbar
+# Date created: 02 September 2003
+# Whom: Mezz <mezz7@cox.net>
+#
+# $FreeBSD$
+#
+
+PORTNAME= starterbar
+PORTVERSION= 0.31.2
+PORTREVISION= 3
+CATEGORIES= deskutils gnome
+MASTER_SITES= http://gdesklets.gnomedesktop.org/files/
+PKGNAMEPREFIX= gdesklets-
+DISTNAME= starterbar-desklet-${PORTVERSION}
+
+MAINTAINER= ports@FreeBSD.org
+COMMENT= An icon bar for GNOME 2.x where you can put starters into
+
+RUN_DEPENDS= gdesklets:${PORTSDIR}/deskutils/gdesklets \
+ ${PYTHON_SITELIBDIR}/xdg/__init__.py:${PORTSDIR}/devel/py-xdg
+
+USE_BZIP2= yes
+USE_PYTHON= yes
+USE_XLIB= yes
+
+NAME= StarterBar
+DATADIR= ${PREFIX}/share/gnome
+PKGMESSAGE= ${WRKDIR}/pkg-message
+LANG= ca cs de es fr hr nl pt pt_BR sq sr sr@Latn sv
+
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} < 500000
+RUN_DEPENDS+= uuid:${PORTSDIR}/misc/ossp-uuid
+.endif
+
+do-build:
+ @${WRKSRC}/Install_${NAME}_Sensor.bin --nomsg ${WRKSRC}
+.if ${OSVERSION} < 500000
+ @${REINPLACE_CMD} -e 's|uuidgen|uuid|g' \
+ ${WRKSRC}/${NAME}/IconSet.py
+.endif
+ @${FIND} ${WRKSRC} -name '*.orig' -delete
+ @${FIND} ${WRKSRC} -name '*.bak' -delete
+
+do-install:
+ @${MKDIR} ${DATADIR}/gdesklets/Displays/${NAME}/gfx
+.for ii in ${LANG}
+ @${MKDIR} ${DATADIR}/gdesklets/Sensors/${NAME}/locale/${ii}/LC_MESSAGES
+ @${INSTALL_DATA} ${WRKSRC}/${NAME}/locale/${ii}/LC_MESSAGES/*.mo \
+ ${DATADIR}/gdesklets/Sensors/${NAME}/locale/${ii}/LC_MESSAGES/
+.endfor
+ @${INSTALL_DATA} ${WRKSRC}/${NAME}/*.py ${DATADIR}/gdesklets/Sensors/${NAME}/
+ @${INSTALL_DATA} ${WRKSRC}/${NAME}/*.desktop ${DATADIR}/gdesklets/Sensors/${NAME}/
+ @${CP} ${WRKSRC}/${NAME}/.order ${DATADIR}/gdesklets/Sensors/${NAME}/
+ @${INSTALL_DATA} ${WRKSRC}/${NAME}/ChangeLog ${DATADIR}/gdesklets/Sensors/${NAME}/
+ @${INSTALL_DATA} ${WRKSRC}/*.display ${DATADIR}/gdesklets/Displays/${NAME}/
+ @${INSTALL_DATA} ${WRKSRC}/gfx/*.png ${DATADIR}/gdesklets/Displays/${NAME}/gfx/
+ @${INSTALL_DATA} ${WRKSRC}/README ${DATADIR}/gdesklets/Displays/${NAME}/
+ @${LN} -s ${DATADIR}/gdesklets/Displays/${NAME}/README \
+ ${DATADIR}/gdesklets/Sensors/${NAME}/README
+
+post-install:
+ @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${DATADIR}/gdesklets/Sensors/${NAME}
+ @${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${DATADIR}/gdesklets/Sensors/${NAME}
+ @${SED} -e 's|%%PREFIX%%|${PREFIX}|g ; s|%%NAME%%|${NAME}|g' \
+ ${FILESDIR}/pkg-message.in > ${PKGMESSAGE}
+ @${CAT} ${PKGMESSAGE}
+
+.include <bsd.port.post.mk>
diff --git a/deskutils/gdesklets-starterbar/distinfo b/deskutils/gdesklets-starterbar/distinfo
new file mode 100644
index 000000000..535beb5b2
--- /dev/null
+++ b/deskutils/gdesklets-starterbar/distinfo
@@ -0,0 +1,3 @@
+MD5 (starterbar-desklet-0.31.2.tar.bz2) = 02c63fb470780ccc4841103fe72a0680
+SHA256 (starterbar-desklet-0.31.2.tar.bz2) = b0026e11a4e7f05d0b22e87b9e9b4b7305b6c9ebdaa24855e40a79aaccd4979f
+SIZE (starterbar-desklet-0.31.2.tar.bz2) = 71887
diff --git a/deskutils/gdesklets-starterbar/files/pkg-message.in b/deskutils/gdesklets-starterbar/files/pkg-message.in
new file mode 100644
index 000000000..f57d4a9d3
--- /dev/null
+++ b/deskutils/gdesklets-starterbar/files/pkg-message.in
@@ -0,0 +1,17 @@
+##
+To view the README:
+
+ cat %%PREFIX%%/share/gnome/gdesklets/Displays/%%NAME%%/README
+ cat %%PREFIX%%/share/gnome/gdesklets/Sensors/%%NAME%%/README
+
+To view the installed applets:
+
+ ls %%PREFIX%%/share/gnome/gdesklets/Displays
+
+To use those applets:
+
+ gdesklets open %%PREFIX%%/share/gnome/gdesklets/Displays/%%NAME%%/starterbar.display
+
+NOTE: Be sure to login as your user when you use the gdesklets command,
+ as the configuration will be stored in the ~/.gdesklets/ directory.
+##
diff --git a/deskutils/gdesklets-starterbar/pkg-descr b/deskutils/gdesklets-starterbar/pkg-descr
new file mode 100644
index 000000000..e97f62ac6
--- /dev/null
+++ b/deskutils/gdesklets-starterbar/pkg-descr
@@ -0,0 +1,4 @@
+An icon bar for GNOME where you can put starters into. Yes, you can do the
+same with the GNOME panel, but this one is pure eye candy!
+
+WWW: http://gdesklets.gnomedesktop.org
diff --git a/deskutils/gdesklets-starterbar/pkg-plist b/deskutils/gdesklets-starterbar/pkg-plist
new file mode 100644
index 000000000..e1dd78172
--- /dev/null
+++ b/deskutils/gdesklets-starterbar/pkg-plist
@@ -0,0 +1,75 @@
+share/gnome/gdesklets/Displays/StarterBar/README
+share/gnome/gdesklets/Displays/StarterBar/gfx/bg-e.png
+share/gnome/gdesklets/Displays/StarterBar/gfx/bg-n.png
+share/gnome/gdesklets/Displays/StarterBar/gfx/bg-ne.png
+share/gnome/gdesklets/Displays/StarterBar/gfx/bg-nw.png
+share/gnome/gdesklets/Displays/StarterBar/gfx/bg-s.png
+share/gnome/gdesklets/Displays/StarterBar/gfx/bg-se.png
+share/gnome/gdesklets/Displays/StarterBar/gfx/bg-sw.png
+share/gnome/gdesklets/Displays/StarterBar/gfx/bg-w.png
+share/gnome/gdesklets/Displays/StarterBar/gfx/bg.png
+share/gnome/gdesklets/Displays/StarterBar/gfx/preview.png
+share/gnome/gdesklets/Displays/StarterBar/gfx/waterbath.png
+share/gnome/gdesklets/Displays/StarterBar/starterbar.display
+share/gnome/gdesklets/Sensors/StarterBar/.order
+share/gnome/gdesklets/Sensors/StarterBar/ChangeLog
+share/gnome/gdesklets/Sensors/StarterBar/FileWatcher.py
+share/gnome/gdesklets/Sensors/StarterBar/FileWatcher.pyc
+share/gnome/gdesklets/Sensors/StarterBar/FileWatcher.pyo
+share/gnome/gdesklets/Sensors/StarterBar/GConfWatcher.py
+share/gnome/gdesklets/Sensors/StarterBar/GConfWatcher.pyc
+share/gnome/gdesklets/Sensors/StarterBar/GConfWatcher.pyo
+share/gnome/gdesklets/Sensors/StarterBar/Icon.py
+share/gnome/gdesklets/Sensors/StarterBar/Icon.pyc
+share/gnome/gdesklets/Sensors/StarterBar/Icon.pyo
+share/gnome/gdesklets/Sensors/StarterBar/IconSet.py
+share/gnome/gdesklets/Sensors/StarterBar/IconSet.pyc
+share/gnome/gdesklets/Sensors/StarterBar/IconSet.pyo
+share/gnome/gdesklets/Sensors/StarterBar/README
+share/gnome/gdesklets/Sensors/StarterBar/__init__.py
+share/gnome/gdesklets/Sensors/StarterBar/__init__.pyc
+share/gnome/gdesklets/Sensors/StarterBar/__init__.pyo
+share/gnome/gdesklets/Sensors/StarterBar/home.desktop
+share/gnome/gdesklets/Sensors/StarterBar/locale/ca/LC_MESSAGES/gdesklets.mo
+share/gnome/gdesklets/Sensors/StarterBar/locale/cs/LC_MESSAGES/gdesklets.mo
+share/gnome/gdesklets/Sensors/StarterBar/locale/de/LC_MESSAGES/gdesklets.mo
+share/gnome/gdesklets/Sensors/StarterBar/locale/es/LC_MESSAGES/gdesklets.mo
+share/gnome/gdesklets/Sensors/StarterBar/locale/fr/LC_MESSAGES/gdesklets.mo
+share/gnome/gdesklets/Sensors/StarterBar/locale/hr/LC_MESSAGES/gdesklets.mo
+share/gnome/gdesklets/Sensors/StarterBar/locale/nl/LC_MESSAGES/gdesklets.mo
+share/gnome/gdesklets/Sensors/StarterBar/locale/pt/LC_MESSAGES/gdesklets.mo
+share/gnome/gdesklets/Sensors/StarterBar/locale/pt_BR/LC_MESSAGES/gdesklets.mo
+share/gnome/gdesklets/Sensors/StarterBar/locale/sq/LC_MESSAGES/gdesklets.mo
+share/gnome/gdesklets/Sensors/StarterBar/locale/sr/LC_MESSAGES/gdesklets.mo
+share/gnome/gdesklets/Sensors/StarterBar/locale/sr@Latn/LC_MESSAGES/gdesklets.mo
+share/gnome/gdesklets/Sensors/StarterBar/locale/sv/LC_MESSAGES/gdesklets.mo
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/sv/LC_MESSAGES
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/sv
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/sr@Latn/LC_MESSAGES
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/sr@Latn
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/sr/LC_MESSAGES
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/sr
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/sq/LC_MESSAGES
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/sq
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/pt_BR/LC_MESSAGES
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/pt_BR
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/pt/LC_MESSAGES
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/pt
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/nl/LC_MESSAGES
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/nl
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/hr/LC_MESSAGES
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/hr
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/fr/LC_MESSAGES
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/fr
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/es/LC_MESSAGES
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/es
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/de/LC_MESSAGES
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/de
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/cs/LC_MESSAGES
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/cs
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/ca/LC_MESSAGES
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale/ca
+@dirrm share/gnome/gdesklets/Sensors/StarterBar/locale
+@dirrm share/gnome/gdesklets/Sensors/StarterBar
+@dirrm share/gnome/gdesklets/Displays/StarterBar/gfx
+@dirrm share/gnome/gdesklets/Displays/StarterBar
diff --git a/irc/gdesklets-irc/Makefile b/irc/gdesklets-irc/Makefile
new file mode 100644
index 000000000..049703f80
--- /dev/null
+++ b/irc/gdesklets-irc/Makefile
@@ -0,0 +1,51 @@
+# New ports collection makefile for: gdesklets-irc
+# Date created: 6 May 2004
+# Whom: Hye-Shik Chang
+#
+# $FreeBSD$
+#
+
+PORTNAME= irc
+PORTVERSION= 1.2
+PORTREVISION= 4
+CATEGORIES= irc gnome deskutils
+MASTER_SITES= http://gdesklets.gnomedesktop.org/files/
+PKGNAMEPREFIX= gdesklets-
+
+MAINTAINER= perky@FreeBSD.org
+COMMENT= An IRC display and sensor for gdesklets
+
+RUN_DEPENDS= gdesklets:${PORTSDIR}/deskutils/gdesklets \
+ ${PYTHON_SITELIBDIR}/twisted/__init__.py:${PORTSDIR}/devel/py-twisted
+
+USE_PYTHON= yes
+USE_XLIB= yes
+
+NAME= irc
+DATADIR= ${PREFIX}/share/gnome/gdesklets
+LANG= ko
+PKGMESSAGE= ${WRKDIR}/pkg-message
+WRKSRC= ${WRKDIR}/${NAME}
+
+do-build:
+ @${WRKSRC}/Install_${NAME}_Sensor.bin --nomsg ${WRKSRC}
+ @${CAT} pkg-message | ${SED} -e 's|%%PREFIX%%|${PREFIX}|g ; s|%%NAME%%|${NAME}|g' > ${PKGMESSAGE}
+
+do-install:
+ @${MKDIR} ${DATADIR}/Displays/${NAME}/gfx
+ @${MKDIR} ${DATADIR}/Sensors/${NAME}/gfx
+ @${INSTALL_DATA} ${WRKSRC}/${NAME}/*.py ${DATADIR}/Sensors/${NAME}/
+.for ii in ${LANG}
+ @${MKDIR} ${DATADIR}/Sensors/${NAME}/locale/${ii}/LC_MESSAGES
+ @${INSTALL_DATA} ${WRKSRC}/${NAME}/locale/${ii}/LC_MESSAGES/*.mo \
+ ${DATADIR}/Sensors/${NAME}/locale/${ii}/LC_MESSAGES/
+.endfor
+ @${INSTALL_DATA} ${WRKSRC}/*.display ${DATADIR}/Displays/${NAME}/
+ @${INSTALL_DATA} ${WRKSRC}/gfx/*.png ${DATADIR}/Displays/${NAME}/gfx/
+
+post-install:
+ @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${DATADIR}/Sensors/${NAME}
+ @${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${DATADIR}/Sensors/${NAME}
+ @${CAT} ${PKGMESSAGE}
+
+.include <bsd.port.mk>
diff --git a/irc/gdesklets-irc/distinfo b/irc/gdesklets-irc/distinfo
new file mode 100644
index 000000000..e4b85f1c1
--- /dev/null
+++ b/irc/gdesklets-irc/distinfo
@@ -0,0 +1,3 @@
+MD5 (irc-1.2.tar.gz) = 9e7d9e972eed0817dc0b18c5304d723d
+SHA256 (irc-1.2.tar.gz) = cf3b0e10ffcb9d79577f9df6458a57edf1291d275b8d9334a56bb0f913ad9204
+SIZE (irc-1.2.tar.gz) = 27481
diff --git a/irc/gdesklets-irc/pkg-descr b/irc/gdesklets-irc/pkg-descr
new file mode 100644
index 000000000..0de5cf66a
--- /dev/null
+++ b/irc/gdesklets-irc/pkg-descr
@@ -0,0 +1,13 @@
+This desklet allows you to chat in your screen background.
+
+Features:
+* Use the mouse scroll wheel to scroll through history.
+* Integrated Text-To-Speech through Festival
+* Dynamically resizable borders
+* Tab completion on nicks and commands
+* Log text to a file
+* Text wrapping
+* Login to secure channels with username and password
+* i18n support
+
+WWW: http://gdesklets.gnomedesktop.org/
diff --git a/irc/gdesklets-irc/pkg-message b/irc/gdesklets-irc/pkg-message
new file mode 100644
index 000000000..11381c116
--- /dev/null
+++ b/irc/gdesklets-irc/pkg-message
@@ -0,0 +1,13 @@
+##
+To view the installed applets:
+
+ ls %%PREFIX%%/share/gnome/gdesklets/Displays
+
+To use this applet:
+
+ gdesklets open %%PREFIX%%/share/gnome/gdesklets/Displays/%%NAME%%/%%NAME%%.display
+
+NOTE: Be sure to login as your user when you use the gdesklets command,
+ as the configuration will be stored in the ~/.gdesklets/ directory
+ and/or gconf database.
+##
diff --git a/irc/gdesklets-irc/pkg-plist b/irc/gdesklets-irc/pkg-plist
new file mode 100644
index 000000000..3280ee01b
--- /dev/null
+++ b/irc/gdesklets-irc/pkg-plist
@@ -0,0 +1,26 @@
+%%DATADIR%%/Displays/irc/gfx/bottom_edge.png
+%%DATADIR%%/Displays/irc/gfx/bottom_left_corner.png
+%%DATADIR%%/Displays/irc/gfx/bottom_right_corner.png
+%%DATADIR%%/Displays/irc/gfx/left_edge.png
+%%DATADIR%%/Displays/irc/gfx/right_edge.png
+%%DATADIR%%/Displays/irc/gfx/top_edge.png
+%%DATADIR%%/Displays/irc/gfx/top_left_corner.png
+%%DATADIR%%/Displays/irc/gfx/top_right_corner.png
+%%DATADIR%%/Displays/irc/irc.display
+%%DATADIR%%/Sensors/irc/__init__.py
+%%DATADIR%%/Sensors/irc/__init__.pyc
+%%DATADIR%%/Sensors/irc/__init__.pyo
+%%DATADIR%%/Sensors/irc/ircbot.py
+%%DATADIR%%/Sensors/irc/ircbot.pyc
+%%DATADIR%%/Sensors/irc/ircbot.pyo
+%%DATADIR%%/Sensors/irc/locale/ko/LC_MESSAGES/irc_sensor.mo
+%%DATADIR%%/Sensors/irc/message_window.py
+%%DATADIR%%/Sensors/irc/message_window.pyc
+%%DATADIR%%/Sensors/irc/message_window.pyo
+@dirrm %%DATADIR%%/Sensors/irc/locale/ko/LC_MESSAGES
+@dirrm %%DATADIR%%/Sensors/irc/locale/ko
+@dirrm %%DATADIR%%/Sensors/irc/locale
+@dirrm %%DATADIR%%/Sensors/irc/gfx
+@dirrm %%DATADIR%%/Sensors/irc
+@dirrm %%DATADIR%%/Displays/irc/gfx
+@dirrm %%DATADIR%%/Displays/irc
diff --git a/x11-clocks/gdesklets-clock/Makefile b/x11-clocks/gdesklets-clock/Makefile
new file mode 100644
index 000000000..d03a8db83
--- /dev/null
+++ b/x11-clocks/gdesklets-clock/Makefile
@@ -0,0 +1,53 @@
+# New ports collection makefile for: gdesklets-clock
+# Date created: 02 September 2003
+# Whom: Mezz <mezz7@cox.net>
+#
+# $FreeBSD$
+#
+
+PORTNAME= clock
+PORTVERSION= 0.32
+PORTREVISION= 6
+CATEGORIES= x11-clocks gnome
+MASTER_SITES= http://gdesklets.gnomedesktop.org/files/
+PKGNAMEPREFIX= gdesklets-
+DISTNAME= clock-desklet-${PORTVERSION}
+
+MAINTAINER= ports@FreeBSD.org
+COMMENT= Various clock displays for Gnome 2.x
+
+RUN_DEPENDS= gdesklets:${PORTSDIR}/deskutils/gdesklets
+
+USE_BZIP2= yes
+USE_PYTHON= yes
+USE_XLIB= yes
+
+NAME= Clock
+DATADIR= ${PREFIX}/share/gnome
+LANG= de fr pt sq sr sr@Latn sv
+
+do-build:
+ @${WRKSRC}/Install_${NAME}_Sensor.bin --nomsg ${WRKSRC}
+ @${FIND} ${WRKSRC} -name '*.orig' -delete
+ @${PATCH} ${WRKSRC}/Clock/__init__.py < ${FILESDIR}/Clock::__init__.py
+
+do-install:
+ @${MKDIR} ${DATADIR}/gdesklets/Displays/${NAME}/gfx
+.for ii in ${LANG}
+ @${MKDIR} ${DATADIR}/gdesklets/Sensors/${NAME}/locale/${ii}/LC_MESSAGES
+ @${INSTALL_DATA} ${WRKSRC}/${NAME}/locale/${ii}/LC_MESSAGES/*.mo \
+ ${DATADIR}/gdesklets/Sensors/${NAME}/locale/${ii}/LC_MESSAGES/
+.endfor
+ @${INSTALL_DATA} ${WRKSRC}/${NAME}/*.py ${DATADIR}/gdesklets/Sensors/${NAME}/
+ @${INSTALL_DATA} ${WRKSRC}/${NAME}/*.dat ${DATADIR}/gdesklets/Sensors/${NAME}/
+ @${INSTALL_DATA} ${WRKSRC}/*.display ${DATADIR}/gdesklets/Displays/${NAME}/
+ @${INSTALL_DATA} ${WRKSRC}/gfx/*.png ${DATADIR}/gdesklets/Displays/${NAME}/gfx/
+ @${INSTALL_DATA} ${WRKSRC}/gfx/*.xcf ${DATADIR}/gdesklets/Displays/${NAME}/gfx/
+ @${INSTALL_DATA} ${WRKSRC}/README ${DATADIR}/gdesklets/Displays/${NAME}/
+ @${LN} -s ${DATADIR}/gdesklets/Displays/${NAME}/README \
+ ${DATADIR}/gdesklets/Sensors/${NAME}/README
+
+post-install:
+ @${CAT} ${PKGMESSAGE}
+
+.include <bsd.port.mk>
diff --git a/x11-clocks/gdesklets-clock/distinfo b/x11-clocks/gdesklets-clock/distinfo
new file mode 100644
index 000000000..c01a4dba3
--- /dev/null
+++ b/x11-clocks/gdesklets-clock/distinfo
@@ -0,0 +1,3 @@
+MD5 (clock-desklet-0.32.tar.bz2) = d9b8a292e6e439ab62765143b6678df5
+SHA256 (clock-desklet-0.32.tar.bz2) = 83d50abf487f2e0f6d9e5a53e82d6f113bca33843dcb1cd46a7f38a23745635d
+SIZE (clock-desklet-0.32.tar.bz2) = 159655
diff --git a/x11-clocks/gdesklets-clock/files/Clock::__init__.py b/x11-clocks/gdesklets-clock/files/Clock::__init__.py
new file mode 100644
index 000000000..f0f063ed9
--- /dev/null
+++ b/x11-clocks/gdesklets-clock/files/Clock::__init__.py
@@ -0,0 +1,16 @@
+--- __init__.py.bak Tue Mar 30 18:08:39 2004
++++ __init__.py Tue Mar 30 18:11:36 2004
+@@ -149,8 +149,11 @@
+ timezone = self._get_config("timezone")
+ if (timezone != self.__timezone):
+ self.__timezone = timezone
+- offset = commands.getoutput("TZ=\"%(timezone)s\" date +%%z"
+- % vars())
++ if timezone == "localtime":
++ offset = commands.getoutput("date +%z")
++ else:
++ offset = commands.getoutput("TZ=\"%(timezone)s\" date +%%z"
++ % vars())
+ sign = (offset[0] == "+") and 1 or -1
+ hours = int(offset[1:3])
+ mins = int(offset[3:5])
diff --git a/x11-clocks/gdesklets-clock/files/patch-Install_Clock_Sensor.bin b/x11-clocks/gdesklets-clock/files/patch-Install_Clock_Sensor.bin
new file mode 100644
index 000000000..0de363c68
--- /dev/null
+++ b/x11-clocks/gdesklets-clock/files/patch-Install_Clock_Sensor.bin
@@ -0,0 +1,19 @@
+--- Install_Clock_Sensor.bin.orig Wed Sep 3 12:51:06 2003
++++ Install_Clock_Sensor.bin Wed Sep 3 12:52:23 2003
+@@ -75,15 +75,9 @@
+ else:
+ cmd = "mkdir -p %(destination)s; cd %(destination)s; " \
+ "LANG=C tar -xzvf %(tmp)s 2>&1"
+- fail, out = commands.getstatusoutput(cmd % vars())
++ commands.getstatusoutput(cmd % vars())
+ os.unlink(tmp)
+
+- if (fail):
+- if (no_message): print ERROR_TAR + out
+- else: message(ERROR_TAR + out, "error")
+- sys.exit(1)
+-
+- print out
+ if (not list_only):
+ if (no_message): print SUCCESS
+ else: message(SUCCESS, "info")
diff --git a/x11-clocks/gdesklets-clock/pkg-descr b/x11-clocks/gdesklets-clock/pkg-descr
new file mode 100644
index 000000000..539db5456
--- /dev/null
+++ b/x11-clocks/gdesklets-clock/pkg-descr
@@ -0,0 +1,3 @@
+The Clock sensor with various clock displays.
+
+WWW: http://gdesklets.gnomedesktop.org/
diff --git a/x11-clocks/gdesklets-clock/pkg-message b/x11-clocks/gdesklets-clock/pkg-message
new file mode 100644
index 000000000..f16b427c6
--- /dev/null
+++ b/x11-clocks/gdesklets-clock/pkg-message
@@ -0,0 +1,19 @@
+##
+To view the README:
+
+ cat ${PREFIX}/share/gnome/gdesklets/Displays/${name}/README
+ cat ${PREFIX}/share/gnome/gdesklets/Sensors/${name}/README
+
+To view all installed applets:
+
+ ls ${PREFIX}/share/gnome/gdesklets/Displays
+
+To use those applets:
+
+ gdesklets open ${PREFIX}/share/gnome/gdesklets/Displays/${name}/${name}.display
+
+Replace ${name} with the correct name of the applets you want to use.
+
+NOTE: Be sure to login as your user when you use the gdesklets command,
+ as the configuration will be stored in the ~/.gdesklets/ directory.
+##
diff --git a/x11-clocks/gdesklets-clock/pkg-plist b/x11-clocks/gdesklets-clock/pkg-plist
new file mode 100644
index 000000000..e75d46f8d
--- /dev/null
+++ b/x11-clocks/gdesklets-clock/pkg-plist
@@ -0,0 +1,41 @@
+share/gnome/gdesklets/Displays/Clock/README
+share/gnome/gdesklets/Displays/Clock/gfx/clock.png
+share/gnome/gdesklets/Displays/Clock/gfx/gnomeclock.png
+share/gnome/gdesklets/Displays/Clock/gfx/gnomeclock.xcf
+share/gnome/gdesklets/Displays/Clock/gfx/osXclock.png
+share/gnome/gdesklets/Displays/Clock/gfx/pocketwatch.png
+share/gnome/gdesklets/Displays/Clock/gfx/pocketwatch.xcf
+share/gnome/gdesklets/Displays/Clock/gfx/rafclock.png
+share/gnome/gdesklets/Displays/Clock/gnomeclock.display
+share/gnome/gdesklets/Displays/Clock/osXclock.display
+share/gnome/gdesklets/Displays/Clock/plainclock.display
+share/gnome/gdesklets/Displays/Clock/pocket-watch.display
+share/gnome/gdesklets/Displays/Clock/rafclock.display
+share/gnome/gdesklets/Sensors/Clock/README
+share/gnome/gdesklets/Sensors/Clock/__init__.py
+share/gnome/gdesklets/Sensors/Clock/locale/de/LC_MESSAGES/gdesklets.mo
+share/gnome/gdesklets/Sensors/Clock/locale/fr/LC_MESSAGES/gdesklets.mo
+share/gnome/gdesklets/Sensors/Clock/locale/pt/LC_MESSAGES/gdesklets.mo
+share/gnome/gdesklets/Sensors/Clock/locale/sq/LC_MESSAGES/gdesklets.mo
+share/gnome/gdesklets/Sensors/Clock/locale/sr/LC_MESSAGES/gdesklets.mo
+share/gnome/gdesklets/Sensors/Clock/locale/sr@Latn/LC_MESSAGES/gdesklets.mo
+share/gnome/gdesklets/Sensors/Clock/locale/sv/LC_MESSAGES/gdesklets.mo
+share/gnome/gdesklets/Sensors/Clock/timezones.dat
+@dirrm share/gnome/gdesklets/Sensors/Clock/locale/sv/LC_MESSAGES
+@dirrm share/gnome/gdesklets/Sensors/Clock/locale/sv
+@dirrm share/gnome/gdesklets/Sensors/Clock/locale/sr@Latn/LC_MESSAGES
+@dirrm share/gnome/gdesklets/Sensors/Clock/locale/sr@Latn
+@dirrm share/gnome/gdesklets/Sensors/Clock/locale/sr/LC_MESSAGES
+@dirrm share/gnome/gdesklets/Sensors/Clock/locale/sr
+@dirrm share/gnome/gdesklets/Sensors/Clock/locale/sq/LC_MESSAGES
+@dirrm share/gnome/gdesklets/Sensors/Clock/locale/sq
+@dirrm share/gnome/gdesklets/Sensors/Clock/locale/pt/LC_MESSAGES
+@dirrm share/gnome/gdesklets/Sensors/Clock/locale/pt
+@dirrm share/gnome/gdesklets/Sensors/Clock/locale/fr/LC_MESSAGES
+@dirrm share/gnome/gdesklets/Sensors/Clock/locale/fr
+@dirrm share/gnome/gdesklets/Sensors/Clock/locale/de/LC_MESSAGES
+@dirrm share/gnome/gdesklets/Sensors/Clock/locale/de
+@dirrm share/gnome/gdesklets/Sensors/Clock/locale
+@dirrm share/gnome/gdesklets/Sensors/Clock
+@dirrm share/gnome/gdesklets/Displays/Clock/gfx
+@dirrm share/gnome/gdesklets/Displays/Clock
diff --git a/x11-clocks/gdesklets-countdown/Makefile b/x11-clocks/gdesklets-countdown/Makefile
new file mode 100644
index 000000000..23ad6a4ac
--- /dev/null
+++ b/x11-clocks/gdesklets-countdown/Makefile
@@ -0,0 +1,50 @@
+# New ports collection makefile for: gdesklets-countdown
+# Date created: 06 January 2004
+# Whom: Vincent Tantardini <vinc@FreeBSD-fr.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= countdown
+PORTVERSION= 0.8
+PORTREVISION= 6
+CATEGORIES= x11-clocks gnome
+MASTER_SITES= http://gdesklets.gnomedesktop.org/files/
+PKGNAMEPREFIX= gdesklets-
+DISTNAME= Countdown-${PORTVERSION}
+
+MAINTAINER= ports@FreeBSD.org
+COMMENT= Countdown the remaining time until a configurable date
+
+RUN_DEPENDS= gdesklets:${PORTSDIR}/deskutils/gdesklets
+
+USE_BZIP2= yes
+USE_XLIB= yes
+USE_PYTHON= yes
+
+NAME= Countdown
+DATADIR= ${PREFIX}/share/gnome
+PKGMESSAGE= ${WRKDIR}/pkg-message
+
+do-build:
+ @${WRKSRC}/Install_${NAME}_Sensor.bin --nomsg ${WRKSRC}
+ @${WRKSRC}/Install_LTVFontSelector_Sensor.bin --nomsg ${WRKSRC}
+ @${FIND} ${WRKSRC} -name '*.orig' -delete
+ @${CAT} pkg-message | ${SED} -e 's|%%PREFIX%%|${PREFIX}|g' > ${PKGMESSAGE}
+
+do-install:
+ @${MKDIR} ${DATADIR}/gdesklets/Displays/${NAME}/gfx
+ @${MKDIR} ${DATADIR}/gdesklets/Sensors/${NAME}
+ @${MKDIR} ${DATADIR}/gdesklets/Sensors/LTVFontSelector/
+ @${INSTALL_DATA} ${WRKSRC}/${NAME}/*.py ${DATADIR}/gdesklets/Sensors/${NAME}/
+ @${INSTALL_DATA} ${WRKSRC}/LTVFontSelector/*.py ${DATADIR}/gdesklets/Sensors/LTVFontSelector/
+ @${INSTALL_DATA} ${WRKSRC}/*.display ${DATADIR}/gdesklets/Displays/${NAME}/
+ @${INSTALL_DATA} ${WRKSRC}/gfx/*.png ${DATADIR}/gdesklets/Displays/${NAME}/gfx/
+ @${INSTALL_DATA} ${WRKSRC}/README ${DATADIR}/gdesklets/Displays/${NAME}/
+ @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${DATADIR}/gdesklets/Sensors/${NAME}
+ @${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${DATADIR}/gdesklets/Sensors/${NAME}
+ @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${DATADIR}/gdesklets/Sensors/LTVFontSelector
+ @${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${DATADIR}/gdesklets/Sensors/LTVFontSelector
+ @${CAT} ${PKGMESSAGE}
+
+.include <bsd.port.mk>
diff --git a/x11-clocks/gdesklets-countdown/distinfo b/x11-clocks/gdesklets-countdown/distinfo
new file mode 100644
index 000000000..d047b8218
--- /dev/null
+++ b/x11-clocks/gdesklets-countdown/distinfo
@@ -0,0 +1,3 @@
+MD5 (Countdown-0.8.tar.bz2) = b69ba353eb51342a24b1588190f08431
+SHA256 (Countdown-0.8.tar.bz2) = d7ce799f3fc95c772b2ad2033feacdd1fc1277f9f24201eb727b8e64c76772c1
+SIZE (Countdown-0.8.tar.bz2) = 31246
diff --git a/x11-clocks/gdesklets-countdown/pkg-descr b/x11-clocks/gdesklets-countdown/pkg-descr
new file mode 100644
index 000000000..49faaa723
--- /dev/null
+++ b/x11-clocks/gdesklets-countdown/pkg-descr
@@ -0,0 +1,6 @@
+This desklet allows to countdown the remaining time until a configurable
+date. It then displays a victorious 'Hurrah!', or whatever you set.
+It also provides an increasing counter ('countup' feature), displaying
+the time elapsed from the specified date.
+
+WWW: http://gdesklets.gnomedesktop.org/
diff --git a/x11-clocks/gdesklets-countdown/pkg-message b/x11-clocks/gdesklets-countdown/pkg-message
new file mode 100644
index 000000000..444cfc57f
--- /dev/null
+++ b/x11-clocks/gdesklets-countdown/pkg-message
@@ -0,0 +1,17 @@
+##
+To view the README:
+
+ cat %%PREFIX%%/share/gnome/gdesklets/Displays/Countdown/README
+ cat %%PREFIX%%/share/gnome/gdesklets/Sensors/Countdown/README
+
+To view all installed applets:
+
+ ls %%PREFIX%%/share/gnome/gdesklets/Displays
+
+To use those applets:
+
+ gdesklets open %%PREFIX%%/share/gnome/gdesklets/Displays/Countdown/Countdown.display
+
+NOTE: Be sure to login as your user when you use the gdesklets command,
+ as the configuration will be stored in the ~/.gdesklets/ directory.
+##
diff --git a/x11-clocks/gdesklets-countdown/pkg-plist b/x11-clocks/gdesklets-countdown/pkg-plist
new file mode 100644
index 000000000..2cf75c0f8
--- /dev/null
+++ b/x11-clocks/gdesklets-countdown/pkg-plist
@@ -0,0 +1,16 @@
+share/gnome/gdesklets/Displays/Countdown/Countdown.display
+share/gnome/gdesklets/Displays/Countdown/README
+share/gnome/gdesklets/Displays/Countdown/gfx/frame.png
+share/gnome/gdesklets/Displays/Countdown/gfx/safari1.png
+share/gnome/gdesklets/Displays/Countdown/gfx/safari2.png
+share/gnome/gdesklets/Displays/Countdown/gfx/safari3.png
+share/gnome/gdesklets/Sensors/Countdown/__init__.py
+share/gnome/gdesklets/Sensors/Countdown/__init__.pyc
+share/gnome/gdesklets/Sensors/Countdown/__init__.pyo
+share/gnome/gdesklets/Sensors/LTVFontSelector/__init__.py
+share/gnome/gdesklets/Sensors/LTVFontSelector/__init__.pyc
+share/gnome/gdesklets/Sensors/LTVFontSelector/__init__.pyo
+@dirrm share/gnome/gdesklets/Sensors/LTVFontSelector
+@dirrm share/gnome/gdesklets/Sensors/Countdown
+@dirrm share/gnome/gdesklets/Displays/Countdown/gfx
+@dirrm share/gnome/gdesklets/Displays/Countdown