--- gtk-clearlooks-gperfection2-theme-1.1.orig/debian/changelog +++ gtk-clearlooks-gperfection2-theme-1.1/debian/changelog @@ -0,0 +1,17 @@ +gtk-clearlooks-gperfection2-theme (1.1-0ubuntu2) gutsy; urgency=low + + * debian/control: Update maintainer fields according to debian- + maintainer-field spec. + + -- Martin Pitt Wed, 15 Aug 2007 08:04:57 +0000 + +gtk-clearlooks-gperfection2-theme (1.1-0ubuntu1) dapper; urgency=low + + [ Matt T Galvin ] + * Initial release + + [ Reinhard Tartler ] + * fixed depends + + -- Reinhard Tartler Sat, 12 Nov 2005 15:17:41 +0100 + --- gtk-clearlooks-gperfection2-theme-1.1.orig/debian/compat +++ gtk-clearlooks-gperfection2-theme-1.1/debian/compat @@ -0,0 +1 @@ +4 --- gtk-clearlooks-gperfection2-theme-1.1.orig/debian/dirs +++ gtk-clearlooks-gperfection2-theme-1.1/debian/dirs @@ -0,0 +1,5 @@ +usr +usr/share +usr/share/themes +usr/share/themes/Clearlooks-gperfection2 +usr/share/themes/Clearlooks-gperfection2/gtk-2.0 --- gtk-clearlooks-gperfection2-theme-1.1.orig/debian/copyright +++ gtk-clearlooks-gperfection2-theme-1.1/debian/copyright @@ -0,0 +1,28 @@ +This package was debianized by Matt T Galvin on +Sun, 18 Sep 2005 19:11:55 -0400. + +It was downloaded from http://www.gnome-look.org/content/show.php?content=22989 + +Copywrite (c) 2004, 2005 +Copyright Holders: Jakub Steiner , William Szilveszter + +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., 59 Temple Place - Suite 330, Boston, MA + 02111-1307, USA. + +On Ubuntu/Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + --- gtk-clearlooks-gperfection2-theme-1.1.orig/debian/control +++ gtk-clearlooks-gperfection2-theme-1.1/debian/control @@ -0,0 +1,16 @@ +Source: gtk-clearlooks-gperfection2-theme +Section: gnome +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Matt T Galvin +Build-Depends: debhelper (>= 4.0.0) +Depends: gtk2-engines-clearlooks +Standards-Version: 3.6.2 + +Package: gtk-clearlooks-gperfection2-theme +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: gtk theme for the clearlooks engine + gperfection gtk2 theme + . + Homepage: http://www.gnome-look.org/content/show.php?content=22989 --- gtk-clearlooks-gperfection2-theme-1.1.orig/debian/rules +++ gtk-clearlooks-gperfection2-theme-1.1/debian/rules @@ -0,0 +1,55 @@ +#!/usr/bin/make -f + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + touch configure-stamp + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + cp $(CURDIR)/gtk-2.0/gtkrc $(CURDIR)/debian/gtk-clearlooks-gperfection2-theme/usr/share/themes/Clearlooks-gperfection2/gtk-2.0/ + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure