debian/ 0000755 0000000 0000000 00000000000 11736612500 007167 5 ustar debian/menu 0000644 0000000 0000000 00000000210 11721456642 010056 0 ustar ?package(wmitime):needs="X11" section="Applications/Network/Communication"\
title="wmITime" command="/usr/bin/wmitime" hints="Clocks"
debian/wmitime.1.pod 0000644 0000000 0000000 00000002053 11721456642 011514 0 ustar # This is manual page in Perl POD format. Read more at
# http://perldoc.perl.org/perlpod.html or run command:
#
# perldoc perlpod | less
#
# To check the syntax:
#
# podchecker *.pod
#
# Create manual page with command:
#
# pod2man PAGE.N.pod > PAGE.N
=pod
=head1 NAME
wmitime - Window Maker dock app displaying date, clock and internet time
=head1 SYNOPSIS
wmitime [options]
=head1 DESCRIPTION
WMitime is yet another clock dock app, which shows standard time,
date, as well as the new internet time .
=head1 OPTIONS
=over 4
=item B<-12>
12-hour mode
=item B<-display >
Specify X display
=item B< -geometry +XPOS+YPOS>
Initial window position.
=item B<-h>
Print available options.
=item B<-v>
Print the version number.
=back
=head1 ENVIRONMENT
None.
=head1 FILES
None.
=head1 SEE ALSO
C
=head1 AUTHORS
This manual page was written by Lenart Janos , for
the Debian GNU system (but may be used by others). Updated by Jari
Aalto .
=cut
debian/patches/ 0000755 0000000 0000000 00000000000 11721456642 010625 5 ustar debian/patches/10-hungarian-date.patch 0000755 0000000 0000000 00000002220 11721456642 014752 0 ustar From: Jari Aalto
Subject: Add hungarian support
Index: wmitime/wmitime/hungarian.h
===================================================================
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
+++ wmitime/wmitime/hungarian.h 2007-03-26 12:16:58.000000000 +0300
@@ -0,0 +1,28 @@
+/* hungarian.h */
+
+static char daynames[7][3] =
+{
+ {"Va"},
+ {"He"},
+ {"Ke"},
+ {"Sz"},
+ {"Cs"},
+ {"Pe"},
+ {"Sz"}
+};
+
+static char monthnames[12][4] =
+{
+ {"Jan"},
+ {"Feb"},
+ {"Mar"},
+ {"Apr"},
+ {"Maj"},
+ {"Jun"},
+ {"Jul"},
+ {"Aug"},
+ {"Sze"},
+ {"Okt"},
+ {"Nov"},
+ {"Dec"}
+};
Index: wmitime/wmitime/wmitime.c
===================================================================
--- wmitime.orig/wmitime/wmitime.c 2007-03-26 12:17:28.000000000 +0300
+++ wmitime/wmitime/wmitime.c 2007-03-26 12:17:56.000000000 +0300
@@ -35,11 +35,19 @@
#define fr
#endif
+#ifdef hu_HU
+#define hu
+#endif
+
#ifdef fr
#include "french.h"
#else
+#ifdef hu
+#include "hungarian.h"
+#else
#include "language.h"
#endif
+#endif
#include "wmitime-master.xpm"
char wmitime_mask_bits[64*64];
debian/patches/20-makefile-CC.patch 0000644 0000000 0000000 00000001267 11721456642 014133 0 ustar From: Jari Aalto
Subject: Use CC variable
wmitime/Makefile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
--- a/wmitime/Makefile
+++ b/wmitime/Makefile
@@ -2,17 +2,17 @@
LIBDIR = -L/usr/X11R6/lib
LIBS = -lXpm -lXext -lX11 -lm
FLAGS = -O2
+CC = gcc
OBJS = wmitime.o \
../wmgeneral/wmgeneral.o \
../wmgeneral/misc.o \
../wmgeneral/list.o
-
.c.o:
- cc -I/usr/X11R6/share/include $(FLAGS) -D$(LANG) -c -Wall $< -o $*.o
+ $(CC) -I/usr/X11R6/share/include $(FLAGS) -c -Wall $< -o $*.o
wmtime: $(OBJS)
- cc $(FLAGS) -D$(LANG) -o wmitime $^ -lXext $(LIBDIR) $(LIBS)
+ $(CC) $(FLAGS) -o wmitime $^ -lXext $(LIBDIR) $(LIBS)
all:: wmtime
debian/patches/series 0000644 0000000 0000000 00000000055 11721456642 012042 0 ustar 10-hungarian-date.patch
20-makefile-CC.patch
debian/compat 0000644 0000000 0000000 00000000002 11733265566 010402 0 ustar 9
debian/control 0000644 0000000 0000000 00000001334 11733265566 010610 0 ustar Source: wmitime
Section: x11
Priority: optional
Maintainer: Jari Aalto
Build-Depends: debhelper (>= 9), libx11-dev, libxext-dev, libxpm-dev
Vcs-Git: http://git.debian.org/collab-maint/wmitime.git
Standards-Version: 3.9.3.1
Vcs-Browser: http://git.debian.org/?p=collab-maint/wmitime.git;a=summary
Homepage: http://www.freshports.org/x11-clocks/wmitime
Package: wmitime
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Suggests: wmaker
Description: clock dock app showing time and internet time
WMitime is clock dock app, which shows standard time,
date. The unique feature is that it can also show Internet time
with notation @TIME. See for more about
Internet time.
debian/wmitime.desktop 0000644 0000000 0000000 00000000210 11721456642 012235 0 ustar [Desktop Entry]
Type=Application
Name=Wmitime
GenericName=
Comment=
Icon=
Exec=/usr/bin/wmitime
Terminal=false
Categories=Utility;Clock
debian/install 0000644 0000000 0000000 00000000101 11732315464 010555 0 ustar wmitime/wmitime /usr/bin
debian/*.desktop usr/share/applications
debian/changelog 0000644 0000000 0000000 00000014574 11733265702 011061 0 ustar wmitime (0.3-11) unstable; urgency=low
* debian/rules
- Use DEB_*_MAINT_* variables and use CPPFLAGS (more hardening).
-- Jari Aalto Sat, 24 Mar 2012 02:37:54 -0400
wmitime (0.3-10) unstable; urgency=low
* Move to packaging format 3.0 quilt.
* debian/compat
- Update to 9
* debian/control
- (Homepage): Update location.
- (Build-Depends): update to debhelper 9, Remove dpatch.
- (Standards-Version): Update to 3.9.3.1.
* debian/copyright
- Update to format 1.0.
* debian-vars.mk
- Delete. No longer needed.
* debian/*.1
- Delete, Was a generated file.
* debian/*.1x.pod
- Rename to plain *.1 section.
* debian/clean
- New file.
* debian/*.desktop
- Rename to plain debian/desktop.
* debian/manpages
- New file.
* debian/rules
- Clean up and remove unused targets.
- Use hardened build flags.
http://wiki.debian.org/ReleaseGoals/SecurityHardeningBuildFlags
-- Jari Aalto Wed, 21 Mar 2012 05:17:51 -0400
wmitime (0.3-9) unstable; urgency=low
* Move to format: 3.0 (quilt).
* debian/clean
- Move content from debian/rules for dh(1).
* debian/control
- (Build-Depends): Remove dpatch.
- (Description): Extend long part (lintian).
- (Depends): add ${misc:Depends} for debhelper.
- (Standards-Version): Update to 3.8.3.
* debian/copyright
- Layout upgrade. Add FSF preamble.
* debian/debian-compile.mk
- New file.
* debian/patches
- Convert to quilt.
- (10): Adjust link flags and add trimmed down GTKLIBS.
- (30): New patch to fix "cast to pointer from integer of
different size" warnings.
* debian/README.source
- Delete, obsoleted by format 3.0.
* debian/rules
- (MANSECT): Move from 1x to standard 1.
- Remove rules obsoleted by dh(1).
* debian/wmitime.{install,manpages}
- Move content from debian/rules for dh(1).
-- Jari Aalto Thu, 17 Dec 2009 14:51:50 +0200
wmitime (0.3-8) unstable; urgency=low
* debian/compat:
- Change from 5 to 7.x
* debian/control:
- (Build-Depends): debhelper >= 7.
- (Description): Fix spelling.
- (Homepage): New field.
- (Standards-Version): Update to 3.8.0.
* debian/copyright:
- Update to use ISO dates.
- Minor layout fixes: add word "Copyright (C)..." etc.
- Adjust Dave Clark's copyright years according to original README.
* debian/patches/10_hungarian-date.dpatch:
- (DP): Add documentation string.
* debian/rules:
- (build-stamp): Add MAKE_FLAGS.
- (binary-arch): Add dh_desktop.
- (install): Install *.desktop file. Do not install almost empty
BUGS file. Do not install README, which has nothing additional
information to manual page.
* debian/watch:
- New file.
* debian/wmitime.dektop:
- New file.
-- Jari Aalto Mon, 27 Oct 2008 19:28:15 +0300
wmitime (0.3-7) unstable; urgency=low
[ Jari Aalto ]
* New maintainer. (Closes: #349245).
* debian/changelog:
- Remove obsolete Emacs variables from the end.
* debian/compat:
- Bump version to 5
* debian/control:
- (Description): Remove references to Window maker. Utility works
with any WM.
- (Standards-Version): Update to 3.7.3
- (Build-Depends): Add dpatch
* debian/copyright:
- Add note that upstrean URL is dead.
- Update Debian packaging copyrights to include all packagers.
* debian/menu:
- Correct section to Applications/Network/Communication
* debian/patches/10_hungarian-date.dpatch:
- Remove old hungarian diff and converted it into dpatch format
* debian/patches/20_makefile-CC.dpatch:
- Change hard coded 'cc' to $(CC). Eliminate unnecessary -D$(LANG).
* debian/rules:
- Remove and newly generated with dh_make.
- Add rule to convert *.pod pages to *.1x
* debian/wmitime.1x.pod:
- New file. The old manual page was converted to POD format.
[ Ricardo Mones ]
* debian/control, debian/debian-vars.mk
- Fix typos
* debian/copyright
- Fix packaging copyright years, LGPL license filename, typo
* debian/rules
- (man): Fix rule by changing spaces into tabs
-- Jari Aalto Mon, 04 Feb 2008 17:18:39 +0000
wmitime (0.3-6) unstable; urgency=low
* QA upload.
* Maintainer asked to orphan the package in
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=347120;msg=7.
* debian/control: Replace xlibs-dev build-dep. (Closes: #347120)
* Rebuilt to allow prelinking. (Closes: #236804)
* Housekeeping:
+ Use debhelper 5
+ Quote everything in menu file
+ Move manpage to 1x section
+ Fix copyright file to shut up lintian
+ Bumped Standards-Version to 3.6.2
-- Marc 'HE' Brockschmidt Fri, 20 Jan 2006 00:21:39 +0100
wmitime (0.3-5) unstable; urgency=low
* Upgraded Standards-Version.
* Converted to use debhelper v3.
* Changed version numbering.
-- Lenart Janos Sat, 31 Mar 2001 18:48:31 +0200
wmitime (0.3-4.2) unstable; urgency=low
* I've wrote a manpage.
* Removed dh_testversion from debian/rules.
-- Lenart Janos Wed, 28 Mar 2001 22:57:18 +0200
wmitime (0.3-4.1) unstable; urgency=medium
* Moved from /usr/X11R6/bin to /usr/bin.
-- Lenart Janos Sat, 24 Feb 2001 17:31:21 +0100
wmitime (0.3-4) unstable; urgency=low
* New maintainter. (closes: Bug#74647)
* Smaller bugs fixed in debian/rules.
* Added Hungarian support, but must recompile to use it.
-- Lenart Janos Thu, 25 Jan 2001 14:24:30 +0100
wmitime (0.3-3) unstable; urgency=low
* Removed dh_make examples. (closes: Bug#81534)
* Conforms to Standards version 3.2.1:
+ debian/control: Added build dependancies.
+ debian/rules:
+ Added support for the `debug' build option.
+ Install into /usr rather than /usr/X11R6.
-- Matej Vela Wed, 10 Jan 2001 23:37:42 +0100
wmitime (0.3-2.1) unstable; urgency=low
* Maintainer: Debian QA Group
-- Takuo KITAME Thu, 31 Aug 2000 11:38:53 +0900
wmitime (0.3-2) unstable; urgency=low
* debian/menu: Added hints="Clocks". (closes: Bug#52006)
-- Takuo KITAME Thu, 13 Jan 2000 10:17:50 +0900
wmitime (0.3-1) unstable; urgency=low
* Initial Release.
-- Takuo KITAME Sun, 31 Oct 1999 06:15:04 +0900
debian/watch 0000644 0000000 0000000 00000000110 11721456642 010217 0 ustar version=3
http://dockapps.org/file.php/id/22 .*wmitime-([\d.]+).tar.gz
debian/rules 0000755 0000000 0000000 00000000721 11733265565 010263 0 ustar #!/usr/bin/make -f
PACKAGE = wmitime
MAKE_FLAGS = -C wmitime
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
man:
$(MAKE) -C debian -f pod2man.mk PACKAGE=$(PACKAGE) makeman
override_dh_auto_build: man
$(MAKE) $(MAKE_FLAGS) FLAGS="$(CFLAGS) $(CPPFLAGS) $(LDFLAGS)"
override_dh_auto_clean:
$(MAKE) $(MAKE_FLAGS) clean
%:
dh $@
.PHONY: man
# End of file
debian/copyright 0000644 0000000 0000000 00000003016 11726406443 011130 0 ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0
Upstream-Name: wmitime
Upstream-Contact: None
Source: None
X-Comment:
Dead upstream.
2006-02-14 sources no longer at .
Files: *
Copyright:
1997-1998 Dave Clark
X-Comment:
/*
wmitime.c -- internet time clock
by Dave Clark (clarkd@skynet.ca) (http://www.neotokyo.org/illusion)
This software is licensed through the GNU General Public Lisence.
*/
License: GPL-2+
Files: debian/*
Copyright:
2006-2012 Jari Aalto
2006 Marc 'HE' Brockschmidt
2001 Lenart Janos
2001 Matej Vela
1999-2000 Takuo KITAME
License: GPL-2+
License: GPL-2+
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
.
On Debian systems, the complete text of the GNU General
Public License can be found in "/usr/share/common-licenses/GPL-2".
debian/source/ 0000755 0000000 0000000 00000000000 11721456642 010476 5 ustar debian/source/format 0000644 0000000 0000000 00000000014 11721456642 011704 0 ustar 3.0 (quilt)
debian/pod2man.mk 0000644 0000000 0000000 00000003453 11721457306 011072 0 ustar # pod2man.mk -- Makefile portion to convert *.pod files to manual pages
#
# Copyright information
#
# Copyright (C) 2008-2010 Jari Aalto
#
# License
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
#
# Description
#
# Convert *.pod files to manual pages. Add this to Makefile:
#
# PACKAGE = package
#
# man:
# make -f pod2man.mk PACKAGE=$(PACKAGE) makeman
#
# build: man
ifneq (,)
This makefile requires GNU Make.
endif
# This variable *must* be set when called
PACKAGE ?= package
# Optional variables to set
MANSECT ?= 1
PODCENTER ?= User Commands
PODDATE ?= $$(date "+%Y-%m-%d")
# Directories
MANSRC ?=
MANDEST ?= $(MANSRC)
MANPOD ?= $(MANSRC)$(PACKAGE).$(MANSECT).pod
MANPAGE ?= $(MANDEST)$(PACKAGE).$(MANSECT)
POD2MAN ?= pod2man
POD2MAN_FLAGS ?= --utf8
makeman: $(MANPAGE)
$(MANPAGE): $(MANPOD)
# make target - create manual page from a *.pod page
podchecker $(MANPOD)
LC_ALL= LANG=C $(POD2MAN) $(POD2MAN_FLAGS) \
--center="$(PODCENTER)" \
--date="$(PODDATE)" \
--name="$(PACKAGE)" \
--section="$(MANSECT)" \
$(MANPOD) \
| sed 's,[Pp]erl v[0-9.]\+,$(PACKAGE),' \
> $(MANPAGE) && \
rm -f pod*.tmp
# End of of Makefile part
debian/clean 0000644 0000000 0000000 00000000013 11721460045 010165 0 ustar debian/*.1
debian/manpages 0000644 0000000 0000000 00000000013 11721460245 010700 0 ustar debian/*.1