debian/0000755000000000000000000000000011570213737007174 5ustar debian/control0000644000000000000000000000163111570210675010576 0ustar Source: gtk2-engines-magicchicken Section: graphics Priority: optional Build-Depends: debhelper (>= 7), libgtk2.0-dev (>= 2.10.1), autotools-dev, automake, autoconf, libtool Maintainer: Debian QA Group Standards-Version: 3.9.2 Package: gtk2-engines-magicchicken Replaces: gtk-engines-mgicchikn Conflicts: gtk-engines-mgicchikn Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: Magic Chicken themes for GTK+ 2.x This package contains themes which allow you to configure the look of programs using GTK+ 2.x. The programs need no modification to use themes; the support is built-in to GTK+ 2.x. . Magic Chicken is a theme which borrows much in terms of looks from the default Gtk+ 2.x theme, as well as from ThinIce and other funky themes. . The provided themes are: MagicChicken, CortlandChicken and OkayishChicken. . Author: James Cape debian/source/0000755000000000000000000000000011441162545010471 5ustar debian/source/format0000644000000000000000000000001411441162545011677 0ustar 3.0 (quilt) debian/clean0000644000000000000000000000031511441245545010177 0ustar Makefile.in aclocal.m4 config.guess config.h.in config.sub configure depcomp install-sh ltmain.sh missing mkinstalldirs src/Makefile.in themes/*/Makefile.in themes/*/gtk-2.0/Makefile.in themes/Makefile.in debian/README.Debian0000644000000000000000000000031611441161312011221 0ustar Either use the Gnome Control Center to select the theme or put the following into your ~/.gtkrc-2.0 : gtk-theme-name = "" is one of "CortlandChicken", "MagicChicken" or "OkayishChicken". debian/rules0000755000000000000000000000307311570212175010252 0ustar #!/usr/bin/make -f # dir where to install the deb-package INSTALLDIR = $(CURDIR)/debian/gtk2-engines-magicchicken # 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) ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS = "-Wall -g -O0" else CFLAGS = "-Wall -g -O2" endif build/config.status: dh_testdir cp -f /usr/share/misc/config.sub . cp -f /usr/share/misc/config.guess . cp COPYING COPYING~ autoreconf -ivf mv -f COPYING~ COPYING mkdir -p build/ cd build && CFLAGS=$(CFLAGS) \ ../configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \ --prefix=/usr --mandir=\$${prefix}/share/man \ build: build/stamp build/stamp: build/config.status dh_testdir $(MAKE) -C build/ touch $(@) clean: dh_testdir dh_testroot dh_clean $(RM) INSTALL rm -Rf autom4te.cache/ rm -Rf build/ install: build dh_testdir dh_testroot dh_prep $(MAKE) -C build/ install prefix=$(INSTALLDIR)/usr find $(INSTALLDIR) -name '*.so' | grep . > /dev/null find $(INSTALLDIR) -name '*.la' -delete binary-indep: build install binary-arch: build install dh_testdir dh_testroot dh_installdocs dh_installchangelogs ChangeLog dh_link dh_strip dh_compress dh_fixperms dh_makeshlibs dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install debian/patches/0000755000000000000000000000000011570210030010602 5ustar debian/patches/memory-leak.diff0000644000000000000000000000044111441220615013664 0ustar Description: Fix a memory leak. Author: Paul Brossier Bug-Debian: http://bugs.debian.org/302030 --- a/src/draw.c +++ b/src/draw.c @@ -586,6 +586,7 @@ stock_image_brightness[state]); } g_object_unref (scaled); + g_object_unref (tmp); } else { debian/patches/series0000644000000000000000000000002111570210030012010 0ustar memory-leak.diff debian/gtk-engines-mgicchikn.dirs0000644000000000000000000000005407547130604014223 0ustar usr/lib/gtk/themes/engines usr/share/themes debian/changelog0000644000000000000000000001636511570212212011044 0ustar gtk2-engines-magicchicken (1.1.1-9) unstable; urgency=low * QA upload. * Move away from automake1.7 to avoid missing _LT_DECL_SED macro. (Closes: #628329) * Drop deprecated dh_gtkmodules -- Neil Williams Sat, 28 May 2011 16:28:10 +0100 gtk2-engines-magicchicken (1.1.1-8) unstable; urgency=low * QA upload (closes: #543739). * Set Maintainer to Debian QA Group . * Switch to source format 3.0 (quilt). * Run autoreconf at build time (closes: #493148) to fix missing files on kfreebsd-*. Thanks to Petr Salinger for the bug report. + Build-depend on automake1.7, autoconf, libtool. + Remove autom4te.cache in the clean target. + Build out-of-tree to ease cleaning. + Check if a shared library was created to avoid similar breakages in the future. * Don't make backup copies of config.{guess,sub}, just remove them in the clean target. * Remove *.la files from the binary package. * Upstream appears to be dead: + Drop the homepage field (closes: #305264). Thanks to Alex Stewart for the bug report. + Drop watch file (closes: #450365). Thanks to Raphael Geissert for the bug report. * Bump standards version to 3.9.1 (no changes needed). * Remove commented out commands from debian/rules. * Bump debhelper compat level to 7. + Use dh_prep istead of dh_clean -k. * Run dh_clean in the clean target. * Remove config.status in the clean target. * Don't declare build-dependency on a version of a package with a -1 Debian revision. * Add copyright notice to debian/copyright. * Don't refer to versionless symlink to the GPL license in debian/copyright. * Drop debian/dirs and dh_installdirs calls from debian/rules. -- Jakub Wilk Tue, 07 Sep 2010 13:55:49 +0200 gtk2-engines-magicchicken (1.1.1-7.1) unstable; urgency=low * Non-maintainer upload. * Gtk 2.10 transition; closes: #419299. - Build-depend on libgtk2.0-dev >= 2.10.1-1. - Call dh_gtkmodules. - Add ${misc:Depends}. -- Loic Minier Fri, 27 Apr 2007 22:02:24 +0200 gtk2-engines-magicchicken (1.1.1-7) unstable; urgency=low * Memory lack bug solution (closes: #302030) -- Jorge Octavio Ocharan Hernandez Fri, 8 Apr 2005 20:11:10 -0600 gtk2-engines-magicchicken (1.1.1-6) unstable; urgency=low * Maintainer changed (closes: #297852) -- Jorge Octavio Ocharan Hernandez Sat, 26 Mar 2005 23:37:42 -0600 gtk2-engines-magicchicken (1.1.1-5) unstable; urgency=low * debian/control: - New Maintainer address. * debian/rules: - Remove bashism when copying config.{sub,guess}. * Also closes: #250207 opened by the intent to NMU and not yet closed in the BTS. -- Sebastian Henschel Sat, 7 Aug 2004 12:56:13 +0200 gtk2-engines-magicchicken (1.1.1-4.1) unstable; urgency=medium * NMU with maintainer approval. * Rebuilt with GTK+2.4 (Closes: #250207). -- Sebastien Bacher Sat, 5 Jun 2004 16:24:13 +0200 gtk2-engines-magicchicken (1.1.1-4) unstable; urgency=low * Sponsor and bug reporter had been to fast, previous upload closes: #193312. * debian/rules: - Fixed some time stamp creation problem, closes: #213860. * debian/control: - Bumped Standards-Version to 3.6.1.0. -- Sebastian Henschel Mon, 10 Nov 2003 17:53:00 +0100 gtk2-engines-magicchicken (1.1.1-3) unstable; urgency=low * Fixed an autotools problem which prevented building on all archs. Now all Makefile.in and config.h.in files are touched before invocation of configure. *sigh* -- Sebastian Henschel Wed, 14 May 2003 13:20:26 +0200 gtk2-engines-magicchicken (1.1.1-2) unstable; urgency=low * debian/control: - Added homepage to description. - Changed debhelper dependency to 4. - Bumped Standards-Version to 3.5.9. * debian/rules: - Fixed policy violation in transition to Standards-Version 3.5.7: default compilation options have changed. * debian/compat: - Created this file and set to its contents to 4. * debian/README.Debian: - Created this file and granted a wish, thus closes: #192203. -- Sebastian Henschel Wed, 14 May 2003 10:23:08 +0200 gtk2-engines-magicchicken (1.1.1-1) unstable; urgency=low * New upstream release (hopefully closes: #176568). * debian/control - Tweaked the description. -- Sebastian Henschel Tue, 21 Jan 2003 19:15:41 +0100 gtk2-engines-magicchicken (1.1.0-1) unstable; urgency=low * New upstream release. * debian/control - Bumped Build-depends: to depend on gtk2.2 (necessary). - Updated the description (author, name of each contained theme). - Added a version (>= 3.0) for debhelper in Build-depends: in order to correspond to DH_COMPAT in debian/rules. * debian/watch - Updated regex to match new name of tarball at the download source. * Rebuilt with gtk2.2. -- Sebastian Henschel Fri, 10 Jan 2003 19:12:07 +0100 gtk2-engines-magicchicken (1.0.3-1) unstable; urgency=low * New upstream release (closes: #172216). * Learned that it is _important_ to "lintian" the .changes file and _not_ .deb. Thus made the following changes: * Removed the empty postinst and modified my local debhelper-autoscript. * Delete debian/files when executing target clean in debian/rules. * Removed libgtk2.0-0 from Depends: header, because it seems obsolete now (it is now inserted automatically by ${shlibs:Depends}. * Upgraded to 3.5.8 in Standards-Version. -- Sebastian Henschel Fri, 20 Dec 2002 10:05:22 +0100 gtk2-engines-magicchicken (1.0.2-1) unstable; urgency=low * New upstream release. * Maintainer changed (closes: #162412). * Renamed package to gtk2-engines-magicchicken (closes: #157386). * Converted debian/rules to a dh_make generated version. * Upgraded Standards-Version: to 3.5.7. * Added libgtk2.0-0 to Depends: header. * Added autotools-dev to Build-Depends: header. * Added an empty postinst to prevent dh_installdocs from deprecated linking from /usr/doc to /usr/share/doc. * Added debian/watch. * Added debian/docs. -- Sebastian Henschel Sun, 24 Nov 2002 18:15:23 +0100 gtk-engines-mgicchikn (1.0.0-4) unstable; urgency=low * Put some more details in the description (Closes: #155590) -- Bastien Nocera Sun, 18 Aug 2002 20:04:44 +0100 gtk-engines-mgicchikn (1.0.0-3.1) unstable; urgency=low * Non-maintainer upload. * Rebuild against libgtk2.0-0png3. * Change build-dep to libgtk2.0-dev (>= 2.0.6). * Use ${shlibs:Depends} for Depends: field. -- Robert McQueen Mon, 12 Aug 2002 11:23:53 +0100 gtk-engines-mgicchikn (1.0.0-3) unstable; urgency=low * Fix the progress bar widgets -- Bastien Nocera Tue, 9 Jul 2002 22:12:05 +0100 gtk-engines-mgicchikn (1.0.0-2) unstable; urgency=low * disable icon saturation, it causes weird memory corruption * fixed copyright -- Bastien Nocera Tue, 9 Jul 2002 04:32:50 +0100 gtk-engines-mgicchikn (1.0.0-1) unstable; urgency=low * Initial release -- Bastien Nocera Tue, 09 Jun 2002 02:19:25 +0100 debian/compat0000644000000000000000000000000211441221137010360 0ustar 7 debian/docs0000644000000000000000000000001711441161312010031 0ustar AUTHORS README debian/copyright0000644000000000000000000000132111441231442011112 0ustar This package was debianized by Bastien Nocera on Tue, 09 Jun 2002 02:19:25 +0100 New Mantainer is Jorge Octavio Ocharan Hernandez Sat, 26 Mar 2005 It was downloaded from http://esco.mine.nu/downloads/ Upstream Author: James M. Cape Copyright © 2001 James M. Cape This program 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, or (at your option) any later version. On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in ‘/usr/share/common-licenses/GPL-2’.