--- swac-explore-0.4.2.orig/debian/menu +++ swac-explore-0.4.2/debian/menu @@ -0,0 +1,2 @@ +?package(swac-explore):needs="X11" section="Applications/Education"\ + title="swac-explore" command="/usr/bin/swac-explore" --- swac-explore-0.4.2.orig/debian/docs +++ swac-explore-0.4.2/debian/docs @@ -0,0 +1,4 @@ +THANKS +AUTHORS +NEWS +README --- swac-explore-0.4.2.orig/debian/control +++ swac-explore-0.4.2/debian/control @@ -0,0 +1,17 @@ +Source: swac-explore +Section: misc +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Nicolas Vion +Build-Depends: debhelper (>= 7), autotools-dev, pkg-config, libsqlite3-dev, libgtkmm-2.4-dev, libgstreamer0.10-dev, libgconfmm-2.6-dev, quilt +Standards-Version: 3.8.3 +Homepage: http://shtooka.net/ + +Package: swac-explore +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, swac-get (>= 0.5) +Description: audio collections of words (SWAC) explorer + Swac-explore is a GTK+ interface written in C++ which allows to browse audio + collections of words (SWAC). The program reads data from a SQLite3 database + (~/.swac/swac.db) which can be generated and managed by the swac-get command + line program. --- swac-explore-0.4.2.orig/debian/rules +++ swac-explore-0.4.2/debian/rules @@ -0,0 +1,8 @@ +#!/usr/bin/make -f +include /usr/share/quilt/quilt.make + +LDFLAGS+=-Wl,-z,defs -Wl,--as-needed + +%: + dh --with quilt $@ + --- swac-explore-0.4.2.orig/debian/changelog +++ swac-explore-0.4.2/debian/changelog @@ -0,0 +1,31 @@ +swac-explore (0.4.2-0ubuntu1) karmic; urgency=low + + [ Bhavani Shankar ] + * New upstream version (LP: #407688) + * Bump up standards-version to 3.8.2. No other changes + * Remove dh_desktop call as its depreceated and clean up rules file + * sqlite3++.cc: Add missing #include to fix ftbfs with gcc. + + [ Andreas Moog ] + * Switch to debhelper 7, adjust debian/rules, debian/compat and + debian/control accordingly + * use quilt to manage patch + * update standards to 3.8.3 + - add a README.source + * add misc:Depends to make lintian happy + + -- Andreas Moog Fri, 21 Aug 2009 14:24:39 +0200 + +swac-explore (0.4-0ubuntu1) jaunty; urgency=low + + * New upstream release (LP: #324994) + * Add debian/watch + + -- Nicolas Vion Tue, 03 Feb 2009 18:40:45 +0000 + +swac-explore (0.2-1) unstable; urgency=low + + * Initial release + + -- Nicolas Vion Tue, 03 Jun 2008 12:32:27 +0200 + --- swac-explore-0.4.2.orig/debian/compat +++ swac-explore-0.4.2/debian/compat @@ -0,0 +1 @@ +7 --- swac-explore-0.4.2.orig/debian/watch +++ swac-explore-0.4.2/debian/watch @@ -0,0 +1,3 @@ +version=3 +http://shtooka.net/soft/swac-tools/download/swac-explore-(.*)\.tar\.gz + --- swac-explore-0.4.2.orig/debian/swac-explore.desktop +++ swac-explore-0.4.2/debian/swac-explore.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Type=Application +Encoding=UTF-8 +Name=Swac Explore +Exec=swac-explore +StartupNotify=false +Terminal=false +Categories=Education +Comment=audio collections of words (SWAC) explorer +Comment[fr]=explorateur de collections audio de mots (SWAC) --- swac-explore-0.4.2.orig/debian/README.source +++ swac-explore-0.4.2/debian/README.source @@ -0,0 +1,8 @@ +This package uses quilt to manage all modifications to the upstream +source. Changes are stored in the source package as diffs in +debian/patches and applied during the build. Please see: + + /usr/share/doc/quilt/README.source + +for more information on how to apply the patches, modify patches, or +remove a patch. --- swac-explore-0.4.2.orig/debian/dirs +++ swac-explore-0.4.2/debian/dirs @@ -0,0 +1 @@ +usr/bin --- swac-explore-0.4.2.orig/debian/copyright +++ swac-explore-0.4.2/debian/copyright @@ -0,0 +1,34 @@ +This package was debianized by Nicolas Vion on +Tue, 03 Jun 2008 12:32:27 +0200. + +It was downloaded from http://shtooka.net/ + +Upstream Author: + + Nicolas Vion + +Copyright: + + Copyright (C) 2008 Nicolas Vion + +License: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +The Debian packaging is (C) 2008, Nicolas Vion and +is licensed under the GPL, see above. --- swac-explore-0.4.2.orig/debian/patches/series +++ swac-explore-0.4.2/debian/patches/series @@ -0,0 +1 @@ +01_fix_gcc4.4.patch --- swac-explore-0.4.2.orig/debian/patches/01_fix_gcc4.4.patch +++ swac-explore-0.4.2/debian/patches/01_fix_gcc4.4.patch @@ -0,0 +1,13 @@ +Description: Fix FTBFS with gcc4.4 due to missing include +Index: swac-explore-0.4.2/src/sqlite3++.cc +=================================================================== +--- swac-explore-0.4.2.orig/src/sqlite3++.cc 2009-08-21 14:36:09.588072216 +0200 ++++ swac-explore-0.4.2/src/sqlite3++.cc 2009-08-21 14:36:51.508072783 +0200 +@@ -18,6 +18,7 @@ + */ + + #include ++#include + + #include "sqlite3++.hh" +