debian/0000775000000000000000000000000012156506725007201 5ustar debian/rules0000775000000000000000000000003512156505626010256 0ustar #!/usr/bin/make -f %: dh $@ debian/changelog0000664000000000000000000000361112156506717011055 0ustar fdclock (0.1.0+git.20060122-0ubuntu3) saucy; urgency=low * debian/compat: Bump to 9. * debian/control: - Build-depend on debhelper (>= 9). - Don't build-depend on cdbs and dpatch. - Bump Standards-Version to 3.9.4. * debian/patches/fix-underlinkage.patch: Convert inline change to patch. * debian/rules: Convert to dh sequencer. * debian/source/format: Indicate 3.0 (quilt) format. -- Logan Rosen Thu, 13 Jun 2013 23:19:33 -0400 fdclock (0.1.0+git.20060122-0ubuntu2) raring; urgency=low * Added missing Xrender lib to link, fixing FTBFS. -- Daniel T Chen Sun, 07 Apr 2013 15:43:47 -0400 fdclock (0.1.0+git.20060122-0ubuntu1) hardy; urgency=low * New git snapshot * Bump Standards-Version, no further changes * Update package description to match new VCS url -- Laurent Bigonville Tue, 30 Oct 2007 20:19:46 +0100 fdclock (0.1.0+cvs.20050620-0ubuntu2) gutsy; urgency=low * debian/control: Update maintainer fields according to debian- maintainer-field spec. -- Martin Pitt Wed, 15 Aug 2007 08:04:16 +0000 fdclock (0.1.0+cvs.20050620-0ubuntu1) breezy; urgency=low * New CVS version * Works now with cairo >= 0.5.0 * Updated Standars-Version to 3.6.2 -- Sebastian Dröge Sun, 28 Aug 2005 20:20:46 +0200 fdclock (0.1.0+cvs.20041109-0ubuntu3) breezy; urgency=low * Rebuild with the new cairo version -- Sebastien Bacher Thu, 18 Aug 2005 17:15:29 +0000 fdclock (0.1.0+cvs.20041109-0ubuntu2) hoary; urgency=low * add dpatch system * added some missing includes to fdclock.c to fix ftbfs -- Reinhard Tartler Wed, 23 Mar 2005 21:59:35 +0100 fdclock (0.1.0+cvs.20041109-0ubuntu1) hoary; urgency=low * First fdclock release. -- Daniel Stone Tue, 9 Nov 2004 21:04:32 +0100 debian/compat0000664000000000000000000000000212156505636010377 0ustar 9 debian/copyright0000664000000000000000000000232212156505600011122 0ustar fdclock is authored by Keith Packard, and is licenced under the MIT/X11 licence: * Copyright © 2003 Keith Packard * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that * the above copyright notice appear in all copies and that both that * copyright notice and this permission notice appear in supporting * documentation, and that the name of Keith Packard not be used in * advertising or publicity pertaining to distribution of the software without * specific, written prior permission. Keith Packard makes no * representations about the suitability of this software for any purpose. It * is provided "as is" without express or implied warranty. * * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR * PERFORMANCE OF THIS SOFTWARE. debian/source/0000775000000000000000000000000012156506725010501 5ustar debian/source/format0000664000000000000000000000001412156505732011704 0ustar 3.0 (quilt) debian/control0000664000000000000000000000173012156506553010604 0ustar Source: fdclock Section: x11 Priority: optional Maintainer: Ubuntu MOTU Developers XSBC-Original-Maintainer: Daniel Stone Uploaders: Daniel Stone Build-Depends: debhelper (>= 9), libcairo-dev, libpng12-dev Standards-Version: 3.9.4 Homepage: https://launchpad.net/fdclock Package: fdclock Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: freedesktop.org clock fdclock is a clock to show off many of Cairo's features: it features scalable widgets (including a scalable freedesktop.org logo as the background), and transparency. When used with an X server that supports the Composite extension, you will be able to see proper transparency for the clock, and note how the hands/dots/etc cast darker individual shadows than the rest. . This package comes from the freedesktop.org git module: git://anongit.freedesktop.org/git/xorg/app/fdclock The module name is fdclock. debian/patches/0000775000000000000000000000000012156506725010630 5ustar debian/patches/series0000664000000000000000000000002712156505773012046 0ustar fix-underlinkage.patch debian/patches/fix-underlinkage.patch0000664000000000000000000000135112156506107015077 0ustar Description: fix underlinkage Author: Logan Rosen Forwarded: no Last-Update: 2013-06-13 --- fdclock-0.1.0+git.20060122.orig/Makefile.in +++ fdclock-0.1.0+git.20060122/Makefile.in @@ -178,7 +178,7 @@ fdfacepng_SOURCES = \ fdfacepng.c \ $(COMMON_SRCS) -fdclock_LDADD = @FDCLOCK_LIBS@ +fdclock_LDADD = @FDCLOCK_LIBS@ -lXrender -lX11 fdfacepng_LDADD = @FDCLOCK_LIBS@ @PNG_LIBS@ all: config.h $(MAKE) $(AM_MAKEFLAGS) all-am --- fdclock-0.1.0+git.20060122.orig/Makefile.am +++ fdclock-0.1.0+git.20060122/Makefile.am @@ -12,6 +12,6 @@ fdfacepng_SOURCES = \ bin_PROGRAMS = fdclock fdfacepng -fdclock_LDADD = @FDCLOCK_LIBS@ +fdclock_LDADD = @FDCLOCK_LIBS@ -lXrender -lX11 fdfacepng_LDADD = @FDCLOCK_LIBS@ @PNG_LIBS@