diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-08-07 12:45:26 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-08-07 12:45:26 +0800 |
commit | 466fecc955c4edadfec86bb995303a05e20a36c0 (patch) | |
tree | ba5799f0b49cd481a7d0b834a53da412ed91ba59 /x11-clocks | |
parent | ae02cb4fcd9a5e211cbf998df8eec4521072dbe9 (diff) | |
download | marcuscom-ports-466fecc955c4edadfec86bb995303a05e20a36c0.tar marcuscom-ports-466fecc955c4edadfec86bb995303a05e20a36c0.tar.gz marcuscom-ports-466fecc955c4edadfec86bb995303a05e20a36c0.tar.bz2 marcuscom-ports-466fecc955c4edadfec86bb995303a05e20a36c0.tar.lz marcuscom-ports-466fecc955c4edadfec86bb995303a05e20a36c0.tar.xz marcuscom-ports-466fecc955c4edadfec86bb995303a05e20a36c0.tar.zst marcuscom-ports-466fecc955c4edadfec86bb995303a05e20a36c0.zip |
share/gnome/ -> share/.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@9365 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-clocks')
21 files changed, 373 insertions, 0 deletions
diff --git a/x11-clocks/gdesklets-clock/Makefile b/x11-clocks/gdesklets-clock/Makefile new file mode 100644 index 000000000..8761fdacc --- /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= 8 +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 +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..c9b65b336 --- /dev/null +++ b/x11-clocks/gdesklets-clock/pkg-message @@ -0,0 +1,19 @@ +## +To view the README: + + cat ${PREFIX}/share/gdesklets/Displays/${name}/README + cat ${PREFIX}/share/gdesklets/Sensors/${name}/README + +To view all installed applets: + + ls ${PREFIX}/share/gdesklets/Displays + +To use those applets: + + gdesklets open ${PREFIX}/share/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..7b4bf935c --- /dev/null +++ b/x11-clocks/gdesklets-clock/pkg-plist @@ -0,0 +1,41 @@ +share/gdesklets/Displays/Clock/README +share/gdesklets/Displays/Clock/gfx/clock.png +share/gdesklets/Displays/Clock/gfx/gnomeclock.png +share/gdesklets/Displays/Clock/gfx/gnomeclock.xcf +share/gdesklets/Displays/Clock/gfx/osXclock.png +share/gdesklets/Displays/Clock/gfx/pocketwatch.png +share/gdesklets/Displays/Clock/gfx/pocketwatch.xcf +share/gdesklets/Displays/Clock/gfx/rafclock.png +share/gdesklets/Displays/Clock/gnomeclock.display +share/gdesklets/Displays/Clock/osXclock.display +share/gdesklets/Displays/Clock/plainclock.display +share/gdesklets/Displays/Clock/pocket-watch.display +share/gdesklets/Displays/Clock/rafclock.display +share/gdesklets/Sensors/Clock/README +share/gdesklets/Sensors/Clock/__init__.py +share/gdesklets/Sensors/Clock/locale/de/LC_MESSAGES/gdesklets.mo +share/gdesklets/Sensors/Clock/locale/fr/LC_MESSAGES/gdesklets.mo +share/gdesklets/Sensors/Clock/locale/pt/LC_MESSAGES/gdesklets.mo +share/gdesklets/Sensors/Clock/locale/sq/LC_MESSAGES/gdesklets.mo +share/gdesklets/Sensors/Clock/locale/sr/LC_MESSAGES/gdesklets.mo +share/gdesklets/Sensors/Clock/locale/sr@Latn/LC_MESSAGES/gdesklets.mo +share/gdesklets/Sensors/Clock/locale/sv/LC_MESSAGES/gdesklets.mo +share/gdesklets/Sensors/Clock/timezones.dat +@dirrm share/gdesklets/Sensors/Clock/locale/sv/LC_MESSAGES +@dirrm share/gdesklets/Sensors/Clock/locale/sv +@dirrm share/gdesklets/Sensors/Clock/locale/sr@Latn/LC_MESSAGES +@dirrm share/gdesklets/Sensors/Clock/locale/sr@Latn +@dirrm share/gdesklets/Sensors/Clock/locale/sr/LC_MESSAGES +@dirrm share/gdesklets/Sensors/Clock/locale/sr +@dirrm share/gdesklets/Sensors/Clock/locale/sq/LC_MESSAGES +@dirrm share/gdesklets/Sensors/Clock/locale/sq +@dirrm share/gdesklets/Sensors/Clock/locale/pt/LC_MESSAGES +@dirrm share/gdesklets/Sensors/Clock/locale/pt +@dirrm share/gdesklets/Sensors/Clock/locale/fr/LC_MESSAGES +@dirrm share/gdesklets/Sensors/Clock/locale/fr +@dirrm share/gdesklets/Sensors/Clock/locale/de/LC_MESSAGES +@dirrm share/gdesklets/Sensors/Clock/locale/de +@dirrm share/gdesklets/Sensors/Clock/locale +@dirrm share/gdesklets/Sensors/Clock +@dirrm share/gdesklets/Displays/Clock/gfx +@dirrm share/gdesklets/Displays/Clock diff --git a/x11-clocks/gdesklets-countdown/Makefile b/x11-clocks/gdesklets-countdown/Makefile new file mode 100644 index 000000000..8e032390c --- /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= 8 +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 +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..9fd7bd2d6 --- /dev/null +++ b/x11-clocks/gdesklets-countdown/pkg-message @@ -0,0 +1,17 @@ +## +To view the README: + + cat %%PREFIX%%/share/gdesklets/Displays/Countdown/README + cat %%PREFIX%%/share/gdesklets/Sensors/Countdown/README + +To view all installed applets: + + ls %%PREFIX%%/share/gdesklets/Displays + +To use those applets: + + gdesklets open %%PREFIX%%/share/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..feab11e48 --- /dev/null +++ b/x11-clocks/gdesklets-countdown/pkg-plist @@ -0,0 +1,16 @@ +share/gdesklets/Displays/Countdown/Countdown.display +share/gdesklets/Displays/Countdown/README +share/gdesklets/Displays/Countdown/gfx/frame.png +share/gdesklets/Displays/Countdown/gfx/safari1.png +share/gdesklets/Displays/Countdown/gfx/safari2.png +share/gdesklets/Displays/Countdown/gfx/safari3.png +share/gdesklets/Sensors/Countdown/__init__.py +share/gdesklets/Sensors/Countdown/__init__.pyc +share/gdesklets/Sensors/Countdown/__init__.pyo +share/gdesklets/Sensors/LTVFontSelector/__init__.py +share/gdesklets/Sensors/LTVFontSelector/__init__.pyc +share/gdesklets/Sensors/LTVFontSelector/__init__.pyo +@dirrm share/gdesklets/Sensors/LTVFontSelector +@dirrm share/gdesklets/Sensors/Countdown +@dirrm share/gdesklets/Displays/Countdown/gfx +@dirrm share/gdesklets/Displays/Countdown diff --git a/x11-clocks/gdesklets-ebichuclock/Makefile b/x11-clocks/gdesklets-ebichuclock/Makefile new file mode 100644 index 000000000..6422c6499 --- /dev/null +++ b/x11-clocks/gdesklets-ebichuclock/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: gdesklets-ebichuclock +# Date created: 07 January 2004 +# Whom: Vincent Tantardini <vinc@FreeBSD-fr.org> +# +# $FreeBSD$ +# + +PORTNAME= ebichuclock +PORTVERSION= 0.1.1 +PORTREVISION= 7 +CATEGORIES= x11-clocks gnome +MASTER_SITES= http://gdesklets.gnomedesktop.org/files/ +PKGNAMEPREFIX= gdesklets- + +MAINTAINER= ports@FreeBSD.org +COMMENT= A very simple clock with a small Ebichu picture in it + +RUN_DEPENDS= gdesklets:${PORTSDIR}/deskutils/gdesklets \ + ${LOCALBASE}/share/gdesklets/Sensors/Clock/__init__.py:${PORTSDIR}/x11-clocks/gdesklets-clock + +USE_BZIP2= yes +USE_XLIB= yes + +NAME= ebichuclock +DATADIR= ${PREFIX}/share +PKGMESSAGE= ${WRKDIR}/pkg-message +WRKSRC= ${WRKDIR}/${PORTNAME} + +do-build: + @${CAT} pkg-message | ${SED} -e 's|%%PREFIX%%|${PREFIX}|g ; s|%%NAME%%|${NAME}|g' > ${PKGMESSAGE} + +do-install: + @${MKDIR} ${DATADIR}/gdesklets/Displays/${NAME}/gfx + @${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}/ + @${CAT} ${PKGMESSAGE} + +.include <bsd.port.mk> diff --git a/x11-clocks/gdesklets-ebichuclock/distinfo b/x11-clocks/gdesklets-ebichuclock/distinfo new file mode 100644 index 000000000..13db6afc3 --- /dev/null +++ b/x11-clocks/gdesklets-ebichuclock/distinfo @@ -0,0 +1,3 @@ +MD5 (ebichuclock-0.1.1.tar.bz2) = 2a977f8753a1651d22d6b49860d5b1c0 +SHA256 (ebichuclock-0.1.1.tar.bz2) = 202a38f25d8fd91eb0add84e4533020ed3cccec617f681a08495dc5679d9ef56 +SIZE (ebichuclock-0.1.1.tar.bz2) = 31481 diff --git a/x11-clocks/gdesklets-ebichuclock/pkg-descr b/x11-clocks/gdesklets-ebichuclock/pkg-descr new file mode 100644 index 000000000..5d26043d6 --- /dev/null +++ b/x11-clocks/gdesklets-ebichuclock/pkg-descr @@ -0,0 +1,5 @@ +Ebichuclock is something like emiclock with Ebichu in it. +Ofcourse the idea is based on our favorite hamster +(and no i do not mean hamtaro :-) + +WWW: http://gdesklets.gnomedesktop.org/ diff --git a/x11-clocks/gdesklets-ebichuclock/pkg-message b/x11-clocks/gdesklets-ebichuclock/pkg-message new file mode 100644 index 000000000..f1fd712ef --- /dev/null +++ b/x11-clocks/gdesklets-ebichuclock/pkg-message @@ -0,0 +1,9 @@ + +To list displays installed by this port: + + ls %%PREFIX%%/share/gdesklets/Displays/%%NAME%% + +To add this desklet to your desktop: + + gdesklets open %%PREFIX%%/share/gdesklets/Displays/%%NAME%%/<name>.display + diff --git a/x11-clocks/gdesklets-ebichuclock/pkg-plist b/x11-clocks/gdesklets-ebichuclock/pkg-plist new file mode 100644 index 000000000..4e4807c62 --- /dev/null +++ b/x11-clocks/gdesklets-ebichuclock/pkg-plist @@ -0,0 +1,11 @@ +share/gdesklets/Displays/ebichuclock/README +share/gdesklets/Displays/ebichuclock/ebichuclock-happy.display +share/gdesklets/Displays/ebichuclock/ebichuclock-pie.display +share/gdesklets/Displays/ebichuclock/ebichuclock-xface.display +share/gdesklets/Displays/ebichuclock/ebichuclock.display +share/gdesklets/Displays/ebichuclock/gfx/ebichu0.png +share/gdesklets/Displays/ebichuclock/gfx/ebichu1.png +share/gdesklets/Displays/ebichuclock/gfx/ebichu2.png +share/gdesklets/Displays/ebichuclock/gfx/ebichuclock.png +@dirrm share/gdesklets/Displays/ebichuclock/gfx +@dirrm share/gdesklets/Displays/ebichuclock diff --git a/x11-clocks/gtubeclock/Makefile b/x11-clocks/gtubeclock/Makefile new file mode 100644 index 000000000..addfc48e3 --- /dev/null +++ b/x11-clocks/gtubeclock/Makefile @@ -0,0 +1,21 @@ +# New ports collection makefile for: gtubeclock +# Date created: 9 Jan 2005 +# Whom: UMENO Takashi +# +# $FreeBSD$ +# + +PORTNAME= gtubeclock +PORTVERSION= 0.9.1 +PORTREVISION= 5 +CATEGORIES= x11-clocks +MASTER_SITES= http://www.bonnyswan.com/gtubeclock/downloads/ + +MAINTAINER= umeno@rr.iij4u.or.jp +COMMENT= A nixie tube clock for GNOME + +USE_X_PREFIX= yes +GNU_CONFIGURE= yes +USE_GNOME= gnomeprefix gnomehack gtk20 libgnomeui + +.include <bsd.port.mk> diff --git a/x11-clocks/gtubeclock/distinfo b/x11-clocks/gtubeclock/distinfo new file mode 100644 index 000000000..6786c27de --- /dev/null +++ b/x11-clocks/gtubeclock/distinfo @@ -0,0 +1,3 @@ +MD5 (gtubeclock-0.9.1.tar.gz) = 94dffc6431e29cc25ae68f4318c33e05 +SHA256 (gtubeclock-0.9.1.tar.gz) = 5235606b0c4e1e62c227eb27bce8be5006e6aa62c3d8f177d00ea45a933dbd79 +SIZE (gtubeclock-0.9.1.tar.gz) = 299019 diff --git a/x11-clocks/gtubeclock/pkg-descr b/x11-clocks/gtubeclock/pkg-descr new file mode 100644 index 000000000..7ebf1533e --- /dev/null +++ b/x11-clocks/gtubeclock/pkg-descr @@ -0,0 +1,3 @@ +A nixie tube clock for GNOME. + +WWW: http://www.bonnyswan.com/gtubeclock/ diff --git a/x11-clocks/gtubeclock/pkg-plist b/x11-clocks/gtubeclock/pkg-plist new file mode 100644 index 000000000..21c2f7cf4 --- /dev/null +++ b/x11-clocks/gtubeclock/pkg-plist @@ -0,0 +1,33 @@ +bin/gtubeclock +share/applications/gtubeclock.desktop +share/gtubeclock/gtubeclock.settings +share/gtubeclock/pixmaps/newclock/1-0.png +share/gtubeclock/pixmaps/newclock/1-1.png +share/gtubeclock/pixmaps/newclock/1-2.png +share/gtubeclock/pixmaps/newclock/1-3.png +share/gtubeclock/pixmaps/newclock/1-4.png +share/gtubeclock/pixmaps/newclock/1-5.png +share/gtubeclock/pixmaps/newclock/1-6.png +share/gtubeclock/pixmaps/newclock/1-7.png +share/gtubeclock/pixmaps/newclock/1-8.png +share/gtubeclock/pixmaps/newclock/1-9.png +share/gtubeclock/pixmaps/newclock/AM.png +share/gtubeclock/pixmaps/newclock/Background.png +share/gtubeclock/pixmaps/newclock/PM.png +share/gtubeclock/pixmaps/tubeclock/1-0.png +share/gtubeclock/pixmaps/tubeclock/1-1.png +share/gtubeclock/pixmaps/tubeclock/1-2.png +share/gtubeclock/pixmaps/tubeclock/1-3.png +share/gtubeclock/pixmaps/tubeclock/1-4.png +share/gtubeclock/pixmaps/tubeclock/1-5.png +share/gtubeclock/pixmaps/tubeclock/1-6.png +share/gtubeclock/pixmaps/tubeclock/1-7.png +share/gtubeclock/pixmaps/tubeclock/1-8.png +share/gtubeclock/pixmaps/tubeclock/1-9.png +share/gtubeclock/pixmaps/tubeclock/Background-scaled.png +share/gtubeclock/pixmaps/tubeclock/Background.png +share/gtubeclock/pixmaps/tubeclock/Reflection.png +@dirrm share/gtubeclock/pixmaps/tubeclock +@dirrm share/gtubeclock/pixmaps/newclock +@dirrm share/gtubeclock/pixmaps +@dirrm share/gtubeclock |