diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-04-03 22:56:40 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-04-03 22:56:40 +0900 |
commit | 11394aecd1f906fee2ebd2b90412aeba4651fbff (patch) | |
tree | bcf750380e6d9fc7dbe524e16bbe2afde25dcfa0 /ubuntu/_base/applications/tellico | |
parent | d24bd898174453b586ac90f2ef7a60165fa26fde (diff) | |
download | tde-packaging-11394aecd1f906fee2ebd2b90412aeba4651fbff.tar.gz tde-packaging-11394aecd1f906fee2ebd2b90412aeba4651fbff.zip |
DEB: use _base folder for a distro instead of specific distros (squeeze
and maverick).
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ubuntu/_base/applications/tellico')
18 files changed, 1056 insertions, 0 deletions
diff --git a/ubuntu/_base/applications/tellico/debian/cdbs/debian-qt-kde.mk b/ubuntu/_base/applications/tellico/debian/cdbs/debian-qt-kde.mk new file mode 100644 index 000000000..60310a01a --- /dev/null +++ b/ubuntu/_base/applications/tellico/debian/cdbs/debian-qt-kde.mk @@ -0,0 +1,119 @@ +ifndef _cdbs_bootstrap +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class +endif + +ifndef _cdbs_class_debian-qt-kde +_cdbs_class_debian-qt-kde := 1 + +# Note: This _must_ be included before autotools.mk, or it won't work. +common-configure-arch common-configure-indep:: debian/stamp-cvs-make +debian/stamp-cvs-make: +ifndef _cdbs_class_cmake + cp -Rp /usr/share/aclocal/libtool.m4 admin/libtool.m4.in +ifneq "$(wildcard /usr/share/libtool/config/ltmain.sh)" "" + cp -Rp /usr/share/libtool/config/ltmain.sh admin/ltmain.sh +endif +ifneq "$(wildcard /usr/share/libtool/build-aux/ltmain.sh)" "" + cp -Rp /usr/share/libtool/build-aux/ltmain.sh admin/ltmain.sh +endif + $(MAKE) -C $(DEB_SRCDIR) -f admin/Makefile.common dist; +endif + touch debian/stamp-cvs-make + +include debian/cdbs/kde.mk$(_cdbs_makefile_suffix) + +ifndef _cdbs_rules_patchsys_quilt +DEB_PATCHDIRS := debian/patches/common debian/patches +endif + +DEB_KDE_ENABLE_FINAL := yes +DEB_INSTALL_DOCS_ALL := + +DEB_DH_MAKESHLIBS_ARGS_ALL := -V +DEB_SHLIBDEPS_INCLUDE = $(foreach p,$(PACKAGES_WITH_LIBS),debian/$(p)/usr/lib) + +ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + cdbs_treat_me_gently_arches := arm m68k alpha ppc64 armel armeb + ifeq (,$(filter $(DEB_HOST_ARCH_CPU),$(cdbs_treat_me_gently_arches))) + cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) + else + cdbs_kde_enable_final = + endif +endif + +common-build-arch:: debian/stamp-man-pages +debian/stamp-man-pages: + if ! test -d debian/man/out; then mkdir -p debian/man/out; fi + for f in $$(find debian/man -name '*.sgml'); do \ + docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \ + done + for f in $$(find debian/man -name '*.man'); do \ + soelim -I debian/man $$f \ + > debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \ + done + touch debian/stamp-man-pages + +common-binary-indep:: + ( set -e; \ + tmpf=`mktemp debian/versions.XXXXXX`; \ + perl debian/cdbs/versions.pl >$$tmpf; \ + for p in $(DEB_INDEP_PACKAGES); do \ + cat $$tmpf >>debian/$$p.substvars; \ + done; \ + rm -f $$tmpf ) + +common-binary-arch:: + ( set -e; \ + tmpf=`mktemp debian/versions.XXXXXX`; \ + perl debian/cdbs/versions.pl >$$tmpf; \ + for p in $(DEB_ARCH_PACKAGES); do \ + cat $$tmpf >>debian/$$p.substvars; \ + done; \ + rm -f $$tmpf ) + +clean:: + rm -rf debian/man/out + -rmdir debian/man + rm -f debian/stamp-man-pages + rm -rf debian/shlibs-check + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_desktop; then dh_desktop -p$(cdbs_curpkg) $(DEB_DH_DESKTOP_ARGS); fi + if test -e debian/$(cdbs_curpkg).lintian; then \ + install -p -D -m644 debian/$(cdbs_curpkg).lintian \ + debian/$(cdbs_curpkg)/usr/share/lintian/overrides/$(cdbs_curpkg); \ + fi + if test -e debian/$(cdbs_curpkg).presubj; then \ + install -p -D -m644 debian/$(cdbs_curpkg).presubj \ + debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/presubj; \ + fi + +binary-install/$(DEB_SOURCE_PACKAGE)-doc-html:: + set -e; \ + for doc in `cd $(DEB_DESTDIR)/opt/trinity/share/doc/tde/HTML/en; find . -name index.docbook`; do \ + pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \ + echo Building $$pkg HTML docs...; \ + mkdir -p $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/tde/HTML/en/$$pkg; \ + cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/tde/HTML/en/$$pkg; \ + /opt/trinity/bin/meinproc $(DEB_DESTDIR)/opt/trinity/share/doc/tde/HTML/en/$$pkg/index.docbook; \ + done + for pkg in $(DOC_HTML_PRUNE) ; do \ + rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/tde/HTML/en/$$pkg; \ + done + +clean:: +ifndef _cdbs_class_cmake + if test -n "$(DEB_KDE_CVS_MAKE)" && test -d $(DEB_SRCDIR); then \ + cd $(DEB_SRCDIR); \ + find . -name Makefile.in -print | \ + xargs --no-run-if-empty rm -f; \ + rm -f Makefile.am acinclude.m4 aclocal.m4 config.h.in \ + configure configure.files configure.in stamp-h.in \ + subdirs; \ + fi +endif + rm -f debian/stamp-cvs-make + +endif diff --git a/ubuntu/_base/applications/tellico/debian/cdbs/kde.mk b/ubuntu/_base/applications/tellico/debian/cdbs/kde.mk new file mode 100644 index 000000000..80176d63e --- /dev/null +++ b/ubuntu/_base/applications/tellico/debian/cdbs/kde.mk @@ -0,0 +1,91 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2003 Christopher L Cheney <ccheney@debian.org> +# Description: A class for KDE packages; sets KDE environment variables, etc +# +# 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. +# +# 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., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_class_kde +_cdbs_class_kde := 1 + +# for dh_icons +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.7ubuntu4) + +include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix) + +ifdef _cdbs_tarball_dir +DEB_BUILDDIR = $(_cdbs_tarball_dir)/obj-$(DEB_BUILD_GNU_TYPE) +else +DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE) +endif + +ifndef _cdbs_class_cmake +include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix) +endif + +export kde_cgidir = \$${libdir}/cgi-bin +export kde_confdir = \$${sysconfdir}/trinity +export kde_htmldir = \$${datadir}/doc/tde/HTML + +ifeq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) +endif + +ifneq (,$(filter nostrip,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_final = + cdbs_kde_enable_debug = --enable-debug=yes +else + cdbs_kde_enable_debug = --disable-debug +endif + +ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_debug = --enable-debug=full +endif + +cdbs_configure_flags += --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) + +DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin +DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include" +DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_icons; then dh_icons -p$(cdbs_curpkg) $(DEB_DH_ICONCACHE_ARGS); fi + +cleanbuilddir:: + -$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR)) + +common-build-arch common-build-indep:: debian/stamp-kde-apidox +debian/stamp-kde-apidox: + $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) + touch $@ + +common-install-arch common-install-indep:: common-install-kde-apidox +common-install-kde-apidox:: + $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR)) + +clean:: + rm -f debian/stamp-kde-apidox + +# This is a convenience target for calling manually. It's not part of +# the build process. +buildprep: clean apply-patches + $(MAKE) -f admin/Makefile.common dist + debian/rules clean + +endif diff --git a/ubuntu/_base/applications/tellico/debian/cdbs/versions.pl b/ubuntu/_base/applications/tellico/debian/cdbs/versions.pl new file mode 100644 index 000000000..1b110f7af --- /dev/null +++ b/ubuntu/_base/applications/tellico/debian/cdbs/versions.pl @@ -0,0 +1,19 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`; +my ($version3, $version3_next); +my ($version2, $version2_next); + +($version3 = $version) =~ s/^(([^.]+\.){2}[^.+~-]+)[.+~-]?[^-]*-[^-]+$/$1/; +($version2 = $version3) =~ s/\.[^.]+$//; + +($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e; +($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e; + +print "TDE-Version3=$version3\n"; +print "TDE-Version2=$version2\n"; +print "TDE-Next-Version3=$version3_next\n"; +print "TDE-Next-Version2=$version2_next\n"; diff --git a/ubuntu/_base/applications/tellico/debian/changelog b/ubuntu/_base/applications/tellico/debian/changelog new file mode 100644 index 000000000..3739f1ebb --- /dev/null +++ b/ubuntu/_base/applications/tellico/debian/changelog @@ -0,0 +1,475 @@ +tellico-trinity (1.3.2.1-1ubuntu4) karmic; urgency=low + + * Karmic rebuild + + -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 02 Jul 2009 16:08:00 -0600 + +tellico-trinity (1.3.2.1-1ubuntu3) intrepid; urgency=low + + * Moved Trinity to /opt/trinity + * Integrated properly with KDE4.2+ + + -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Wed, 05 March 2009 01:11:00 -0600 + +tellico-trinity (1.3.2.1-1ubuntu1) intrepid; urgency=low + + * Added -trinity suffix + + -- Timothy Pearson <kb9vqf@pearsoncomputing.net> Sun, 08 Feb 2009 12:39:00 -0600 + +tellico (1.3.2.1-1ubuntu1) intrepid; urgency=low + + [ Fabrice Coutadeur ] + * debian/control: Building without tdemultimedia-dev and libkcal2-dev + * debian/rules: delete libtool and config.log files in the cleaning part + * Close LP: #264168 + + [ Sarah Hobbs ] + * Drop khelpcenter recommends, as it no longer exists in intrepid + + -- Sarah Hobbs <hobbsee@ubuntu.com> Sat, 27 Sep 2008 23:52:00 +1000 + +tellico (1.3.2.1-1) unstable; urgency=low + + * New upstream release, fixing some translations. + * Bump Strandard version to 3.8.0. + + -- Regis Boudin <regis@debian.org> Sat, 14 Jun 2008 08:32:30 +0100 + +tellico (1.3.2-1) unstable; urgency=low + + * New upstream release. + * Recommend khelpcenter for acces to the help (Closes: #478975). + + -- Regis Boudin <regis@debian.org> Fri, 23 May 2008 21:28:59 +0100 + +tellico (1.3.1-2) unstable; urgency=low + + * Move the import scripts to a separate package, tellico-scripts, which can + be updated through debian-volatile (Closes: #457949). + * Build-depend on libyaz3-dev instead of libyaz2-dev, to use the new yaz. + * Stop suggesting python2.4, and make the guilty script use straight python + (Closes: #472741). + + -- Regis Boudin <regis@debian.org> Mon, 21 Apr 2008 10:38:57 +0100 + +tellico (1.3.1-1) unstable; urgency=low + + * New upstream release. + * Now that dh_icons is a complete feature, call it (Closes: #464590) + * Re-generate the manpage, to make lintian happy. Plus, it was outdated. + + -- Regis Boudin <regis@debian.org> Sat, 15 Mar 2008 16:55:42 +0000 + +tellico (1.3-1) unstable; urgency=low + + * New complete upstream release, going to unstable this time. Only includes + minor code changes and documentation update since the pre3 release. + * Enable new barcore reading through webcam with --enable-webcam. + + -- Regis Boudin <regis@debian.org> Wed, 30 Jan 2008 14:17:07 +0000 + +tellico (1.3~pre3-1) experimental; urgency=low + + * New upstream pre-release, upload to experimental. This release is brand + new and might break things. Back up you data ! + + Includes support for pdf files. Add libpoppler-qt-dev and libexempi-dev + to build-depends to enable it. + * Add svg icons to the xdg mimetypes. Remove hack to rename mimetypes icons, + The change is now included upstream. + * Suggest ruby for more import scripts. + * Call dh_installmime specifically for tellico-data to call + update-mime-database in postinst and postrm. + * Call dh_desktop in the tellico binary package to update the desktop + database. + + -- Regis Boudin <regis@debian.org> Sun, 13 Jan 2008 18:16:45 +0000 + +tellico (1.2.14-1) unstable; urgency=low + + * New upstream release. Mainly bugfixes and translation updates. Includes + an updated German translation (Closes: #425968, #445879). + * Check for the existence of Makefile before calling distclean. + * Build-depend on debhelper (>> 5.0.0). + * Switch to the new Debian menu hierarchy, move to Applications/Office. + * Move tellico.desktop to the tellico package, so it can find the program. + * Add a sharedmimeinfo file to tellico-data for the application/x-tellico + mimetype. + * Rename the mimetype icons to application-x-tellico so Gnome can use them. + * Use the new Homepage and Vcs-Svn fields. + * Bump Standards-Version to 3.7.3.0. + * Apply some minor modifications to tellico.desktop to comply with the + freedesktop specs. + + -- Regis Boudin <regis@debian.org> Sun, 23 Sep 2007 11:06:54 +0100 + +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 <regis@boudin.name> Mon, 8 May 2007 10:11:44 +0200 + +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 <regis@boudin.name> 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 tdelibs-data, so we don't have broken symlinks. + (Closes: #387795). Thanks Lars Wirzenius for pointing at it. + * All the official arch have at least tdepim 3.5.5, drop build-dep on + tdepim-dev. + * Bump Standards-Version to 3.7.2.2 + + -- Regis Boudin <regis@boudin.name> Thu, 2 Nov 2006 20:32:48 +0000 + +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 tdepim-dev anymore. Thanks Christopher Martin + for applying the patch. Build-depend on + libkcal2-dev( >= 3.5.4-1) | tdepim-dev, so the package can build with + older versions of tdepim. + + -- Regis Boudin <regis@boudin.name> 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 <luk@debian.org> Sat, 29 Jul 2006 16:29:00 +0200 + +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 <regis@boudin.name> 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 <regis@boudin.name> 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 <regis@boudin.name> 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 <regis@boudin.name> 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 <regis@boudin.name> 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 <regis@boudin.name> 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 <regis@boudin.name> 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 <regis@boudin.name> Wed, 8 Feb 2006 20:34:50 +0000 + +tellico (1.0.99.1.1pre3-1) unstable; urgency=low + + * New upstream pre-release + + -- Regis Boudin <regis@boudin.name> 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 tdepim-related packages, the C++ ABI transition + is complete for them. Also remove build-dependency on libkcal2-dev, which is + pulled by tdepim-dev + * Upload sponsored by Thibaut VARENE <varenet@debian.org> + + -- Regis Boudin <regis@boudin.name> 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 tdepim-dev to + Build-Depends to enable it. + +Builds with gcc-4.0 (Closes: #326645) + +To complete C++ ABI transition, tight dependencies on tdemultimedia-dev + and tdepim (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 <regis@boudin.name> 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 <regis@boudin.name> 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 <regis@boudin.name> 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 <regis@boudin.name> 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 <regis@boudin.name> 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 tdemultimedia-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 <regis@boudin.name> 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 <regis@boudin.name> 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 <regis@boudin.name> Thu, 3 Jun 2004 23:35:01 +0100 + +bookcase (0.9.1-1) unstable; urgency=low + + * New upstream release (Closes: #213896, #21498) + + -- Regis Boudin <boudinr@esiee.fr> Wed, 5 May 2004 20:40:40 +0100 + +bookcase (0.8.5-1) unstable; urgency=low + + * New upstream release (Closes: #236020) + + -- Regis Boudin <boudinr@esiee.fr> 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 <boudinr@esiee.fr> Sun, 22 Feb 2004 20:18:17 +0000 + +bookcase (0.8.3-1) unstable; urgency=low + + * New upstream release + + -- Regis Boudin <boudinr@esiee.fr> Fri, 6 Feb 2004 10:19:37 +0000 + +bookcase (0.8-1) unstable; urgency=low + + * New upstream release + + -- Regis Boudin <boudinr@esiee.fr> 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 <boudinr@esiee.fr> 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 <boudinr@esiee.fr> 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 <boudinr@esiee.fr> Tue, 2 Sep 2003 13:39:27 +0100 + +bookcase (0.6.6-1) unstable; urgency=low + + * New upstream release + + -- Regis Boudin <boudinr@esiee.fr> Mon, 18 Aug 2003 11:13:37 +0100 + +bookcase (0.6.5-1) unstable; urgency=low + + * New upstream release + + -- Regis Boudin <boudinr@esiee.fr> Tue, 22 Jul 2003 09:23:09 +0100 + +bookcase (0.6.4-2) unstable; urgency=low + + * Fix translation problem + + -- Regis Boudin <boudinr@esiee.fr> Thu, 3 Jul 2003 22:32:16 +0100 + +bookcase (0.6.4-1) unstable; urgency=low + + * New upstream release + + -- Regis Boudin <boudinr@esiee.fr> 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 <boudinr@esiee.fr> Sat, 31 May 2003 22:54:00 +0100 + +bookcase (0.6.2-1) unstable; urgency=low + + * Initial Release. + + -- Regis Boudin <boudinr@esiee.fr> Mon, 12 May 2003 22:50:38 +0100 + diff --git a/ubuntu/_base/applications/tellico/debian/compat b/ubuntu/_base/applications/tellico/debian/compat new file mode 100644 index 000000000..7f8f011eb --- /dev/null +++ b/ubuntu/_base/applications/tellico/debian/compat @@ -0,0 +1 @@ +7 diff --git a/ubuntu/_base/applications/tellico/debian/control b/ubuntu/_base/applications/tellico/debian/control new file mode 100644 index 000000000..fc3c025bc --- /dev/null +++ b/ubuntu/_base/applications/tellico/debian/control @@ -0,0 +1,79 @@ +Source: tellico-trinity +Section: tde +Priority: optional +Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net> +XSBC-Original-Maintainer: Regis Boudin <regis@debian.org> +Build-Depends: cdbs, debhelper (>= 7.0.50~), cmake, + tdelibs14-trinity-dev, tdemultimedia-trinity-dev, libtdepim1-trinity-dev, + libxml2-dev, libxslt1-dev, libtag1-dev, libyaz-dev, + libpoppler-tqt-dev, libexempi-dev, libbtparse-dev, libv4l-dev, + automake, autoconf, libtool, libltdl-dev +Standards-Version: 3.8.4 +Homepage: http://periapsis.org/tellico/ + +Package: tellico-trinity +Architecture: any +Depends: tellico-data-trinity (= ${source:Version}), tellico-scripts-trinity, ${shlibs:Depends} +Replaces: tellico-kde3 (<< 4:14.0.0~), tellico-trinity (<< 4:14.0.0~) +Breaks: tellico-kde3 (<< 4:14.0.0~), tellico-trinity (<< 4:14.0.0~) +Description: collection manager for books, videos, music [Trinity] + Tellico is a collection manager for TDE. 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-trinity +Architecture: all +Depends: tdelibs-data-trinity +Replaces: tellico-data-kde3 (<< 4:14.0.0~), tellico-data-trinity (<< 4:14.0.0~) +Breaks: tellico-data-kde3 (<< 4:14.0.0~), tellico-data-trinity (<< 4:14.0.0~) +Recommends: tellico-trinity +Suggests: python +Description: collection manager for books, videos, music [data] [Trinity] + Tellico is a collection manager for TDE. 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. + +Package: tellico-scripts-trinity +Architecture: all +Recommends: tellico-trinity +Replaces: tellico-scripts-kde3 (<< 4:14.0.0~), tellico-scripts-trinity (<< 4:14.0.0~) +Breaks: tellico-scripts-kde3 (<< 4:14.0.0~), tellico-scripts-trinity (<< 4:14.0.0~) +Suggests: python, ruby +Description: collection manager for books, videos, music [scripts] [Trinity] + Tellico is a collection manager for TDE. 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 scripts to import data from external sources, such + as websites. As the format of the data may change, these scripts are provided + as a separate package which can be updated through debian-volatile. diff --git a/ubuntu/_base/applications/tellico/debian/copyright b/ubuntu/_base/applications/tellico/debian/copyright new file mode 100644 index 000000000..69496b35c --- /dev/null +++ b/ubuntu/_base/applications/tellico/debian/copyright @@ -0,0 +1,60 @@ +This package was debianized by Regis Boudin <regis@boudin.name> on +Mon, 12 May 2003 22:50:38 +0100. + +It was downloaded from http://www.periapsis.org/tellico + +Upstream Author: Robby Stephenson <robby@periapsis.org> + +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). + diff --git a/ubuntu/_base/applications/tellico/debian/menu b/ubuntu/_base/applications/tellico/debian/menu new file mode 100644 index 000000000..f0572cf58 --- /dev/null +++ b/ubuntu/_base/applications/tellico/debian/menu @@ -0,0 +1,5 @@ +?package(tellico-trinity):needs="X11"\ + section="Applications/Office"\ + title="Tellico"\ + icon="/opt/trinity/share/pixmaps/tellico.xpm"\ + command="/opt/trinity/bin/tellico" diff --git a/ubuntu/_base/applications/tellico/debian/rules b/ubuntu/_base/applications/tellico/debian/rules new file mode 100755 index 000000000..3e267ae9b --- /dev/null +++ b/ubuntu/_base/applications/tellico/debian/rules @@ -0,0 +1,48 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/cmake.mk +include debian/cdbs/debian-qt-kde.mk +#include /usr/share/cdbs/1/rules/patchsys-quilt.mk + +DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include +DEB_CONFIGURE_MANDIR := /opt/trinity/share/man +DEB_CONFIGURE_PREFIX := /opt/trinity +DEB_CONFIGURE_INFODIR := /opt/trinity/share/info + +cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) \ + --enable-new-ldflags \ + --enable-webcam + +DEB_CMAKE_EXTRA_FLAGS := \ + -DCMAKE_INSTALL_PREFIX="/opt/trinity" \ + -DCONFIG_INSTALL_DIR="/etc/trinity" \ + -DSYSCONF_INSTALL_DIR="/etc/trinity" \ + -DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo \ + -DCMAKE_VERBOSE_MAKEFILE="ON" \ + -DCMAKE_SKIP_RPATH="OFF" \ + -DWITH_ALL_OPTIONS="ON" + +DEB_MAKE_CHECK_TARGET = check + +DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \ + && echo xz || echo bzip2) + +binary-install/tellico-data-trinity:: + # Add svg icons to xdg directories + admin/mkinstalldirs debian/$(cdbs_curpkg)/opt/trinity/share/icons/hicolor/scalable/apps + install -c -p -m 644 -T icons/tellico.svg debian/$(cdbs_curpkg)/opt/trinity/share/icons/hicolor/scalable/apps/tellico.svg + admin/mkinstalldirs debian/$(cdbs_curpkg)/opt/trinity/share/icons/hicolor/scalable/mimetypes + install -c -p -m 644 -T icons/tellico_mime.svg debian/$(cdbs_curpkg)/opt/trinity/share/icons/hicolor/scalable/mimetypes/application-x-tellico.svg + + # Install mime info into system directory + mkdir -p debian/$(cdbs_curpkg)/usr/share/mime + [ ! -d debian/tmp/opt/trinity/share/apps/mime ] || \ + mv debian/tmp/opt/trinity/share/apps/mime debian/$(cdbs_curpkg)/usr/share/ + [ ! -d debian/tmp/opt/trinity/share/mime ] || \ + mv debian/tmp/opt/trinity/share/mime debian/$(cdbs_curpkg)/usr/share/ + mv debian/$(cdbs_curpkg)/usr/share/mime/packages/tellico.xml debian/$(cdbs_curpkg)/usr/share/mime/packages/tellico-trinity.xml + +binary-install/tellico-trinity:: + mv debian/$(cdbs_curpkg)/usr/share/man debian/$(cdbs_curpkg)/opt/trinity/share/ diff --git a/ubuntu/_base/applications/tellico/debian/source/format b/ubuntu/_base/applications/tellico/debian/source/format new file mode 100644 index 000000000..163aaf8d8 --- /dev/null +++ b/ubuntu/_base/applications/tellico/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/ubuntu/_base/applications/tellico/debian/source/options b/ubuntu/_base/applications/tellico/debian/source/options new file mode 100644 index 000000000..72f1f5450 --- /dev/null +++ b/ubuntu/_base/applications/tellico/debian/source/options @@ -0,0 +1,6 @@ +# Use xz instead of gzip +compression = "xz" +compression-level = 9 + +# Don't run differences +diff-ignore = .* diff --git a/ubuntu/_base/applications/tellico/debian/tellico-data-trinity.install b/ubuntu/_base/applications/tellico/debian/tellico-data-trinity.install new file mode 100644 index 000000000..71150d6de --- /dev/null +++ b/ubuntu/_base/applications/tellico/debian/tellico-data-trinity.install @@ -0,0 +1,17 @@ +debian/tmp/opt/trinity/share/apps/tellico/*.xsl +debian/tmp/opt/trinity/share/apps/tellico/*.xml +debian/tmp/opt/trinity/share/apps/tellico/*.png +debian/tmp/opt/trinity/share/apps/tellico/entry-templates +debian/tmp/opt/trinity/share/apps/tellico/*.py +debian/tmp/opt/trinity/share/apps/tellico/pics +debian/tmp/opt/trinity/share/apps/tellico/report-templates +debian/tmp/opt/trinity/share/apps/tellico/tellico.dtd +debian/tmp/opt/trinity/share/apps/tellico/tellico.tips +debian/tmp/opt/trinity/share/apps/tellico/tellico2html.js +debian/tmp/opt/trinity/share/apps/tellico/tellicoui.rc +debian/tmp/opt/trinity/share/apps/tellico/welcome.html +debian/tmp/opt/trinity/share/config.kcfg +debian/tmp/opt/trinity/share/doc/tde +debian/tmp/opt/trinity/share/icons +debian/tmp/opt/trinity/share/locale +debian/tmp/opt/trinity/share/mimelnk diff --git a/ubuntu/_base/applications/tellico/debian/tellico-scripts-trinity.install b/ubuntu/_base/applications/tellico/debian/tellico-scripts-trinity.install new file mode 100644 index 000000000..71c51d5eb --- /dev/null +++ b/ubuntu/_base/applications/tellico/debian/tellico-scripts-trinity.install @@ -0,0 +1,3 @@ +debian/tmp/opt/trinity/share/apps/tellico/data-sources +debian/tmp/opt/trinity/share/apps/tellico/z3950-servers.cfg + diff --git a/ubuntu/_base/applications/tellico/debian/tellico-trinity.install b/ubuntu/_base/applications/tellico/debian/tellico-trinity.install new file mode 100644 index 000000000..a45d88c99 --- /dev/null +++ b/ubuntu/_base/applications/tellico/debian/tellico-trinity.install @@ -0,0 +1,3 @@ +debian/tmp/opt/trinity/bin/* +debian/tellico.xpm /opt/trinity/share/pixmaps/ +debian/tmp/opt/trinity/share/applications/* diff --git a/ubuntu/_base/applications/tellico/debian/tellico-trinity.manpages b/ubuntu/_base/applications/tellico/debian/tellico-trinity.manpages new file mode 100644 index 000000000..68831ac30 --- /dev/null +++ b/ubuntu/_base/applications/tellico/debian/tellico-trinity.manpages @@ -0,0 +1 @@ +debian/tellico.1x diff --git a/ubuntu/_base/applications/tellico/debian/tellico.1x b/ubuntu/_base/applications/tellico/debian/tellico.1x new file mode 100644 index 000000000..29a569a0b --- /dev/null +++ b/ubuntu/_base/applications/tellico/debian/tellico.1x @@ -0,0 +1,63 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.36. +.TH TELLICO: "1x" "March 2008" +.SH NAME +Tellico \- a collection manager for TDE +.SH SYNOPSIS +.B tellico +[\fIQt-options\fR] [\fITDE-options\fR] [\fIoptions\fR] [\fIfilename\fR] +.SH DESCRIPTION +Tellico \- a collection manager for TDE +.SS "Generic options:" +.TP +\fB\-\-help\fR +Show help about options +.TP +\fB\-\-help\-qt\fR +Show Qt specific options +.TP +\fB\-\-help\-tde\fR +Show TDE specific options +.TP +\fB\-\-help\-all\fR +Show all options +.TP +\fB\-\-author\fR +Show author information +.TP +\fB\-v\fR, \fB\-\-version\fR +Show version information +.TP +\fB\-\-license\fR +Show license information +.TP +\fB\-\-\fR +End of options +.SH OPTIONS +.TP +\fB\-\-nofile\fR +Do not reopen the last open file +.TP +\fB\-\-bibtex\fR +Import <filename> as a bibtex file +.TP +\fB\-\-mods\fR +Import <filename> as a MODS file +.TP +\fB\-\-ris\fR +Import <filename> as a RIS file +.SS "Arguments:" +.TP +filename +File to open +.SH "SEE ALSO" +The full documentation for +.B Qt: +is maintained as a Texinfo manual. If the +.B info +and +.B Qt: +programs are properly installed at your site, the command +.IP +.B info Qt: +.PP +should give you access to the complete manual. diff --git a/ubuntu/_base/applications/tellico/debian/tellico.xpm b/ubuntu/_base/applications/tellico/debian/tellico.xpm new file mode 100644 index 000000000..589d66eeb --- /dev/null +++ b/ubuntu/_base/applications/tellico/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" +}; diff --git a/ubuntu/_base/applications/tellico/debian/watch b/ubuntu/_base/applications/tellico/debian/watch new file mode 100644 index 000000000..8e67307f5 --- /dev/null +++ b/ubuntu/_base/applications/tellico/debian/watch @@ -0,0 +1,3 @@ +# watch control file for uscan +version=3 +http://periapsis.org/tellico/download/tellico-(.*).tar.gz |