diff options
author | minskim <minskim@pkgsrc.org> | 2005-10-28 02:46:19 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2005-10-28 02:46:19 +0000 |
commit | f0af49475a4ee3c92ce31ba2506eb6ec82cf85dd (patch) | |
tree | 09c86397cfe67156971ce6d6709ef2b16872a71d /x11/tzosdclock | |
parent | 5caa56ac965bf162f59af00fe3551cbcf2ad5575 (diff) | |
download | pkgsrc-f0af49475a4ee3c92ce31ba2506eb6ec82cf85dd.tar.gz |
Import tzosdclock from pkgsrc-wip. Packaged by Greg Schenzel.
This is an OSD desktop clock with support for multiple timezones
through the same mechanism as tzwatch (~/.tzlist). It can be run with
or without the config file in single or multiple timezone modes. See
`tzosdclock -h`.
Diffstat (limited to 'x11/tzosdclock')
-rw-r--r-- | x11/tzosdclock/DESCR | 4 | ||||
-rw-r--r-- | x11/tzosdclock/Makefile | 18 | ||||
-rw-r--r-- | x11/tzosdclock/PLIST | 3 | ||||
-rw-r--r-- | x11/tzosdclock/distinfo | 6 | ||||
-rw-r--r-- | x11/tzosdclock/patches/patch-aa | 13 |
5 files changed, 44 insertions, 0 deletions
diff --git a/x11/tzosdclock/DESCR b/x11/tzosdclock/DESCR new file mode 100644 index 00000000000..292ace76d60 --- /dev/null +++ b/x11/tzosdclock/DESCR @@ -0,0 +1,4 @@ +This is an OSD desktop clock with support for multiple timezones +through the same mechanism as tzwatch (~/.tzlist). It can be run with +or without the config file in single or multiple timezone modes. See +`tzosdclock -h`. diff --git a/x11/tzosdclock/Makefile b/x11/tzosdclock/Makefile new file mode 100644 index 00000000000..f2edbff4971 --- /dev/null +++ b/x11/tzosdclock/Makefile @@ -0,0 +1,18 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/10/28 02:46:19 minskim Exp $ +# + +DISTNAME= tzosdclock_1.0.2 +PKGNAME= tzosdclock-1.0.2 +CATEGORIES= x11 +MASTER_SITES= http://www.unixdev.net/downloads/tzosdclock/1.0.2/ + +MAINTAINER= inittab@unixdev.net +HOMEPAGE= http://www.unixdev.net/projects/tzosdclock +COMMENT= OnScreen Display Clock for Multiple Timezones + +WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} +GNU_CONFIGURE= yes + +.include "../../mk/x11.buildlink3.mk" +.include "../../x11/xosd/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/x11/tzosdclock/PLIST b/x11/tzosdclock/PLIST new file mode 100644 index 00000000000..fa4c20609c8 --- /dev/null +++ b/x11/tzosdclock/PLIST @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2005/10/28 02:46:19 minskim Exp $ +bin/tzosdclock +man/man1/tzosdclock.1 diff --git a/x11/tzosdclock/distinfo b/x11/tzosdclock/distinfo new file mode 100644 index 00000000000..a0349ead53c --- /dev/null +++ b/x11/tzosdclock/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1.1.1 2005/10/28 02:46:19 minskim Exp $ + +SHA1 (tzosdclock_1.0.2.tar.gz) = 9df6a54ad5a230a51c7680940b7699bd83d6897e +RMD160 (tzosdclock_1.0.2.tar.gz) = 19327151cf6606b8bc8747d64189fafe0f630d32 +Size (tzosdclock_1.0.2.tar.gz) = 181015 bytes +SHA1 (patch-aa) = 427685ce8bc6c70ab26f12b1f77c617711fa5934 diff --git a/x11/tzosdclock/patches/patch-aa b/x11/tzosdclock/patches/patch-aa new file mode 100644 index 00000000000..eb803502049 --- /dev/null +++ b/x11/tzosdclock/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1.1.1 2005/10/28 02:46:19 minskim Exp $ + +--- Makefile.in.orig 2005-09-24 01:47:19.000000000 -0700 ++++ Makefile.in +@@ -15,7 +15,7 @@ HOSTVER = @HOSTREL@ + all: $(PROG) + + $(PROG): tzosdclock.c +- $(CC) $(OPTS) $(CFLAGS) $(LIBS) tzosdclock.c -o $(PROG) ++ $(CC) $(OPTS) $(CFLAGS) $(LDFLAGS) $(LIBS) tzosdclock.c -o $(PROG) + + clean: + -/bin/rm -rf $(PROG) |