--- gtkcairo-0.3.orig/debian/README.Debian +++ gtkcairo-0.3/debian/README.Debian @@ -0,0 +1,6 @@ +gtkcairo for Debian +------------------- + + + + -- Gijs Molenaar Wed, 23 Jul 2008 22:05:05 +0200 --- gtkcairo-0.3.orig/debian/libgtkcairo1.dirs +++ gtkcairo-0.3/debian/libgtkcairo1.dirs @@ -0,0 +1 @@ +usr/lib --- gtkcairo-0.3.orig/debian/gtkcairo.doc-base.EX +++ gtkcairo-0.3/debian/gtkcairo.doc-base.EX @@ -0,0 +1,22 @@ +Document: gtkcairo +Title: Debian gtkcairo Manual +Author: +Abstract: This manual describes what gtkcairo is + and how it can be used to + manage online manuals on Debian systems. +Section: unknown + +Format: debiandoc-sgml +Files: /usr/share/doc/gtkcairo/gtkcairo.sgml.gz + +Format: postscript +Files: /usr/share/doc/gtkcairo/gtkcairo.ps.gz + +Format: text +Files: /usr/share/doc/gtkcairo/gtkcairo.text.gz + +Format: HTML +Index: /usr/share/doc/gtkcairo/html/index.html +Files: /usr/share/doc/gtkcairo/html/*.html + + --- gtkcairo-0.3.orig/debian/control +++ gtkcairo-0.3/debian/control @@ -0,0 +1,26 @@ +Source: gtkcairo +Priority: extra +Maintainer: Gijs Molenaar +Build-Depends: debhelper (>= 5), autotools-dev, automake1.8, autoconf, libtool, build-essential, autogen, libcairo2-dev, libgtk2.0-dev +Standards-Version: 3.7.2 +Section: libs + +Package: libgtkcairo-dev +Section: libdevel +Architecture: any +Depends: libgtkcairo1 (= ${Source-Version}) +Description: GtkCairo is a cairo widget for GTK + GtkCairo is a cairo widget for GTK. + GtkCairo provides a canvas for drawing + using cairo's vector based rendering API + +Package: libgtkcairo1 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: GtkCairo is a cairo widget for GTK (development files) + GtkCairo is a cairo widget for GTK. + GtkCairo provides a canvas for drawing + using cairo's vector based rendering API + + --- gtkcairo-0.3.orig/debian/menu.ex +++ gtkcairo-0.3/debian/menu.ex @@ -0,0 +1,2 @@ +?package(gtkcairo):needs="X11|text|vc|wm" section="Applications/see-menu-manual"\ + title="gtkcairo" command="/usr/bin/gtkcairo" --- gtkcairo-0.3.orig/debian/docs +++ gtkcairo-0.3/debian/docs @@ -0,0 +1,2 @@ +NEWS +README --- gtkcairo-0.3.orig/debian/watch.ex +++ gtkcairo-0.3/debian/watch.ex @@ -0,0 +1,22 @@ +# Example watch control file for uscan +# Rename this file to "watch" and then you can run the "uscan" command +# to check for upstream updates and more. +# See uscan(1) for format + +# Compulsory line, this is a version 3 file +version=3 + +# Uncomment to examine a Webpage +# +#http://www.example.com/downloads.php gtkcairo-(.*)\.tar\.gz + +# Uncomment to examine a Webserver directory +#http://www.example.com/pub/gtkcairo-(.*)\.tar\.gz + +# Uncommment to examine a FTP server +#ftp://ftp.example.com/pub/gtkcairo-(.*)\.tar\.gz debian uupdate + +# Uncomment to find new files on sourceforge, for devscripts >= 2.9 +# http://sf.net/gtkcairo/gtkcairo-(.*)\.tar\.gz + + --- gtkcairo-0.3.orig/debian/compat +++ gtkcairo-0.3/debian/compat @@ -0,0 +1 @@ +5 --- gtkcairo-0.3.orig/debian/libgtkcairo-dev.dirs +++ gtkcairo-0.3/debian/libgtkcairo-dev.dirs @@ -0,0 +1 @@ +usr/include --- gtkcairo-0.3.orig/debian/changelog +++ gtkcairo-0.3/debian/changelog @@ -0,0 +1,18 @@ +gtkcairo (0.3-3) hardy; urgency=low + + * bumped version so this package gets accepted by launchpad again + + -- Gijs Molenaar Fri, 01 Aug 2008 10:00:14 +0200 + +gtkcairo (0.3-2) hardy; urgency=low + + * removed .in debian/install file so root symlink is also copied + + -- Gijs Molenaar Fri, 01 Aug 2008 10:00:10 +0200 + +gtkcairo (0.3-1) hardy; urgency=low + + * Initial release (Closes: #nnnn) + + -- Gijs Molenaar Wed, 23 Jul 2008 22:05:05 +0200 + --- gtkcairo-0.3.orig/debian/rules +++ gtkcairo-0.3/debian/rules @@ -0,0 +1,106 @@ +#!/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) + + +# shared library versions, option 1 +#version=2.0.5 +#major=2 +# option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so +version=`ls src/.libs/lib*.so.* | \ + awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'` +major=`ls src/.libs/lib*.so.* | \ + awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'` + +config.status: configure + 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 + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + + +build: build-stamp +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + + 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/tmp + #$(MAKE) DESTDIR=$(CURDIR)/debian/tmp 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_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_python +# 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 --- gtkcairo-0.3.orig/debian/libgtkcairo1.install +++ gtkcairo-0.3/debian/libgtkcairo1.install @@ -0,0 +1 @@ +gtkcairo/.libs/libgtkcairo.so* usr/lib --- gtkcairo-0.3.orig/debian/libgtkcairo-dev.install +++ gtkcairo-0.3/debian/libgtkcairo-dev.install @@ -0,0 +1,2 @@ +gtkcairo/gtkcairo.h /usr/include +gtkcairo.pc /usr/lib/pkgconfig --- gtkcairo-0.3.orig/debian/shlibs.local.ex +++ gtkcairo-0.3/debian/shlibs.local.ex @@ -0,0 +1 @@ +libgtkcairo 0.3 gtkcairo (>> 0.3-0), gtkcairo (<< 0.3-99) --- gtkcairo-0.3.orig/debian/copyright +++ gtkcairo-0.3/debian/copyright @@ -0,0 +1,40 @@ +This package was debianized by Gijs Molenaar on +Wed, 23 Jul 2008 22:05:05 +0200. + +It was downloaded from + +Upstream Author(s): + + + + +Copyright: + + + + +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'. + +The Debian packaging is (C) 2008, Gijs Molenaar and +is licensed under the GPL, see above. + + +# Please also look if there are files or directories which have a +# different copyright/license attached and list them here. --- gtkcairo-0.3.orig/debian/dirs +++ gtkcairo-0.3/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/sbin