--- gtk2-engines-qtcurve-0.55.2.orig/debian/copyright +++ gtk2-engines-qtcurve-0.55.2/debian/copyright @@ -0,0 +1,58 @@ +This package was debianized by Bastian Venthur on +Fri, 25 May 2007 12:52:24 +0200. + +It was downloaded from + +Upstream Author: + + Craig Drummond + +Copyright: + + Copyright (C) 2007 Craig Drummond + +License: + + 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 of the License, or + (at your option) any later version. + + This program 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 program; if not, write to the + Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, + MA 02110-1301, USA. + + +The files: + + gtk2/qtcurve.h + gtk2/qtcurve.c + acinclude.m4 + +are licensed under the LGPL: + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU General Public + License along with this program; if not, write to the + Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, + MA 02110-1301, USA. + + + +The Debian packaging is (C) 2007, Bastian Venthur and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. --- gtk2-engines-qtcurve-0.55.2.orig/debian/compat +++ gtk2-engines-qtcurve-0.55.2/debian/compat @@ -0,0 +1 @@ +5 --- gtk2-engines-qtcurve-0.55.2.orig/debian/control +++ gtk2-engines-qtcurve-0.55.2/debian/control @@ -0,0 +1,18 @@ +Source: gtk2-engines-qtcurve +Section: gnome +Priority: optional +Maintainer: Bastian Venthur +Build-Depends: debhelper (>= 5), libgtk2.0-dev, cmake +Standards-Version: 3.7.2 + +Package: gtk2-engines-qtcurve +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Recommends: kde-style-qtcurve +Description: This is a set of widget styles for Gtk2 based apps + This package together with kde-style-qtcurve aim to provide a unified look + and feel on the desktop when using KDE and Gnome applications. + . + This package is most useful when installed together with + kde-style-qtcurve. + --- gtk2-engines-qtcurve-0.55.2.orig/debian/docs +++ gtk2-engines-qtcurve-0.55.2/debian/docs @@ -0,0 +1,2 @@ +README +TODO --- gtk2-engines-qtcurve-0.55.2.orig/debian/scan-version +++ gtk2-engines-qtcurve-0.55.2/debian/scan-version @@ -0,0 +1,41 @@ +#!/usr/bin/make -sf + +DL_LINK = http://www.kde-look.org/content/download.php?content=40492&id=3 +DL_LINK_REAL = $(shell LANG=C wget --spider "$(DL_LINK)" 2>&1 | grep "Location: " | sed "s/Location: //" | sed "s/ \[following\]//") +PACKAGE = $(shell dpkg-parsechangelog | egrep '^Source: ' | sed s/"Source: "//) +DEBIAN_VERSION = $(shell dpkg-parsechangelog | egrep '^Version: ' | sed s/"Version: "//) +UPSTREAM_VERSION = $(shell echo $(DEBIAN_VERSION) | sed s/-.*//) +FILE_NAME = $(shell echo "$(DL_LINK_REAL)" | sed s/\\//\\n/g | tail -n 1) +FILE_EXT = $(shell echo "$(DL_LINK_REAL)" | sed s/\\./\\n/g | tail -n 1) +NET_VERSION = $(shell echo "$(FILE_NAME)" | egrep -o "[0-9]+\.[0-9]+(\.[0-9]+)?") +ORIG_TAR_GZ = ../$(PACKAGE)_$(NET_VERSION).orig.tar.gz + +all: + echo "Usage: debian/scan-version {scan|download|get-orig-source}" + exit 1 + +scan: + dh_testdir + echo "URL: $(DL_LINK_REAL)" + echo "File: $(FILE_NAME)" + echo "Current version: $(UPSTREAM_VERSION)" + echo "Available version: $(NET_VERSION)" + echo + echo "If the available version is higher, type \"debian/scan-version download\" to download it." + +download: + dh_testdir + echo "Downloading $(DL_LINK_REAL)..." + wget $(DL_LINK_REAL) -O "../$(FILE_NAME)" 2> /dev/null + echo "Successfully downloaded to ../$(FILE_NAME)" + +get-orig-source: download + echo "Creating $(ORIG_TAR_GZ)..." + if [ "$(FILE_EXT)" = "gz" ]; then \ + cp "../$(FILE_NAME)" "$(ORIG_TAR_GZ)"; \ + else \ + bunzip2 -c "../$(FILE_NAME)" | gzip -9c > "$(ORIG_TAR_GZ)"; \ + fi + echo + +.PHONY: all parse-url scan download get-orig-source --- gtk2-engines-qtcurve-0.55.2.orig/debian/changelog +++ gtk2-engines-qtcurve-0.55.2/debian/changelog @@ -0,0 +1,122 @@ +gtk2-engines-qtcurve (0.55.2-1ubuntu1) hardy; urgency=low + + * Merge from debian unstable, remaining changes: + - debian/copyright: + - Replaced FSF address. + - Removed dh_make comments. + - debian/scan-version: Script to scan and download new upstream releases + (uscan will not work with links from kde-look.org). + - debian/rules: + - Added get-orig-source rule. + + -- Stephan Hermann Mon, 21 Jan 2008 18:06:42 +0100 + +gtk2-engines-qtcurve (0.55.2-1) unstable; urgency=low + + * New upstream version + + -- Bastian Venthur Sun, 20 Jan 2008 17:22:26 +0100 + +gtk2-engines-qtcurve (0.55.1-0ubuntu1) hardy; urgency=low + + * New upstream release. (LP: #179655) + * debian/scan-version: Script to scan and download new upstream releases + (uscan will not work with links from kde-look.org). + * debian/control: + - Build-depend on cmake. + - Updated Standards-Version. + * debian/copyright: + - Replaced FSF address. + - Removed dh_make comments. + * debian/rules: + - Added get-orig-source rule. + - Use cmake to build. + * debian/docs: + - Removed NEWS, no longer distributed. + + -- Matvey Kozhev Tue, 01 Jan 2008 16:15:24 +0600 + +gtk2-engines-qtcurve (0.52.3-1) unstable; urgency=low + + 0.52.3 + * Fix 1st stripe on vertical progress bar. + * Fix very small progress bar chunks. + * Fix blanked out widgets in tovid. + * Fix DeVeDe crash when 'fix parentless dialogs' is enabled. + + 0.52.2 + * Don't lighten border of disabled check/radio buttons. + * Lighten trough of disabled slider. + + -- Bastian Venthur Fri, 10 Aug 2007 10:03:47 +0200 + +gtk2-engines-qtcurve (0.52.1-1) unstable; urgency=low + + New upstream version + + * Draw emphasis around menus when not lightening. + * Use button colors to border entry fields. + * Fix menu standard background. + + -- Bastian Venthur Sun, 24 Jun 2007 13:10:56 +0200 + +gtk2-engines-qtcurve (0.52-1) unstable; urgency=low + + * New upstream version + + * Use 'dull glass' as the default gradient - previous default is now + called 'Clean'. + * Darken slider mouse over colour if slider is not shaded. + * Use thinner slider mouse over sections if slider is not shaded. + * Improve look of small V arrows. + * Even duller dull glass, but much more useable. + * Implement 'plastik' style mouse over for square sliders. + * Fix bottom/right scrollbar arrow position. + * Fix spinbutton arrow position. + * Fix SWT combo arrows. + * Don't prelight SWT combos - they don't un-prelight when activated! + * For non editable combos, draw both an up and a down arrow. + * For editable combos - make menu more KDE list like. + + -- Bastian Venthur Tue, 19 Jun 2007 17:33:59 +0200 + +gtk2-engines-qtcurve (0.51-2) unstable; urgency=low + + * Changed priority from extra to optional + + -- Bastian Venthur Mon, 11 Jun 2007 11:20:11 +0200 + +gtk2-engines-qtcurve (0.51-1) unstable; urgency=low + + * New Upstream version (Closes: #427040) + * Corrected recommends-field (Closes: #427873) + * Removed debian/dirs (Closes: #427874) + + * Changed shading to use HSL colour space. This can be altered by editing + $XDG_CONFIG_HOME/qtcurvestylerc and setting 'shading=simple' for the + previous method, or 'shading=hsv' to use HSV. + * Add options: + Border all of menu/toolbars. + Darker borders. + 'V' arrows. + * Fix raised listview headers. + * Fix glass style menuitem appearance. + * Modifed look of dullglass, looks "softer" + * Improve look of plastik mouse-over for non coloured scrollbars. + * For disabled buttons, use standard fill but lighten border. + * Use darker colours for mouse-over and default button - helps with light + colour schemes. + * Dont draw sunken panel around checked menuitems. + * If the app is a Java app, and its g_get_application_name()!="unknown", + then assume its a SWT java app - in which case treat as a standard app. For + Swing apps some functionality is disabled. + * Fix tabs in thunderbird. + + -- Bastian Venthur Mon, 11 Jun 2007 10:26:42 +0200 + +gtk2-engines-qtcurve (0.50-1) unstable; urgency=low + + * Initial release + + -- Bastian Venthur Fri, 25 May 2007 12:52:24 +0200 + --- gtk2-engines-qtcurve-0.55.2.orig/debian/rules +++ gtk2-engines-qtcurve-0.55.2/debian/rules @@ -0,0 +1,109 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# 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) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +config.status: CMakeLists.txt config.h.cmake + dh_testdir + # Add here commands to configure the package. +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 + cmake . + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #docbook-to-man debian/gtk2-engines-qtcurve.sgml > gtk2-engines-qtcurve.1 + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) distclean + rm -f config.sub config.guess + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/gtk2-engines-qtcurve. + $(MAKE) DESTDIR=$(CURDIR)/debian/gtk2-engines-qtcurve install + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_python +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +get-orig-source: + debian/scan-version get-orig-source + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install