--- libtinymail-0.0.9+svn3897.orig/debian/libtinymail-camel-dev.install +++ libtinymail-0.0.9+svn3897/debian/libtinymail-camel-dev.install @@ -0,0 +1,11 @@ +gnome/usr/include/libtinymail-camel-1.0/* usr/include/libtinymail-camel-1.0 +gnome/usr/include/libedataserver-lite/* usr/include/libedataserver-lite +gnome/usr/include/camel-lite/* usr/include/camel-lite +gnome/usr/lib/libtinymail-camel-1.0.so usr/lib +gnome/usr/lib/libtinymail-camel-1.0.a usr/lib +gnome/usr/lib/libcamel-lite-1.2.so usr/lib +gnome/usr/lib/libcamel-lite-1.2.a usr/lib +gnome/usr/lib/camel-lite-1.2/camel-providers/*.a usr/lib/camel-lite-1.2/camel-providers +gnome/usr/lib/pkgconfig/libtinymail-camel-1.0.pc usr/lib/pkgconfig +gnome/usr/lib/pkgconfig/camel-lite-1.2.pc usr/lib/pkgconfig +gnome/usr/lib/pkgconfig/camel-lite-provider-1.2.pc usr/lib/pkgconfig --- libtinymail-0.0.9+svn3897.orig/debian/libtinymail-tp-1.0-0.install +++ libtinymail-0.0.9+svn3897/debian/libtinymail-tp-1.0-0.install @@ -0,0 +1 @@ +gnome/usr/lib/libtinymail-tp-1.0.so.* usr/lib --- libtinymail-0.0.9+svn3897.orig/debian/libtinymail-dev.install +++ libtinymail-0.0.9+svn3897/debian/libtinymail-dev.install @@ -0,0 +1,4 @@ +gnome/usr/include/libtinymail-1.0/* usr/include/libtinymail-1.0 +gnome/usr/lib/libtinymail-1.0.so usr/lib +gnome/usr/lib/libtinymail-1.0.a usr/lib +gnome/usr/lib/pkgconfig/libtinymail-1.0.pc usr/lib/pkgconfig --- libtinymail-0.0.9+svn3897.orig/debian/rules +++ libtinymail-0.0.9+svn3897/debian/rules @@ -0,0 +1,89 @@ +#!/usr/bin/make -f + +include /usr/share/quilt/quilt.make +include $(CURDIR)/debian/update-patches.mk + +STAMP_DIR := debian/stampdir + +FLAVOURS := gnome maemo + +builddir = $(buildbasedir)/$* +buildbasedir = $(CURDIR)/debian/build + +installdir = $(installbasedir)/$* +installbasedir = $(CURDIR)/debian/install + +common_configure_flags := --prefix=/usr \ + --enable-gnome \ + --enable-tp \ + --with-html-component=gtkhtml \ + --disable-rpath \ + --with-ssl=openssl \ + --enable-tests=no \ + --enable-unit-tests=no \ + --enable-demoui=no \ + --with-krb5=/usr/include + +gnome_configure_flags := $(common_configure_flags) \ + --with-platform=gnome-desktop +maemo_configure_flags := $(common_configure_flags) \ + --with-platform=maemo + +$(STAMP_DIR)/autogen-stamp: patch + NOCONFIGURE=1 ./autogen.sh + -mkdir -p $(STAMP_DIR) + touch $@ + +$(STAMP_DIR)/configure-stamp-%: $(STAMP_DIR)/autogen-stamp + dh_testdir + mkdir -p $(builddir) + cd $(builddir) && \ + $(CURDIR)/configure $($*_configure_flags) + touch $@ + +$(STAMP_DIR)/build-stamp-%: $(STAMP_DIR)/configure-stamp-% + dh_testdir + $(MAKE) -C $(builddir) + touch $@ + +build: $(addprefix $(STAMP_DIR)/build-stamp-, $(FLAVOURS)) + +clean: + dh_testdir + dh_testroot + rm -rf $(installbasedir) + rm -rf $(buildbasedir) + [ ! -f Makefile ] || $(MAKE) distclean + $(MAKE) -f $(CURDIR)/debian/rules unpatch + -rm -rf $(STAMP_DIR) + dh_clean + +$(STAMP_DIR)/install-stamp-%: $(STAMP_DIR)/build-stamp-% + mkdir -p $(installdir) + $(MAKE) -C $(builddir) install DESTDIR=$(installdir) + (cd $(installdir)/usr/lib && find -name "*.la" -delete) + touch $@ + +install: $(addprefix $(STAMP_DIR)/install-stamp-, $(FLAVOURS)) + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs -a + dh_installchangelogs ChangeLog + dh_install --sourcedir=debian/install + dh_link -a + dh_strip -a --dbg-package=libtinymail-1.0-0-dbg + dh_compress -a + dh_fixperms -a + dh_makeshlibs -V -a + dh_installdeb -a + dh_shlibdeps -a + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- libtinymail-0.0.9+svn3897.orig/debian/README.source +++ libtinymail-0.0.9+svn3897/debian/README.source @@ -0,0 +1,58 @@ +Patches +======= + +This package occasionally uses quilt to store modifications to the upstream +source, although in most uploads no patches are needed. + +To get the fully patched source: make -f debian/rules patch + +To revert to what's in git: make -f debian/rules unpatch + +To add a patch: obtain a diff and put it in debian/patches, or see below + +To remove an existing patch: delete it from debian/patches + +Packaging using git +=================== + +The repository contains an appropriate debian/gbp.conf to build this package +using git-buildpackage. The debian branch contains the latest upstream versions +(for unstable, or experimental while a freeze is in progress). The debian- +branch contains versions targeted for a specific release (lenny, squeeze, etc.) + +Here's how to build it: + + git clone git://git.debian.org/git/pkg-maemo/libtinymail.git + cd libtinymail + git checkout debian + git-buildpackage -us -uc + +or for testing/stable branches like debian-lenny: + + git clone git://git.debian.org/git/pkg-maemo/libtinymail.git + cd libtinymail + git checkout debian-lenny + git-buildpackage -us -uc --git-debian-branch=debian-lenny + +The branch 'upstream' is a copy of the contents of upstream tarballs. To import +upstream tarballs use: + + git checkout debian + git-import-orig ~/libtinymail-0.7.x.tar.gz + +The branch 'debian-patches' is 'upstream' plus any patches needed for Debian. +It should be rebased on 'upstream' after each upstream release: + + git checkout debian-patches + git rebase upstream + +The preferred way of adding patches is to make a commit to the debian-patches +branch: + + git checkout debian-patches + + git commit + git checkout debian + fakeroot debian/rules update-patches + + -- Jonny Lamb Thu, 26 Feb 2009 16:16:26 +0000 --- libtinymail-0.0.9+svn3897.orig/debian/copyright +++ libtinymail-0.0.9+svn3897/debian/copyright @@ -0,0 +1,130 @@ +This is libtinymail, a framework for using e-mail on mobile devices. It was +first Debianized on Wed, 3 Oct 2007 15:55:45 +1000 by Steve Kowalik + + +It was downloaded from: http://www.tinymail.org/ + +Upstream Authors: + + Philip Van Hoof + Sergio Villar Senin + Dirk-Jan C. Binnema + Javier Fernandez + Jose Dapena Paz + Mark Doffman + Jürg Billeter + Murray Cumming + Rob Taylor + Armin Burgmeier + Alberto Garcia + Raphael Slinckx + Antia Puentes Felpeto + Tinne Hannes + James Doc Livingston + Florian Boor + Nils Faerber + Thomas Hisch + Koen Kooi + Chris Lord + Øystein Gisnås + Thomas Viehmann + +Autogenerated files: + + * bindings/dotnet/*/*-api.raw files were created by using gapi-parser, with the + respective bindings/dotnet/$1/$2-sources.xml files as arguments. + + * bindings/dotnet/*.snk was created using the sn(1) tool, which is available + from the mono-1.0-devel package. + + * libtinymail-camel/camel-lite/camel/camel-charset-map.c shows how to create + libtinymail-camel/camel-lite/camel/camel-charset-map-private.h: + + gcc -DBUILD_MAP camel-charset-map.c `pkg-config --cflags --libs glib-2.0` + (plus any -I/-L/-l flags you need for iconv), then run it as + ./a.out > camel-charset-map-private.h + +Copyright: + +The following copyright applies to all of files in this package, with the +following exceptions: libtinymail-test/*.c, tests/c-demo/*.c, +tests/shared/account-store.h, tests/memory/memory-test.c, tests/functional/*.c, +libtinymail-camel/camel-lite/camel/camel-net-utils.h, +libtinymail-camel/camel-lite/libedataserver/e-time-utils.c + + Copyright (C) 2006-2008 Philip Van Hoof + Copyright (C) 1999-2003 Ximian, Inc. (www.ximian.com) + Copyright (C) 2003-2005 Novell, Inc. (www.novell.com) + Copyright (C) 2005 Matt Brown + Copyright (C) 1994-2000 Netscape Communications Corporation + Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald + Copyright (C) 2008 Jose Dapena Paz + Copyright (C) 2006 Øystein Gisnås + + 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 Library General Public + License along with this library; if not, write to the + Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + Boston, MA 02110-1301, USA. + +The complete text of the LGPL-2 can be found in /usr/share/common-licenses/LGPL-2 +on Debian systems. + +The following files are under the following copyright: libtinymail-test/*.c, +tests/c-demo/*.c, tests/shared/account-store.h, tests/memory/memory-test.c, +tests/functional/*.c + + Copyright (C) 2006-2007 Philip Van Hoof + Copyright (C) 2006-2007 Sergio Villar Senin + Copyright (C) 2006-2007 Antia Puentes Felpeto + + 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 complete text of the GPL-2 can be found in /usr/share/common-licenses/GPL-2 +on Debian systems. + +The following files are under the following copyright: +libtinymail-camel/camel-lite/camel/camel-net-utils.h, +libtinymail-camel/camel-lite/libedataserver/e-time-utils.c + + Copyright (C) 2004 Ximian Inc. + Copyright (C) 1996-2002, 2003, 2004 Free Software Foundation, Inc. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the + Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + Boston, MA 02110-1301, USA. + +The complete text of the LGPL-2 can be found in /usr/share/common-licenses/LGPL-2 +on Debian systems. --- libtinymail-0.0.9+svn3897.orig/debian/libtinymailui-gtk-dev.install +++ libtinymail-0.0.9+svn3897/debian/libtinymailui-gtk-dev.install @@ -0,0 +1,4 @@ +gnome/usr/include/libtinymailui-gtk-1.0/* usr/include/libtinymailui-gtk-1.0 +gnome/usr/lib/libtinymailui-gtk-1.0.so usr/lib +gnome/usr/lib/libtinymailui-gtk-1.0.a usr/lib +gnome/usr/lib/pkgconfig/libtinymailui-gtk-1.0.pc usr/lib/pkgconfig --- libtinymail-0.0.9+svn3897.orig/debian/libtinymail-gnomevfs-dev.install +++ libtinymail-0.0.9+svn3897/debian/libtinymail-gnomevfs-dev.install @@ -0,0 +1,4 @@ +gnome/usr/include/libtinymail-gnomevfs-1.0/* usr/include/libtinymail-gnomevfs-1.0 +gnome/usr/lib/libtinymail-gnomevfs-1.0.so usr/lib +gnome/usr/lib/libtinymail-gnomevfs-1.0.a usr/lib +gnome/usr/lib/pkgconfig/libtinymail-gnomevfs-1.0.pc usr/lib/pkgconfig --- libtinymail-0.0.9+svn3897.orig/debian/gbp.conf +++ libtinymail-0.0.9+svn3897/debian/gbp.conf @@ -0,0 +1,8 @@ +[DEFAULT] +debian-branch = debian +upstream-branch = upstream +pristine-tar = True + +[git-buildpackage] +tarball-dir = ../tarballs/ +export-dir = ../build-area/ --- libtinymail-0.0.9+svn3897.orig/debian/libtinymail-camel-1.0-0.install +++ libtinymail-0.0.9+svn3897/debian/libtinymail-camel-1.0-0.install @@ -0,0 +1,4 @@ +gnome/usr/lib/libtinymail-camel-1.0.so.* usr/lib +gnome/usr/lib/libcamel-lite-1.2.so.* usr/lib +gnome/usr/lib/camel-lite-1.2/camel-providers/*.so usr/lib/camel-lite-1.2/camel-providers +gnome/usr/lib/camel-lite-1.2/camel-providers/*.urls usr/lib/camel-lite-1.2/camel-providers --- libtinymail-0.0.9+svn3897.orig/debian/compat +++ libtinymail-0.0.9+svn3897/debian/compat @@ -0,0 +1 @@ +5 --- libtinymail-0.0.9+svn3897.orig/debian/libtinymailui-gtkhtml-1.0-0.install +++ libtinymail-0.0.9+svn3897/debian/libtinymailui-gtkhtml-1.0-0.install @@ -0,0 +1 @@ +gnome/usr/lib/libtinymailui-gtkhtml-1.0.so.* usr/lib --- libtinymail-0.0.9+svn3897.orig/debian/libtinymail-gnomevfs-1.0-0.install +++ libtinymail-0.0.9+svn3897/debian/libtinymail-gnomevfs-1.0-0.install @@ -0,0 +1 @@ +gnome/usr/lib/libtinymail-gnomevfs-1.0.so.* usr/lib --- libtinymail-0.0.9+svn3897.orig/debian/changelog +++ libtinymail-0.0.9+svn3897/debian/changelog @@ -0,0 +1,150 @@ +libtinymail (0.0.9+svn3897-2) unstable; urgency=low + + * Build package twice, to also build libtinymail-maemo-* packages + again. (Closes: #532192, #534085) + * debian/control: Upped Standards-Version. (no changes) + + -- Jonny Lamb Mon, 27 Jul 2009 02:13:40 +0200 + +libtinymail (0.0.9+svn3897-1) unstable; urgency=low + + [ Jonny Lamb ] + * New upstream SVN snapshot. (Closes: #495975) + * debian/patches/: + + 0001-Use-gtkhtml-3.14.patch: Updated to only touch configure.ac. + * debian/README.source: Added. + * debian/gbp.conf: Added. + * debian/update-patches.mk: Added. + * debian/rules: + + Include update-patches.mk. + + Delete .la files so dh_install doesn't whine. + + Call debian/rules unpatch from clean target after distclean. + * debian/control: + + Use my debian.org email address. + + Updated and added Vcs-{Git,Browser} fields. + + Bumped Standards-Version. (no changes) + + Made short descriptions unique. + + Added Section and Priority to debug package. + + Rename libtinymail-gnome-* packages to libtinymail-gnome-desktop-* + to reflect soname. (Closes: #524290) + * debian/copyright: Updated copyright links in common-licenses. + + [ Guido Günther ] + * debian/rules: Call autogen.sh instead of configure. + * debian/control: + + Updated Build-Deps for the SVN snapshot. + + Added debug package. (Closes: #496076) + + Updated dev package dependencies. (Closes: #496209) + * Build for GNOME instead of Maemo. (Closes: #492147) + + -- Jonny Lamb Tue, 21 Apr 2009 19:34:46 +0100 + +libtinymail (0.0.9-3) unstable; urgency=medium + + * debian/*-dev.install: Removed installing .la files. (Closes: #496859) + + -- Jonny Lamb Fri, 26 Sep 2008 02:18:11 +0100 + +libtinymail (0.0.9-2) unstable; urgency=low + + * debian/control: + + Fixed Maintainer email address. + + Added libkrb5-dev Build-Dep. + * debian/rules: Added --with-krb5 option to configure to enable Kerberos5 + support. + + -- Jonny Lamb Fri, 04 Jul 2008 14:01:56 +0100 + +libtinymail (0.0.9-1) unstable; urgency=low + + * Initial release into Debian (Closes: #465590). + * debian/control: + + Changed Maintainer to Debian Maemo Maintainers. + + Added team members to Uploaders. + + s/GTK/GTK+/g to please lintian. + + Added "Section: libdevel" for -dev packages. + + Bumped Standards-Version to 3.7.3. + + Added Vcs-Bzr field. + + Wrapped Build-Deps. + * debian/rules: + + Misc cleanups. + + Added --with-ssl=openssl for SSL support in camel-lite. + + Disabled tests from building due to OpenSSL confliction. + + Disabled building the demoui. + * debian/copyright: + + Added upstream URL, authors and copyright holders. + + Added section on how the autogenerated files are created. + * debian/patches: Removed all old dpatch patches and added + use-gtkhtml3.14.diff. Also converted patch system to quilt. + * Created new binary packages, libtinymailui-gtkhtml-{1.0-0,dev}. + + -- Jonny Lamb Mon, 26 May 2008 02:56:28 +0100 + +libtinymail (0.0.7-0ubuntu1) hardy; urgency=low + + * New upstream release. + + -- Steve Kowalik Mon, 21 Jan 2008 11:45:11 +1100 + +libtinymail (0.0.6-0ubuntu2) hardy; urgency=low + + * Actually remember a conversation that happened late last year and use + GtkHTML instead of xulrunner. + + -- Steve Kowalik Fri, 04 Jan 2008 09:56:53 +1100 + +libtinymail (0.0.6-0ubuntu1) hardy; urgency=low + + * New upstream release. + * Patches dropped, fixed upstream: + - Compile libtinymailui-gnome-keyring with -fPIC. + - Pull down tny-maemo-device-priv.h from SVN. + - Disables conic if it doesn't exist. + - Add some UI locker functions from SVN. + * xulrunner-1.9 has changed libxul-embedding-1.9 to libxul-embedding, so + twiddle debian/rules. + * Rip out 99.9% of the gtkmozembed 1.9 patch, replacing it with one that + only makes sure we use the unstable headers. + + -- Steve Kowalik Thu, 03 Jan 2008 11:50:42 +1100 + +libtinymail (0.0.5-0ubuntu2) hardy; urgency=low + + [ Loic Minier ] + * Update xul patch to provide configure flags for misc Mozilla pkg-config + modules and to look for libxul-embedding for xpcom and gtkmozembed; set + the nss and nspr modules to "no" via configure flags (as to disable them) + and set gtkmozembed and xpcom modules to libxul-embedding-1.9 for now. + * Use ${binary:Version} instead of ${source:Version} for dependencies across + arch: any packages. + * Honor make distclean failures. + * Fix typo in libtinymail-tp-dev depends (use libtinymail-tp-1.0-0 instead + of -telepathy). + + [ Steve Kowalik ] + * Add a patch from SVN to add some UI locker functions. + + -- Steve Kowalik Wed, 05 Dec 2007 11:55:31 +1100 + +libtinymail (0.0.5-0ubuntu1) hardy; urgency=low + + * New upstream release. + * Add a patch that disables conic if it doesn't exist. + + -- Steve Kowalik Tue, 27 Nov 2007 13:08:28 +1100 + +libtinymail (0.0.4-0ubuntu1) hardy; urgency=low + + * New upstream release. + + -- Steve Kowalik Fri, 09 Nov 2007 09:34:48 +1100 + +libtinymail (0.0.2-0ubuntu1) gutsy; urgency=low + + * Initial release. + * Patches added: + - Compile libtinymailui-gnome-keyring with -fPIC. + - Pull down tny-maemo-device-priv.h from SVN. + + -- Steve Kowalik Fri, 12 Oct 2007 11:21:12 +1000 + --- libtinymail-0.0.9+svn3897.orig/debian/libtinymail-1.0-0.install +++ libtinymail-0.0.9+svn3897/debian/libtinymail-1.0-0.install @@ -0,0 +1 @@ +gnome/usr/lib/libtinymail-1.0.so.* usr/lib --- libtinymail-0.0.9+svn3897.orig/debian/libtinymail-maemo-1.0-0.install +++ libtinymail-0.0.9+svn3897/debian/libtinymail-maemo-1.0-0.install @@ -0,0 +1 @@ +maemo/usr/lib/libtinymail-maemo-1.0.so.* usr/lib --- libtinymail-0.0.9+svn3897.orig/debian/libtinymailui-gtkhtml-dev.install +++ libtinymail-0.0.9+svn3897/debian/libtinymailui-gtkhtml-dev.install @@ -0,0 +1,4 @@ +gnome/usr/include/libtinymailui-gtkhtml-1.0/* usr/include/libtinymailui-gtkhtml-1.0 +gnome/usr/lib/libtinymailui-gtkhtml-1.0.so usr/lib +gnome/usr/lib/libtinymailui-gtkhtml-1.0.a usr/lib +gnome/usr/lib/pkgconfig/libtinymailui-gtkhtml-1.0.pc usr/lib/pkgconfig --- libtinymail-0.0.9+svn3897.orig/debian/update-patches.mk +++ libtinymail-0.0.9+svn3897/debian/update-patches.mk @@ -0,0 +1,12 @@ +update-patches: + mkdir -p $(CURDIR)/debian/patches + rm -f $(CURDIR)/debian/patches/*.patch + rm -f $(CURDIR)/debian/patches/series + git format-patch -o $(CURDIR)/debian/patches debian-patches ^upstream + for patch in $$(ls $(CURDIR)/debian/patches/*.patch) ; \ + do \ + lines=$$(cat $$patch | wc -l) ; \ + head -n $$(($$lines - 3)) $$patch > $${patch}.chomped ; \ + mv $${patch}.chomped $$patch ; \ + echo $$(basename $${patch}) >> $(CURDIR)/debian/patches/series ; \ + done --- libtinymail-0.0.9+svn3897.orig/debian/libtinymailui-gtk-1.0-0.install +++ libtinymail-0.0.9+svn3897/debian/libtinymailui-gtk-1.0-0.install @@ -0,0 +1 @@ +gnome/usr/lib/libtinymailui-gtk-1.0.so.* usr/lib --- libtinymail-0.0.9+svn3897.orig/debian/libtinymailui-1.0-0.install +++ libtinymail-0.0.9+svn3897/debian/libtinymailui-1.0-0.install @@ -0,0 +1 @@ +gnome/usr/lib/libtinymailui-1.0.so.* usr/lib --- libtinymail-0.0.9+svn3897.orig/debian/libtinymail-maemo-dev.install +++ libtinymail-0.0.9+svn3897/debian/libtinymail-maemo-dev.install @@ -0,0 +1,4 @@ +maemo/usr/include/libtinymail-maemo-1.0/* usr/include/libtinymail-maemo-1.0 +maemo/usr/lib/libtinymail-maemo-1.0.so usr/lib +maemo/usr/lib/libtinymail-maemo-1.0.a usr/lib +maemo/usr/lib/pkgconfig/libtinymail-maemo-1.0.pc usr/lib/pkgconfig --- libtinymail-0.0.9+svn3897.orig/debian/libtinymailui-dev.install +++ libtinymail-0.0.9+svn3897/debian/libtinymailui-dev.install @@ -0,0 +1,4 @@ +gnome/usr/include/libtinymailui-1.0/* usr/include/libtinymailui-1.0 +gnome/usr/lib/libtinymailui-1.0.so usr/lib +gnome/usr/lib/libtinymailui-1.0.a usr/lib +gnome/usr/lib/pkgconfig/libtinymailui-1.0.pc usr/lib/pkgconfig --- libtinymail-0.0.9+svn3897.orig/debian/libtinymail-gnome-desktop-dev.install +++ libtinymail-0.0.9+svn3897/debian/libtinymail-gnome-desktop-dev.install @@ -0,0 +1,4 @@ +gnome/usr/include/libtinymail-gnome-desktop-1.0/* usr/include/libtinymail-gnome-desktop-1.0 +gnome/usr/lib/libtinymail-gnome-desktop-1.0.so usr/lib +gnome/usr/lib/libtinymail-gnome-desktop-1.0.a usr/lib +gnome/usr/lib/pkgconfig/libtinymail-gnome-desktop-1.0.pc usr/lib/pkgconfig --- libtinymail-0.0.9+svn3897.orig/debian/control +++ libtinymail-0.0.9+svn3897/debian/control @@ -0,0 +1,315 @@ +Source: libtinymail +Section: mail +Priority: optional +Maintainer: Debian Maemo Maintainers +Uploaders: Loic Minier , + Jonny Lamb , + Riku Voipio +Standards-Version: 3.8.2 +Build-Depends: debhelper (>= 5), + pkg-config, + libgtk2.0-dev, + libgnomevfs2-dev, + libgnomeui-dev, + libgnome-keyring-dev, + libgtkhtml3.14-dev, + libnm-glib-dev, + libosso-dev, + libtelepathy-glib-dev, + libssl-dev, + quilt, + libkrb5-dev, + gnome-common, + gtk-doc-tools, + autoconf, + automake, + libglib2.0-dev +Homepage: http://tinymail.org/ +Vcs-Git: git://git.debian.org/pkg-maemo/libtinymail.git.git +Vcs-Browser: http://git.debian.org/?p=pkg-maemo/libtinymail.git + +Package: libtinymail-1.0-0 +Architecture: any +Depends: ${shlibs:Depends} +Description: Framework for mobile applications with e-mail + Tinymail is a library for developing mobile applications with e-mail + functionality. The framework provides components that aid the developer + with the user interface and, of course also with the connectivity and the + caching of messages. + . + It supports local mail storage (Maildir, mh, spool & mbox), IMAP, POP and + NNTP. It can also be used to send messages over SMTP and by using sendmail. + . + This package contains the shared libraries. + +Package: libtinymail-dev +Section: libdevel +Architecture: any +Depends: libtinymail-1.0-0 (= ${binary:Version}) +Description: Framework for mobile applications with e-mail -- devel + Tinymail is a library for developing mobile applications with e-mail + functionality. The framework provides components that aid the developer + with the user interface and, of course also with the connectivity and the + caching of messages. + . + It supports local mail storage (Maildir, mh, spool & mbox), IMAP, POP and + NNTP. It can also be used to send messages over SMTP and by using sendmail. + . + This package contains the static libraries, along with the include files. + +Package: libtinymail-gnomevfs-1.0-0 +Architecture: any +Depends: ${shlibs:Depends} +Description: Framework for mobile applications with e-mail -- GnomeVFS library + Tinymail is a library for developing mobile applications with e-mail + functionality. The framework provides components that aid the developer + with the user interface and, of course also with the connectivity and the + caching of messages. + . + It supports local mail storage (Maildir, mh, spool & mbox), IMAP, POP and + NNTP. It can also be used to send messages over SMTP and by using sendmail. + . + This package contains the shared libraries utilising GnomeVFS. + +Package: libtinymail-gnomevfs-dev +Section: libdevel +Architecture: any +Depends: libtinymail-gnomevfs-1.0-0 (= ${binary:Version}) +Description: Framework for mobile applications with e-mail -- GnomeVFS devel + Tinymail is a library for developing mobile applications with e-mail + functionality. The framework provides components that aid the developer + with the user interface and, of course also with the connectivity and the + caching of messages. + . + It supports local mail storage (Maildir, mh, spool & mbox), IMAP, POP and + NNTP. It can also be used to send messages over SMTP and by using sendmail. + . + This package contains the static libraries utilising GnomeVFS, along with + include files. + +Package: libtinymail-camel-1.0-0 +Architecture: any +Depends: ${shlibs:Depends} +Description: Framework for mobile applications with e-mail -- Camel library + Tinymail is a library for developing mobile applications with e-mail + functionality. The framework provides components that aid the developer + with the user interface and, of course also with the connectivity and the + caching of messages. + . + It supports local mail storage (Maildir, mh, spool & mbox), IMAP, POP and + NNTP. It can also be used to send messages over SMTP and by using sendmail. + . + This package contains the shared libraries utilising Camel, and Camel-Lite. + +Package: libtinymail-camel-dev +Section: libdevel +Architecture: any +Depends: libtinymail-camel-1.0-0 (= ${binary:Version}) +Description: Framework for mobile applications with e-mail -- Camel devel + Tinymail is a library for developing mobile applications with e-mail + functionality. The framework provides components that aid the developer + with the user interface and, of course also with the connectivity and the + caching of messages. + . + It supports local mail storage (Maildir, mh, spool & mbox), IMAP, POP and + NNTP. It can also be used to send messages over SMTP and by using sendmail. + . + This package contains the static libraries utilising Camel and Camel-Lite, + along with the associated include files. + +Package: libtinymail-gnome-desktop-1.0-0 +Architecture: any +Depends: ${shlibs:Depends} +Description: Framework for mobile applications with e-mail - GNOME library + Tinymail is a library for developing mobile applications with e-mail + functionality. The framework provides components that aid the developer + with the user interface and, of course also with the connectivity and the + caching of messages. + . + It supports local mail storage (Maildir, mh, spool & mbox), IMAP, POP and + NNTP. It can also be used to send messages over SMTP and by using sendmail. + . + This package contains the shared libraries utilising GNOME. + +Package: libtinymail-gnome-desktop-dev +Section: libdevel +Architecture: any +Depends: libtinymail-gnome-desktop-1.0-0 (= ${binary:Version}) +Description: Framework for mobile applications with e-mail - GNOME devel + Tinymail is a library for developing mobile applications with e-mail + functionality. The framework provides components that aid the developer + with the user interface and, of course also with the connectivity and the + caching of messages. + . + It supports local mail storage (Maildir, mh, spool & mbox), IMAP, POP and + NNTP. It can also be used to send messages over SMTP and by using sendmail. + . + This package contains the static libraries utilising GNOME, along with + include files. + +Package: libtinymail-maemo-1.0-0 +Architecture: any +Depends: ${shlibs:Depends} +Description: Framework for mobile applications with e-mail - Maemo library + Tinymail is a library for developing mobile applications with e-mail + functionality. The framework provides components that aid the developer + with the user interface and, of course also with the connectivity and the + caching of messages. + . + It supports local mail storage (Maildir, mh, spool & mbox), IMAP, POP and + NNTP. It can also be used to send messages over SMTP and by using sendmail. + . + This package contains the shared libraries utilising Maemo. + +Package: libtinymail-maemo-dev +Section: libdevel +Architecture: any +Depends: libtinymail-maemo-1.0-0 (= ${binary:Version}) +Description: Framework for mobile applications with e-mail - Maemo devel + Tinymail is a library for developing mobile applications with e-mail + functionality. The framework provides components that aid the developer + with the user interface and, of course also with the connectivity and the + caching of messages. + . + It supports local mail storage (Maildir, mh, spool & mbox), IMAP, POP and + NNTP. It can also be used to send messages over SMTP and by using sendmail. + . + This package contains the static libraries utilising Maemo, along with + include files. + +Package: libtinymailui-1.0-0 +Architecture: any +Depends: ${shlibs:Depends} +Description: Framework for mobile applications with e-mail - UI library + Tinymail is a library for developing mobile applications with e-mail + functionality. The framework provides components that aid the developer + with the user interface and, of course also with the connectivity and the + caching of messages. + . + It supports local mail storage (Maildir, mh, spool & mbox), IMAP, POP and + NNTP. It can also be used to send messages over SMTP and by using sendmail. + . + This package contains the shared libraries for the UI. + +Package: libtinymailui-dev +Section: libdevel +Architecture: any +Depends: libtinymailui-1.0-0 (= ${binary:Version}) +Description: Framework for mobile applications with e-mail - UI devel + Tinymail is a library for developing mobile applications with e-mail + functionality. The framework provides components that aid the developer + with the user interface and, of course also with the connectivity and the + caching of messages. + . + It supports local mail storage (Maildir, mh, spool & mbox), IMAP, POP and + NNTP. It can also be used to send messages over SMTP and by using sendmail. + . + This package contains the static libraries for the UI, along with the + include files. + +Package: libtinymailui-gtk-1.0-0 +Architecture: any +Depends: ${shlibs:Depends} +Description: Framework for mobile applications with e-mail - GTK+ library + Tinymail is a library for developing mobile applications with e-mail + functionality. The framework provides components that aid the developer + with the user interface and, of course also with the connectivity and the + caching of messages. + . + It supports local mail storage (Maildir, mh, spool & mbox), IMAP, POP and + NNTP. It can also be used to send messages over SMTP and by using sendmail. + . + This package contains the shared libraries utilising GTK+ for the UI library. + +Package: libtinymailui-gtk-dev +Section: libdevel +Architecture: any +Depends: libtinymailui-gtk-1.0-0 (= ${binary:Version}), libgtk2.0-dev +Description: Framework for mobile applications with e-mail - GTK+ devel + Tinymail is a library for developing mobile applications with e-mail + functionality. The framework provides components that aid the developer + with the user interface and, of course also with the connectivity and the + caching of messages. + . + It supports local mail storage (Maildir, mh, spool & mbox), IMAP, POP and + NNTP. It can also be used to send messages over SMTP and by using sendmail. + . + This package contains the static libraries utilising GTK+ for the UI library, + along with include files. + +Package: libtinymail-tp-1.0-0 +Architecture: any +Depends: ${shlibs:Depends} +Description: Framework for mobile applications with e-mail - Telepathy library + Tinymail is a library for developing mobile applications with e-mail + functionality. The framework provides components that aid the developer + with the user interface and, of course also with the connectivity and the + caching of messages. + . + It supports local mail storage (Maildir, mh, spool & mbox), IMAP, POP and + NNTP. It can also be used to send messages over SMTP and by using sendmail. + . + This package contains the shared libraries utilising Telepathy. + +Package: libtinymail-tp-dev +Section: libdevel +Architecture: any +Depends: libtinymail-tp-1.0-0 (= ${binary:Version}) +Description: Framework for mobile applications with e-mail - Telepathy devel + Tinymail is a library for developing mobile applications with e-mail + functionality. The framework provides components that aid the developer + with the user interface and, of course also with the connectivity and the + caching of messages. + . + It supports local mail storage (Maildir, mh, spool & mbox), IMAP, POP and + NNTP. It can also be used to send messages over SMTP and by using sendmail. + . + This package contains the static libraries utilising Telepathy, along with + include files. + +Package: libtinymailui-gtkhtml-1.0-0 +Architecture: any +Depends: ${shlibs:Depends} +Description: Framework for mobile applications with e-mail - gtkhtml library + Tinymail is a library for developing mobile applications with e-mail + functionality. The framework provides components that aid the developer + with the user interface and, of course also with the connectivity and the + caching of messages. + . + It supports local mail storage (Maildir, mh, spool & mbox), IMAP, POP and + NNTP. It can also be used to send messages over SMTP and by using sendmail. + . + This package contains the static libraries utilising gtkhtml. + +Package: libtinymailui-gtkhtml-dev +Section: libdevel +Architecture: any +Depends: libtinymailui-gtkhtml-1.0-0 (= ${binary:Version}), libgtkhtml3.14-dev +Description: Framework for mobile applications with e-mail - gtkhtml devel + Tinymail is a library for developing mobile applications with e-mail + functionality. The framework provides components that aid the developer + with the user interface and, of course also with the connectivity and the + caching of messages. + . + It supports local mail storage (Maildir, mh, spool & mbox), IMAP, POP and + NNTP. It can also be used to send messages over SMTP and by using sendmail. + . + This package contains the static libraries utilising gtkhtml, along + with inlclude files. + +Package: libtinymail-1.0-0-dbg +Section: debug +Priority: extra +Architecture: any +Depends: libtinymail-1.0-0 (= ${binary:Version}) +Description: Framework for mobile applications with e-mail -- debug symbols + Tinymail is a library for developing mobile applications with e-mail + functionality. The framework provides components that aid the developer + with the user interface and, of course also with the connectivity and the + caching of messages. + . + It supports local mail storage (Maildir, mh, spool & mbox), IMAP, POP and + NNTP. It can also be used to send messages over SMTP and by using sendmail. + . + This package contains the debugging symbils for all the shared libraries. + --- libtinymail-0.0.9+svn3897.orig/debian/libtinymail-tp-dev.install +++ libtinymail-0.0.9+svn3897/debian/libtinymail-tp-dev.install @@ -0,0 +1,4 @@ +gnome/usr/include/libtinymail-tp-1.0/* usr/include/libtinymail-tp-1.0 +gnome/usr/lib/libtinymail-tp-1.0.so usr/lib +gnome/usr/lib/libtinymail-tp-1.0.a usr/lib +gnome/usr/lib/pkgconfig/libtinymail-tp-1.0.pc usr/lib/pkgconfig --- libtinymail-0.0.9+svn3897.orig/debian/libtinymail-gnome-desktop-1.0-0.install +++ libtinymail-0.0.9+svn3897/debian/libtinymail-gnome-desktop-1.0-0.install @@ -0,0 +1 @@ +gnome/usr/lib/libtinymail-gnome-desktop-1.0.so.* usr/lib --- libtinymail-0.0.9+svn3897.orig/debian/patches/0001-Use-gtkhtml-3.14.patch +++ libtinymail-0.0.9+svn3897/debian/patches/0001-Use-gtkhtml-3.14.patch @@ -0,0 +1,23 @@ +From b8612f00a602371416938858607aa5af6f1fddad Mon Sep 17 00:00:00 2001 +From: Jonny Lamb +Date: Wed, 15 Apr 2009 23:27:47 +0100 +Subject: [PATCH] Use gtkhtml 3.14. + +Signed-off-by: Jonny Lamb +--- + configure.ac | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 68beffa..4cf0661 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -451,7 +451,7 @@ AC_SUBST([MOZILLA_HOME]) + + dnl ### libtinymailui-gtkhtml, a library that wraps the GtkHtml widget ## + if test x$build_gtkhtml = xtrue; then +- extraplatpkgs="libgtkhtml-3.8" ++ extraplatpkgs="libgtkhtml-3.14" + extratnypkgs="$extratnypkgs $extraplatpkgs" + PKG_CHECK_MODULES(LIBTINYMAILUI_GTKHTML, $extraplatpkgs glib-2.0 >= 2.8 gobject-2.0 gtk+-2.0 $extragtkpkgs) + else --- libtinymail-0.0.9+svn3897.orig/debian/patches/series +++ libtinymail-0.0.9+svn3897/debian/patches/series @@ -0,0 +1 @@ +0001-Use-gtkhtml-3.14.patch