--- tellico-1.2.11.orig/debian/rules +++ tellico-1.2.11/debian/rules @@ -0,0 +1,143 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# 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 = -g -Wall +CXXFLAGS = -g -Wall + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 + CXXFLAGS += -O0 +else + CFLAGS += -O2 + CXXFLAGS += -O2 +endif + +apply-patches: + #apply patches first + QUILT_PATCHES="debian/patches" quilt push -a -v + + #regenerate the acinclude file with the "Debian" libtool + cp -a /usr/share/aclocal/libtool.m4 admin/libtool.m4.in + cat admin/acinclude.m4.in admin/libtool.m4.in >acinclude.m4 + + #this will update the config.{sub,guess} and ltmain.sh files + libtoolize -c -f + + # then, autoreconf with some kde magic + autoreconf -v -i + perl -w admin/am_edit + +update-autoconf: + cp -a /usr/share/misc/config.sub admin/ + cp -a /usr/share/misc/config.guess admin/ + +svn-number: + sed -e "s/svn[^-]*-/svn`svn info | \ + grep "^Revision" | \ + sed -e "s/Revision: //"`-/" debian/changelog > new_changelog + mv new_changelog debian/changelog + +config.status: configure + dh_testdir + + # this makes the file more recent than configure and avoid make calling + # autoheader + + # Add here commands to configure the package. + CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \ + kde_htmldir=\$${prefix}/share/doc/kde/HTML \ + ./configure \ + --host=$(DEB_HOST_GNU_TYPE) \ + --build=$(DEB_BUILD_GNU_TYPE) \ + --prefix=/usr \ + --mandir=\$${prefix}/share/man \ + --disable-debug \ + --enable-new-ldflags \ + --enable-final \ + --disable-rpath + + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) distclean + + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/tellico. + $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp + + # Remove dead symlink from French translation + rm debian/tmp/usr/share/doc/kde/HTML/fr/tellico/common + + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_install -i + dh_installchangelogs -i ChangeLog + dh_installdocs -i + dh_link -i + dh_compress -i -Xkde + dh_fixperms -i + dh_installdeb -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs -a ChangeLog + dh_installdocs -a + dh_installexamples + dh_install -a + dh_installmenu + dh_iconcache +# dh_installmime + dh_installman -a debian/tellico.1x + dh_link -a + dh_strip + dh_compress -a + dh_fixperms -a + dh_installdeb -a + dh_shlibdeps -a + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a + +binary: binary-arch binary-indep +.PHONY: build clean binary-indep binary-arch binary install --- tellico-1.2.11.orig/debian/control +++ tellico-1.2.11/debian/control @@ -0,0 +1,48 @@ +Source: tellico +Section: kde +Priority: extra +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Regis Boudin +Build-Depends: debhelper (>> 4.0.0), kdelibs4-dev, libqt3-mt-dev, libxml2-dev, libxslt1-dev, libtag1-dev, libyaz2-dev, kdemultimedia-dev, libkcal2-dev, kdepim-dev +Standards-Version: 3.7.2.2 + +Package: tellico +Architecture: any +Depends: tellico-data (= ${source:Version}), ${shlibs:Depends} +Description: collection manager for books, videos, music + Tellico is a collection manager for KDE. It includes default collections for + books, bibliographies, comic books, videos, music, coins, stamps, trading + cards, and wines, and also allows custom collections; with unlimited + user-defined fields allowed. Automatically formatted names, sorting by any + property, filters, automatic ISBN validation and full customization for + printing or display through XSLT files are some of the features present. It + can import CSV, RIS, BibTeX, and BibTeXML files; and export CSV, HTML, BibTeX, + BibTeXML, and PilotDB. Tellico can also import data from Amazon, IMDb, CDDB, + or any US-MARC compliant z39.50 server. + . + The files are stored in XML format, avoiding the need for database server. + It also makes it easy for other softwares to use the Tellico data. + +Package: tellico-data +Architecture: all +Conflicts: tellico (<< 1.1.6-1) +Replaces: tellico (<< 1.1.6-1) +Depends: kdelibs-data +Recommends: tellico +Suggests: python +Description: collection manager for books, videos, music [data] + Tellico is a collection manager for KDE. It includes default collections for + books, bibliographies, comic books, videos, music, coins, stamps, trading + cards, and wines, and also allows custom collections; with unlimited + user-defined fields allowed. Automatically formatted names, sorting by any + property, filters, automatic ISBN validation and full customization for + printing or display through XSLT files are some of the features present. It + can import CSV, RIS, BibTeX, and BibTeXML files; and export CSV, HTML, BibTeX, + BibTeXML, and PilotDB. Tellico can also import data from Amazon, IMDb, CDDB, + or any US-MARC compliant z39.50 server. + . + The files are stored in XML format, avoiding the need for database server. + It also makes it easy for other softwares to use the Tellico data. + . + This package contains the architecture independent files, such data files and + documentation. --- tellico-1.2.11.orig/debian/changelog +++ tellico-1.2.11/debian/changelog @@ -0,0 +1,419 @@ +tellico (1.2.11-1ubuntu1) gutsy; urgency=low + + * Merge from Debian unstable, remaining Ubuntu changes: + - debian/control: build-dep on kdepim-dev + - debian/control: drop versioned python from tellico-data build-dep + - debian/control: adhere to DebianMaintainerField + - debian/rules: call dh_iconcache + + -- Richard A. Johnson Fri, 11 May 2007 21:17:37 -0500 + +tellico (1.2.11-1) unstable; urgency=low + + * New upstream release (Closes: #402275, #422792). Also add a watch file + provided by Bastian Kleineidam. + + Include updated parsing for IMDb source (Closes: #421650). + * Stop patching to remove unnecessary links, use --enable-new-ldflags + instead, which passes the --as-needed flag at link time. + + -- Regis Boudin Mon, 8 May 2007 10:11:44 +0200 + +tellico (1.2.7-0ubuntu2) feisty; urgency=low + + * tellico-data: Drop the suggestion of the versioned python package. + + -- Matthias Klose Mon, 15 Jan 2007 12:44:36 +0100 + +tellico (1.2.7-0ubuntu1) feisty; urgency=low + + * New upstream release + + -- Anthony Mercatante Thu, 7 Dec 2006 12:12:41 +0100 + +tellico (1.2.6-0ubuntu1) feisty; urgency=low + + * New Upstream Release, remaining changes are: + - debian/control: build-dep on kdepim-dev + - debian/rules: call dh_iconcache + + -- Richard A. Johnson Tue, 21 Nov 2006 02:39:39 -0600 + +tellico (1.2.5-1) unstable; urgency=high + + * "New" upstream release, aimed at Etch. Differences with 1.2.4-1 are : + + Build fix for OOo plugin (disabled in the package anyway), r1206 + + Check if pointer is NULL *before* using it, r1212. + + Some minor build issues + + Use log messages instead of debug + * Also backport a bunch of bugfixes : + + r1216 : fix crashing bug in progressitem. + + r1224 : clear release list when removing an image. + + r1228 : prevent an infinite loop. + + r1245 & r1248 : fix a race condition leading to loss of images. + + r1265 : sometimes images wouldn't show up if the cover column was + visible in the list view. + + r1340 : sometimes z39.50 results would not show up. + + All this makes the package back in good shape for Etch (Closes: #411744). + * Many thanks to Robby Stephenson, the uptream author, for his help picking + the patches for inclusion. + * Only call dh_compress once so help files are not compressed and can be read + (Closes: #401247). + + -- Regis Boudin Tue, 20 Feb 2007 18:27:45 +0000 + +tellico (1.2.4-1) unstable; urgency=low + + * New upstream release. Now works with KDE 3.3.1, so I can provide Sarge + backports again. Thanks Robby for caring about that. (Closes: #396508). + This package actually includes patches from the 1.2.x branch, up top + r1203, which contains several bugfixes. + * Have tellico-data depend on kdelibs-data, so we don't have broken symlinks. + (Closes: #387795). Thanks Lars Wirzenius for pointing at it. + * All the official arch have at least kdepim 3.5.5, drop build-dep on + kdepim-dev. + * Bump Standards-Version to 3.7.2.2 + + -- Regis Boudin Thu, 2 Nov 2006 20:32:48 +0000 + +tellico (1.2.2-1ubuntu2) edgy; urgency=low + + * debian/control: build-dep on kdepim-dev only + + -- Michael Bienia Tue, 19 Sep 2006 01:06:02 +0200 + +tellico (1.2.2-1ubuntu1) edgy; urgency=low + + * Merge from debian unstable. Remaining changes are: + - debian/rules: call dh_iconcache + + -- Michael Bienia Mon, 18 Sep 2006 14:32:07 +0200 + +tellico (1.2.2-1) unstable; urgency=low + + * New upstream release. Skip 1.2 (Closes: #386402) + * Acknowledge NMU and build-depend on libyaz2-dev. Thanks Luk Claes ! + (Closes: #380014) + * Suggest python and python2.4 for the external scripts. + * Drop remove_zlib_link.diff patch. xml2-config and xslt-config + return only the necessary flags now. + * libkcal2-dev now contains libemailfunctions/idmapper.h, so no need to + build-depend on the whole kdepim-dev anymore. Thanks Christopher Martin + for applying the patch. Build-depend on + libkcal2-dev( >= 3.5.4-1) | kdepim-dev, so the package can build with + older versions of kdepim. + + -- Regis Boudin Fri, 8 Sep 2006 08:47:29 +0100 + +tellico (1.1.6-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Update libyaz build dependency to libyaz2-dev (Closes: #380014). + + -- Luk Claes Sat, 29 Jul 2006 16:29:00 +0200 + +tellico (1.1.6-1ubuntu1) edgy; urgency=low + + * Merge from debian unstable. + + -- Gauvain Pocentek Fri, 30 Jun 2006 19:47:57 +0100 + +tellico (1.1.6-1) unstable; urgency=low + + * New upstream release. Bugfixes and translation updates. + * Bump Standards-Version to 3.7.2. No other change. + * debian/copyright : updated to reflect the fact that the source includes + the btparse library. + * Split the package between arch-dependent and arch-independent data. Use + ${souce:Version} to be binNMU-safe + + -- Regis Boudin Mon, 8 May 2006 14:13:35 +0100 + +tellico (1.1.5-1) unstable; urgency=low + + * New upstream release. Should fix the FTBFS on non-Linux ports. + * Build-depend on libkcal2-dev and zlib1g-dev only for backports + + -- Regis Boudin Thu, 20 Apr 2006 16:15:00 +0100 + +tellico (1.1.4-1) unstable; urgency=low + + * New upstream release. + * The "transitions-clean" release. + * After a succesful try with the Amaya package, use quilt for patches + management. Also have a proper apply-patches target in debian/rules + * am_maintainer_mode.diff : use maintainer mode, see previous changelog + entries. + * libtool_for_libyaz.diff : dirty hack using "-lyaz" instead of what + yaz-config returns. This lets libtool deal with linking and removes bogus + dependencies on libssl and libwrap. + * remove_QT_links.diff : more hack to avoid QT forcing us to link against + X libraries and libpng, which we don't use directly. + * remove_zlib_link.diff : same hack as for libyaz with libxml2 and libxslt + to get rid of zlib1g dependency. + + -- Regis Boudin Tue, 4 Apr 2006 19:58:20 +0100 + +tellico (1.1.3-1) unstable; urgency=low + + * New upstream release, bugfixes and translations updates + + -- Regis Boudin Mon, 13 Mar 2006 21:10:22 +0000 + +tellico (1.1.2-1) unstable; urgency=low + + * New upstream release, bugfixes and translations updates + + -- Regis Boudin Mon, 6 Mar 2006 20:23:08 +0000 + +tellico (1.1.1-2) unstable; urgency=low + + * The "pbuider and buildds are not the same" package release + * In addition to relibtoolize, also rerun automake and add + AM_MAINTAINER_MODE + Hopefully, all this should fix the various FTBFS + + -- Regis Boudin Tue, 21 Feb 2006 21:02:08 +0000 + +tellico (1.1.1-1) unstable; urgency=low + + * New upstream release + + Patch removing the rpath merge upstream + + Now set .desktop file to the xdg directory + * No more Debian patches to include, except the relibtoolizing + + -- Regis Boudin Sat, 18 Feb 2006 21:34:16 +0000 + +tellico (1.1-1) unstable; urgency=low + + * New upstream release + + Documentation is now dual-licensed GFDL/FreeBSD Documentation License, + so it can be included in Debian. Many thanks to Robby for that. + + Hungarian translation update (Closes: #346414) + * Depends on libqt3-mt-dev again. We actually use it directly. + * Update files in admin. This removes some useless dependencies, including + libfreetype6. + + -- Regis Boudin Wed, 8 Feb 2006 20:34:50 +0000 + +tellico (1.0.99.1.1pre3-1) unstable; urgency=low + + * New upstream pre-release + + -- Regis Boudin Sat, 28 Jan 2006 20:56:42 +0000 + +tellico (1.0.3+SVNr327-1) unstable; urgency=low + + * New upstream release (Closes: #337634) + + Subversion snapshot to get extra fixes + + Fixes various bugs (including some crashes) + + Update IMDB search + + Include fix from Aurelien Jarno to build on GNU/kFreeBSD (Closes: #336949) + * Remove tight dependency on kdepim-related packages, the C++ ABI transition + is complete for them. Also remove build-dependency on libkcal2-dev, which is + pulled by kdepim-dev + * Upload sponsored by Thibaut VARENE + + -- Regis Boudin Mon, 6 Dec 2005 14:14:47 +0100 + +tellico (1.0-1) unstable; urgency=high + + * New upstream release (Closes: #310893) + +Updated license to add an exception to allow linking against the OpenSSL + library. Thanks to Daffyd for pointing it and Robby for modifing the + license. debian/copyright modified accordingly + +New feature for loans, to use the kde calendar. Added kdepim-dev to + Build-Depends to enable it. + +Builds with gcc-4.0 (Closes: #326645) + +To complete C++ ABI transition, tight dependencies on kdemultimedia-dev + and kdepim (Closes: #326850, #328009) + * Updated FSF adress in debian/copyright + * Replaced references to my old email address in debian/copyright and + debian/tellico.1x + * Due to the license change, set priority to high + * Introduced with 0.13.4 BibTex export with German special characters should + now be correct (Closes: #292165) + * Includes an updated German translation, thanks to Jens Seidel + (Closes: #313839) + * I doubt anyone still uses Bookcase now. Drop the dummy package + (Closes: #321830) + * Bump standard version to 3.6.2 (change in debian/control only) + * Get rid of build-dependency on xlibs-dev as delibs4-dev pulls everything + necessary + * Properly set CXXFLAGS as well as CFLAGS in debian/rules + + -- Regis Boudin Sat, 10 Sep 2005 21:04:37 +0100 + +tellico (0.13.3-1) unstable; urgency=low + + * New upstream release, mainly for a configure problem with FreeBSD + * Include the fix for RIS importer from upstream website + + -- Regis Boudin Tue, 15 Feb 2005 19:22:45 +0000 + +tellico (0.13.2-1) unstable; urgency=low + + * New upstream release + +Adds support for amazon.fr and amazon.ca imports (Closes: #291260) + +Fixes compile errors with gcc-4.0 (Closes: #290467). Thanks to Andreas + Jochens + +Fixed bug with character translations in bibtex export (Closes: #292165) + * updated debian/control file to remove upper-case article at the beginning + of short descriptions + + -- Regis Boudin Sun, 6 Feb 2005 13:35:06 +0000 + +tellico (0.13.1-1) unstable; urgency=low + + * New upstream release. Mainly bugfixes and translation updates. + + -- Regis Boudin Sun, 12 Dec 2004 23:23:20 +0000 + +tellico (0.13-1) unstable; urgency=low + + * New upstream release. + * Use dh_compat 4. Consequently, removed hack to fix absolute link. + * Updated pixmap icon to use the new one. + * Modified fix for rpath problem by patching src/Makefile.in instead of + configure. Removed the now useless "touch config.h.in" trick. + * Updated package description. Thanks to Matthieu Delehaye. + * Updated build dependencies. Removed libapanoia0-dev, added libyaz-dev. + + -- Regis Boudin Thu, 2 Dec 2004 18:41:54 +0000 + +tellico (0.12-1) unstable; urgency=medium + + * New upstream release and new package. This is in fact Bookcase 0.11 + rebranded as Tellico because of a trademark issue. + * For smooth transition, provide an empty bookcase package depending on + tellico. + * Build depend on kdemultimedia-dev (>> 4:3.2.2-1). This specific version of + the package has a bug which prevent tellico from building. + * Bookcase 0.11 has been in sid for ~10 days, so it is already tested. Set + the priority to medium to increase the chances of getting this package in + Sarge if KDE 3.3 is accepted. + * Move tellico.desktop to /usr/share/applications instead of + /usr/share/applnk/Applications to comply with freedesktop.org standards. + + -- Regis Boudin Wed, 22 Sep 2004 19:08:40 +0100 + +bookcase (0.11-1) unstable; urgency=low + + * New upstream release (Closes: #269903) + -Ability to import Audio CD data from Alexandria + -Ability to import Audio files metadata + * To enable previously listed new features, updated Build-Depends : + -Added kdemultidmedia-dev + -Added libcdparanoia0-dev + -Added libtag1-dev + * Previous release (0.10) fixed bug when building with gcc-3.4 + (Closes: #258542) + * debian/bookcase.xpm: only use 24 colors, lintian complained about it. + * touch config.h.in at the beginning of debian/rules. It updates the + date of the file and prevent Makefile from calling autoheader because + configure was patched. + + -- Regis Boudin Sun, 5 Sep 2004 00:23:30 +0100 + +bookcase (0.9.3-1) unstable; urgency=high + + * New upstream release. It solves a license issue, priority set to high. + (Closes: #252740) + * New maintainer mail address + * Do not gzip docbook files for khelpcenter (Closes: #248983) + * Remove useless mention of info file from manpage (thanks to Matthieu + Delahaye) + + -- Regis Boudin Thu, 3 Jun 2004 23:35:01 +0100 + +bookcase (0.9.1-1) unstable; urgency=low + + * New upstream release (Closes: #213896, #21498) + + -- Regis Boudin Wed, 5 May 2004 20:40:40 +0100 + +bookcase (0.8.5-1) unstable; urgency=low + + * New upstream release (Closes: #236020) + + -- Regis Boudin Thu, 11 Mar 2004 10:20:47 +0000 + +bookcase (0.8.4-1) unstable; urgency=low + + * Thanks to Matthieu Delahaye for sponsoring this package + * New upstream release (Closes: #230380, #213901, #213898, #211183) + * Description update (Closes: #213327) + + -- Regis Boudin Sun, 22 Feb 2004 20:18:17 +0000 + +bookcase (0.8.3-1) unstable; urgency=low + + * New upstream release + + -- Regis Boudin Fri, 6 Feb 2004 10:19:37 +0000 + +bookcase (0.8-1) unstable; urgency=low + + * New upstream release + + -- Regis Boudin Thu, 29 Jan 2004 21:40:57 +0000 + +bookcase (0.7.2-1) unstable; urgency=low + + * New upstream release + * Packaging corrections thanks to Joerg + * Copyright file update + + -- Regis Boudin Wed, 26 Nov 2003 20:52:10 +0000 + +bookcase (0.6.6-3) unstable; urgency=low + + * Correct dependencies (Closes: #211162, #211173) + * Many thanks to Antonin Kral for sponsoring the package + + -- Regis Boudin Tue, 16 Sep 2003 11:23:45 +0100 + +bookcase (0.6.6-2) unstable; urgency=low + + * New manpage + * Fix rpath compilation + * Fix typo errors + + -- Regis Boudin Tue, 2 Sep 2003 13:39:27 +0100 + +bookcase (0.6.6-1) unstable; urgency=low + + * New upstream release + + -- Regis Boudin Mon, 18 Aug 2003 11:13:37 +0100 + +bookcase (0.6.5-1) unstable; urgency=low + + * New upstream release + + -- Regis Boudin Tue, 22 Jul 2003 09:23:09 +0100 + +bookcase (0.6.4-2) unstable; urgency=low + + * Fix translation problem + + -- Regis Boudin Thu, 3 Jul 2003 22:32:16 +0100 + +bookcase (0.6.4-1) unstable; urgency=low + + * New upstream release + + -- Regis Boudin Thu, 26 Jun 2003 14:39:59 +0100 + +bookcase (0.6.3-1) unstable; urgency=low + + * Include patch for KDE 3.0 + * New upstream release + + -- Regis Boudin Sat, 31 May 2003 22:54:00 +0100 + +bookcase (0.6.2-1) unstable; urgency=low + + * Initial Release. + + -- Regis Boudin Mon, 12 May 2003 22:50:38 +0100 + --- tellico-1.2.11.orig/debian/tellico.install +++ tellico-1.2.11/debian/tellico.install @@ -0,0 +1,2 @@ +debian/tmp/usr/bin/* +debian/tellico.xpm usr/share/pixmaps/ --- tellico-1.2.11.orig/debian/menu +++ tellico-1.2.11/debian/menu @@ -0,0 +1,5 @@ +?package(tellico):needs="X11"\ + section="Apps/Tools"\ + title="Tellico"\ + icon="/usr/share/pixmaps/tellico.xpm"\ + command="/usr/bin/tellico" --- tellico-1.2.11.orig/debian/tellico.1x +++ tellico-1.2.11/debian/tellico.1x @@ -0,0 +1,49 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH TELLICO 1x "September 2, 2003" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +tellico \- application for keeping track of your books +.SH SYNOPSIS +.B tellico +.RI [ options ] [ filename ] +.br +.SH DESCRIPTION +This manual page documents briefly the +.B tellico +command. +This manual page was written for the Debian distribution +because the original program does not have a manual page. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBtellico\fP is an application designed to help you keeping track of your +books. Instead of using a SQL backend, the data is saved in XML format, which +makes it easy to parse. +.SH OPTIONS +This program follows the usual GNU command line syntax, with long +options starting with two dashes (`-'). +A summary of options is included below. +.TP +.B \-\-help +Show summary of options. +.TP +.B \-v, \-\-version +Show version of program. +.SH AUTHOR +This manual page was written by Regis Boudin , +for the Debian project (but may be used by others). --- tellico-1.2.11.orig/debian/copyright +++ tellico-1.2.11/debian/copyright @@ -0,0 +1,60 @@ +This package was debianized by Regis Boudin on +Mon, 12 May 2003 22:50:38 +0100. + +It was downloaded from http://www.periapsis.org/tellico + +Upstream Author: Robby Stephenson + +Copyright: 2001-2006 by Robby Stephenson + + 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; version 2 dated June, 1991. + + 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 Street, Fifth Floor, Boston, MA + 02111-1301, USA. + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +---------------------------------------------------------------------------- + +In addition, as a special exception, the author gives permission to +link the code of this program with the OpenSSL library released by +the OpenSSL Project (or with modified versions of OpenSSL that use +the same license as OpenSSL), and distribute linked combinations +including the two. You must obey the GNU General Public License in +all respects for all of the code used other than OpenSSL. If you +modify this software, you may extend this exception to your version of, +but you are not obligated to do so. If you do not wish to do so, +delete this exception statement from your version. + +---------------------------------------------------------------------------- + +The src/translators/btparse directory contains a minimal version of the +btparse library, copyright 1999 by Greg Ward, which can be found at +http://www.gerg.ca/software/btOOL/ +Version 0.33 of the btparse library was imported into the Bookcase +source code tree in October 2003. The following changes have been +made: + +- All non-source code files were removed. +- The c++ reserved word 'class' was changed to 'errclass'. +- The files bt_config.h and my_dmalloc.h were removed, along with all + references to them. Some of the definitions in bt_config.h were + moved to btparse.h. +- Some included files were changed in ast.c. + +The btparse source code was originally licensed under the terms of +the GNU Lesser General Public License (LGPL). Persuant to clause 3 of +the LGPL, this static version of btparse is being redistributed within +a software application under the terms of the GNU General Public +License (GPL). + --- tellico-1.2.11.orig/debian/tellico-data.install +++ tellico-1.2.11/debian/tellico-data.install @@ -0,0 +1 @@ +debian/tmp/usr/share/* --- tellico-1.2.11.orig/debian/watch +++ tellico-1.2.11/debian/watch @@ -0,0 +1,3 @@ +# watch control file for uscan +version=3 +http://periapsis.org/tellico/download/tellico-(.*).tar.gz --- tellico-1.2.11.orig/debian/compat +++ tellico-1.2.11/debian/compat @@ -0,0 +1 @@ +4 --- tellico-1.2.11.orig/debian/tellico.xpm +++ tellico-1.2.11/debian/tellico.xpm @@ -0,0 +1,62 @@ +/* XPM */ +static char *tellico[] = { +/* columns rows colors chars-per-pixel */ +"32 32 24 1", +" c #000404", +". c #062625", +"X c #01354A", +"o c #165536", +"O c #1C6056", +"+ c #5E0507", +"@ c #52545F", +"# c #1E5F9D", +"$ c #2B7ACF", +"% c #57B35E", +"& c #288FF2", +"* c #3486D1", +"= c #67ADB3", +"- c #A12223", +"; c #FD7070", +": c #E35555", +"> c #B84A4A", +", c #90F592", +"< c #FA8B8C", +"1 c #DC9F9F", +"2 c #FEFEFE", +"3 c #D6D8D4", +"4 c #ABB5B7", +"5 c None", +/* pixels */ +"55555555555555555555555555555555", +"55555555555555555++5555555555555", +"55555555555555+++:>+++5555555555", +"55555555555+++><<;;<<>+++5555555", +"55555555+++><<<<<;;;;;;;>+++5555", +"55555+++>1<<<<;;;<;;;;:;:;;>+++5", +"5555 +>1<<<<<<<;;;;;;;:;;;;:;>+ ", +"5555+-:>><<<<;<;<;;;:;;::;;>>>+ ", +"5555+>;;:--:;<;<;;;;;;;::><22> ", +"5555+:<;;;;:>-><<;;:::><222221 ", +"5555+><<<<;;;::->>::;32222222>+5", +"55XXX-;;<<<<<;;;:-322222222221+ ", +"XX*==-::;;;<<<<<;>22222222231-+ ", +"XO##*&@+->::;<;<<>2222222;>++ ", +"X#&&$##*#@--::;;<>2223<--++ 5", +"X&&&&&$$##*#@+-:;-21>-+@4@ 5555", +"X$&&&&&&&$###$#.+--+@1432@ 55555", +"X#&&&&&&&&&&$#32214432222=. 5555", +"XX$&&&&&&&&&�#X.. 55", +"5XXX#&$&&&&&&422222224=OXo@%O. 5", +"555.XXO$$$&&&=22223*#Xooo%%=O. 5", +"555X,,%OX##$=#ooo@o%%322% 5", +"555.,,,,%%OXO##OXo%%%%322222@ 55", +"555.%,,,,,,,%Ooo%O%322222222@ 55", +"555.%,,,,,,,,,,%O22222222222%. 5", +"555.o%%,,,,,,,,%%2222222224%X. 5", +"5555..oO%,,,,,,,3222222,%oX.. 5", +"555555 ..oO%,,,,=2223%O... 55", +"555555555 ..oO%,%3%Oo.. 55555", +"555555555555 ..ooXo. 55555555", +"555555555555555.. 55555555555", +"55555555555555555555555555555555" +};