Compare commits

...
Sign in to create a new pull request.

10 commits

Author SHA1 Message Date
Fedora Release Engineering
050922912d dist-git conversion 2010-07-29 14:35:23 +00:00
Bill Nottingham
e7d3f87f75 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:34:14 +00:00
ba1d1bcff0 ruby-mechanize, ruby-aws, tzclock update 2008-09-24 15:36:58 +00:00
6a1bb22c7e - 2.7.1 2008-05-15 14:11:34 +00:00
aafdf21822 - "New" 2.6.1 (modified tarball with the same version) 2008-04-11 17:19:07 +00:00
eab0c8d2b6 orz 2008-04-10 17:33:03 +00:00
e30aa2b332 add a small patch 2008-04-10 17:29:08 +00:00
fed910527a - 2.6.1 2008-04-10 15:33:44 +00:00
a2e299f7b2 Initial import 2007-12-06 02:10:42 +00:00
f5434de7c6 Initialize branch F-8 for tzclock 2007-12-05 19:34:42 +00:00
5 changed files with 89 additions and 21 deletions

View file

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
tzclock-2.7.2.tar.gz

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: tzclock
# $Id$
NAME := tzclock
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

View file

@ -0,0 +1 @@
2b47c36a978373b401e61a8f23d78377 tzclock-2.7.2.tar.gz

87
tzclock.spec Normal file
View file

@ -0,0 +1,87 @@
Name: tzclock
Version: 2.7.2
Release: 1%{?dist}
Summary: GTK+ graphical Clock displaying the time around the world
Group: Amusements/Graphics
License: GPLv2
URL: http://www.tzclock.org/
Source0: http://www.tzclock.org/releases/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: libgnomeui-devel
BuildRequires: librsvg2-devel
BuildRequires: desktop-file-utils
%description
TzClock is an X Window GTK+ graphical Clock that can display
the time around the world. It supports multiple faces showing
different time zones.
There is a stopwatch funtion that is accurate to a tenth of a second,
plus there are many other nice features for you to discover.
%prep
%setup -q
%build
%configure
%{__make} %{?_smp_mflags}
%install
%{__rm} -rf $RPM_BUILD_ROOT
# Manual install
for dir in \
%{_bindir} \
%{_datadir}/{applications,pixmaps} \
%{_mandir}/man1
do
%{__mkdir_p} $RPM_BUILD_ROOT$dir
done
%{__install} -p -m 0755 TzClockCairo $RPM_BUILD_ROOT%{_bindir}/TzClock
%{__install} -p -m 0644 TzClock.svg $RPM_BUILD_ROOT%{_datadir}/pixmaps/
%{__install} -p -m 0644 TzClock.man $RPM_BUILD_ROOT%{_mandir}/man1/TzClock.1
desktop-file-install \
--dir $RPM_BUILD_ROOT%{_datadir}/applications \
--vendor fedora \
TzClock.desktop
# I like lower case!
%{__ln_s} -f TzClock $RPM_BUILD_ROOT%{_bindir}/%{name}
%{__ln_s} -f TzClock.1 $RPM_BUILD_ROOT%{_mandir}/man1/%{name}.1
%clean
%{__rm} -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc AUTHORS
%doc COPYING
%{_bindir}/*
%{_datadir}/pixmaps/*svg
%{_datadir}/applications/*desktop
%{_mandir}/man1/*
%changelog
* Thu Sep 25 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 2.7.2-1
- 2.7.2
* Thu May 15 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 2.7.1-1
- 2.7.1
* Sat Apr 12 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 2.6.1-3
- "New" 2.6.1 (modified tarball with the same version)
* Fri Apr 11 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 2.6.1-2
- 2.6.1
* Sat Feb 9 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp>
- Rebuild against gcc43 (F-9)
* Wed Dec 5 2007 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 2.5.5-1
- Initial packaging