--- gtk-nodoka-engine-0.7.0.orig/src/GTKEngine/animation.c +++ gtk-nodoka-engine-0.7.0/src/GTKEngine/animation.c @@ -23,7 +23,7 @@ #include "animation.h" #ifdef HAVE_ANIMATION -#include +#include struct _AnimationInfo { --- gtk-nodoka-engine-0.7.0.orig/debian/rules +++ gtk-nodoka-engine-0.7.0/debian/rules @@ -0,0 +1,90 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + + +config.status: configure + dh_testdir +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LIBS="-lm" LDFLAGS="-Wl,-z,defs" --enable-animation + + +build: build-stamp + +build-stamp: config.status + dh_testdir + + $(MAKE) + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + [ -f Makefile ] && $(MAKE) distclean || true + rm -f config.sub config.guess + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) DESTDIR=$(CURDIR)/debian/gtk2-engines-nodoka install + + # There's not much point in installing the .la files + find $(CURDIR)/debian/gtk2-engines-nodoka/usr/lib -name *.la -delete + # ...and it's easier to strip the rPath here than fix their autotools + find $(CURDIR)/debian/gtk2-engines-nodoka/usr/lib -name *.so -type f \ + -execdir chrpath -d {} \; + + +# Build architecture-independent files here. +binary-indep: build install + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch + +# Makefile arcanery warning: +# $(dir $(_)) gives us the path containing this rules file. +# I haven't found this documented in any make documentation, so I am unsure +# how portable/version independent it is. +# This magic care of Emmet Hickory: +# (http://lists.debian.org/debian-devel-games/2008/02/msg00135.html) +get-orig-source: + uscan --download --package gtk-nodoka-engine --destdir=$(CURDIR) \ + --no-symlink --upstream-version 0 --watchfile=$(dir $(_))/watch + +.PHONY: build clean binary-indep binary-arch binary install get-orig-source --- gtk-nodoka-engine-0.7.0.orig/debian/control +++ gtk-nodoka-engine-0.7.0/debian/control @@ -0,0 +1,17 @@ +Source: gtk-nodoka-engine +Section: gnome +Priority: optional +Maintainer: Christopher James Halse Rogers +Build-Depends: debhelper (>= 5), autotools-dev, libgtk2.0-dev, chrpath +Standards-Version: 3.7.3 +Homepage: https://fedorahosted.org/nodoka/wiki + +Package: gtk2-engines-nodoka +Architecture: any +Depends: ${shlibs:Depends} +Description: Nodoka theme engine for GTK+ 2.x + The engine behind the new default theme for Fedora, Nodoka is inspired + by such themes engines as Clearlooks and Murrine. It features smooth, + subtle gradients and rounded widgets. + . + Also included are a variety of GTK+ themes using the Nodoka engine. --- gtk-nodoka-engine-0.7.0.orig/debian/changelog +++ gtk-nodoka-engine-0.7.0/debian/changelog @@ -0,0 +1,26 @@ +gtk-nodoka-engine (0.7.0-1.2) unstable; urgency=low + + * Non-maintainer upload. + * Fix "Including individual glib headers no longer supported": + apply patch from Michael Biebl: + only include + (Closes: #665549) + + -- gregor herrmann Fri, 21 Jun 2013 15:04:31 +0200 + +gtk-nodoka-engine (0.7.0-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix "FTBFS: nodoka_style.c:1279: undefined reference to `sqrt'": + add patch from Ubuntu / Micah Gersten: + - Add -lm to LIBS to fix FTBFS (LP: #858750) + + update debian/rules + (Closes: #640439) + + -- gregor herrmann Sat, 03 Dec 2011 21:59:02 +0100 + +gtk-nodoka-engine (0.7.0-1) unstable; urgency=low + + * Initial release (Closes: #443934), with consent of original filer. + + -- Christopher James Halse Rogers Sun, 04 May 2008 16:32:13 +1000 --- gtk-nodoka-engine-0.7.0.orig/debian/compat +++ gtk-nodoka-engine-0.7.0/debian/compat @@ -0,0 +1 @@ +5 --- gtk-nodoka-engine-0.7.0.orig/debian/copyright +++ gtk-nodoka-engine-0.7.0/debian/copyright @@ -0,0 +1,37 @@ +This package was debianized by Christopher James Halse Rogers on +Thu, 24 Jan 2008 17:19:13 +1100. + +It was downloaded from https://hosted.fedoraproject.org/nodoka/wiki + +Upstream Authors: + + Daniel Geiger + Martin Sourada + +Copyright: + + 2007,2008 Daniel Geiger + 2007,2008 Martin Sourada + + +License: + + 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 package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL-2'. + +The Debian packaging is (C) 2008, Christopher James Halse Rogers and +is licensed under the GPL, see above. --- gtk-nodoka-engine-0.7.0.orig/debian/docs +++ gtk-nodoka-engine-0.7.0/debian/docs @@ -0,0 +1,3 @@ +NEWS +README +TODO --- gtk-nodoka-engine-0.7.0.orig/debian/watch +++ gtk-nodoka-engine-0.7.0/debian/watch @@ -0,0 +1,4 @@ +version=3 + +https://hosted.fedoraproject.org/nodoka/wiki \ +https://fedorahosted.org/releases/n/o/nodoka/gtk-nodoka-engine-(.*).tar.gz