Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f442122b79 | ||
| 15fdaeb766 | |||
|
|
dc6381ecd8 |
6 changed files with 7 additions and 44 deletions
|
|
@ -1 +0,0 @@
|
||||||
tzclock-2.7.6.tar.bz2
|
|
||||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
tzclock-2.7.7.tar.bz2
|
||||||
21
Makefile
21
Makefile
|
|
@ -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 $$d/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)
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
94d10e9195629de12bad3d7a6cc65563 tzclock-2.7.6.tar.bz2
|
9973f99c0a1114468cb5eec08975fd92 tzclock-2.7.7.tar.bz2
|
||||||
|
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
--- tzclock-2.7.6/configure.ac.DSO 2009-09-24 16:24:18.000000000 +0900
|
|
||||||
+++ tzclock-2.7.6/configure.ac 2010-02-14 02:43:15.000000000 +0900
|
|
||||||
@@ -13,6 +13,7 @@
|
|
||||||
|
|
||||||
# Checks for libraries.
|
|
||||||
PKG_CHECK_MODULES(DEPS, libgnomeui-2.0 gtk+-2.0 >= 2.4.0)
|
|
||||||
+AC_CHECK_LIB(m, lrint, [DEPS_LIBS="$DEPS_LIBS -lm"])
|
|
||||||
|
|
||||||
AC_SUBST(DEPS_CFLAGS)
|
|
||||||
AC_SUBST(DEPS_LIBS)
|
|
||||||
16
tzclock.spec
16
tzclock.spec
|
|
@ -1,22 +1,17 @@
|
||||||
Name: tzclock
|
Name: tzclock
|
||||||
Version: 2.7.6
|
Version: 2.7.7
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: GTK+ graphical Clock displaying the time around the world
|
Summary: GTK+ graphical Clock displaying the time around the world
|
||||||
|
|
||||||
Group: Amusements/Graphics
|
Group: Amusements/Graphics
|
||||||
License: GPLv2
|
License: GPLv2
|
||||||
URL: http://www.tzclock.org/
|
URL: http://www.tzclock.org/
|
||||||
Source0: http://www.tzclock.org/releases/%{name}-%{version}.tar.bz2
|
Source0: http://www.tzclock.org/releases/%{name}-%{version}.tar.bz2
|
||||||
# Patch0 needs autotool
|
|
||||||
Patch0: tzclock-2.7.6-DSOlinkage.patch
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
BuildRequires: libgnomeui-devel
|
BuildRequires: libgnomeui-devel
|
||||||
BuildRequires: desktop-file-utils
|
BuildRequires: desktop-file-utils
|
||||||
|
|
||||||
# For Patch0
|
|
||||||
BuildRequires: automake
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
TzClock is an X Window GTK+ graphical Clock that can display
|
TzClock is an X Window GTK+ graphical Clock that can display
|
||||||
the time around the world. It supports multiple faces showing
|
the time around the world. It supports multiple faces showing
|
||||||
|
|
@ -26,10 +21,6 @@ plus there are many other nice features for you to discover.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1 -b .DSO
|
|
||||||
|
|
||||||
# For Patch0
|
|
||||||
autoreconf -fi
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure
|
%configure
|
||||||
|
|
@ -75,6 +66,9 @@ desktop-file-install \
|
||||||
%{_mandir}/man1/*
|
%{_mandir}/man1/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jun 3 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 2.7.7-1
|
||||||
|
- 2.7.7
|
||||||
|
|
||||||
* Sun Feb 14 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 2.7.6-2
|
* Sun Feb 14 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 2.7.6-2
|
||||||
- Fix F-13 DSO linkage issue
|
- Fix F-13 DSO linkage issue
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue