debian/0000755000000000000000000000000011733436355007200 5ustar debian/watch0000644000000000000000000000017411561320477010227 0ustar version=2 http://projects.o-hand.com/matchbox/sources/matchbox-desktop/2.0/matchbox-desktop-(.*)\.tar.gz \ debian uupdate debian/control0000644000000000000000000000210011732445243010567 0ustar Source: matchbox-desktop Section: embedded Priority: optional Maintainer: Moray Allan Build-Depends: debhelper (>= 9.0), pkg-config, libstartup-notification0-dev, libmatchbox-dev (>= 1.7-4), libgtk2.0-dev Standards-Version: 3.9.1 Package: matchbox-desktop Section: embedded Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, matchbox-common Replaces: matchbox (<< 1:0.8.2) Description: desktop application launcher for resource-limited systems matchbox-desktop uses the desktop background to provide an application launcher. It reads the standard desktop entry specification files also used by GNOME and KDE to discover the applications available on the system. . matchbox-desktop allows modules to be loaded for additional functionality. This package includes modules for a task switcher and simple file browser. . Matchbox is a base environment for the X Window System running on non-desktop embedded platforms such as handhelds, set-top boxes, kiosks and anything else for which screen space, input mechanisms or system resources are limited. debian/matchbox-desktop.docs0000644000000000000000000000001411732444315013313 0ustar README TODO debian/changelog0000644000000000000000000000454111733436355011056 0ustar matchbox-desktop (2.0-4) unstable; urgency=low * Restore patch for Makefile.am and Makefile.in. -- Moray Allan Sat, 24 Mar 2012 21:29:46 +0000 matchbox-desktop (2.0-3) unstable; urgency=low * Move from cdbs to dh 9. -- Moray Allan Wed, 21 Mar 2012 20:24:02 +0000 matchbox-desktop (2.0-2) unstable; urgency=low * Add -lX11 to LDADD. Closes: #555587. -- Moray Allan Sat, 07 May 2011 20:45:30 +0100 matchbox-desktop (2.0-1) unstable; urgency=low * New upstream release. * Remove old /etc/matchbox-desktop/mbdesktop_modules if no local changes. * Update copyright information. * Update watch file URL. * Update man page, removing information specific to older versions. -- Moray Allan Sun, 09 Mar 2008 20:07:41 +0100 matchbox-desktop (0.9.1-4) unstable; urgency=low * Build against newer libmatchbox without libXft.la reference. * Fix error in man page. -- Moray Allan Sun, 19 Feb 2006 18:43:34 +0000 matchbox-desktop (0.9.1-3) unstable; urgency=low * Tighten libmatchbox dependency, since the newer version should give this package fewer direct dependencies. -- Moray Allan Sun, 15 Jan 2006 12:15:29 +0000 matchbox-desktop (0.9.1-2) unstable; urgency=low * Update copyright file. -- Moray Allan Sun, 1 May 2005 18:20:39 +0100 matchbox-desktop (0.9.1-1) unstable; urgency=low * New upstream release. -- Moray Allan Mon, 28 Mar 2005 19:53:50 +0100 matchbox-desktop (0.9-2) unstable; urgency=low * Update watch file. * Tighten libmatchbox-dev build-depends. -- Moray Allan Mon, 10 Jan 2005 02:47:57 +0000 matchbox-desktop (0.9-1) unstable; urgency=medium * New upstream release. -- Moray Allan Fri, 7 Jan 2005 16:30:03 +0000 matchbox-desktop (0.8-2) unstable; urgency=low * Install modules in /usr/lib, not /usr/share. * Install default list of modules to load in /etc/matchbox-desktop so that the administrator can configure it per-machine. -- Moray Allan Tue, 20 Jul 2004 02:52:16 +0100 matchbox-desktop (0.8-1) unstable; urgency=low * Split out from monolithic matchbox package. * New maintainer for Matchbox packages. -- Moray Allan Fri, 16 Jul 2004 02:19:00 +0100 debian/source/0000755000000000000000000000000011732434644010476 5ustar debian/source/format0000644000000000000000000000001411732434644011704 0ustar 3.0 (quilt) debian/copyright0000644000000000000000000000200111561320477011120 0ustar This package was debianised by Moray Allan on Mon, 12 Jul 2004 20:39:00 +0100. It was downloaded from http://projects.o-hand.com/matchbox/sources/ Upstream authors: Ross Burton Jorn Baayen Copyright: Copyright (C) 2007 OpenedHand Ltd Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Soeren Sandmann (sandmann@daimi.au.dk) 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 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. On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in '/usr/share/common-licenses/GPL-2'. debian/matchbox-desktop.preinst0000644000000000000000000000152411732445470014061 0ustar #! /bin/sh set -e # Remove a no-longer used conffile rm_conffile() { CONFFILE="$1" if [ -e "$CONFFILE" ]; then md5sum="`md5sum \"$CONFFILE\" | sed -e \"s/ .*//\"`" old_md5sum="$(dpkg-query -W -f='${Conffiles}' $PKGNAME | \ sed -n -e "\' $CONFFILE ' { s/ obsolete$//; s/.* //; p }")" if [ "$md5sum" != "$old_md5sum" ]; then echo "Obsolete conffile $CONFFILE has been modified by you." echo "Saving as $CONFFILE.dpkg-bak ..." mv -f "$CONFFILE" "$CONFFILE".dpkg-bak else echo "Removing obsolete conffile $CONFFILE ..." rm -f "$CONFFILE" fi fi } case "$1" in install|upgrade) if dpkg --compare-versions "$2" le "0.9.1-4"; then rm_conffile "/etc/matchbox-desktop/mbdesktop_modules" fi esac #DEBHELPER# exit 0 debian/matchbox-desktop.manpages0000644000000000000000000000003211561320477014160 0ustar debian/matchbox-desktop.1 debian/compat0000644000000000000000000000000211732434707010374 0ustar 9 debian/rules0000755000000000000000000000037311732434274010260 0ustar #!/usr/bin/make -f export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed %: dh $@ override_dh_auto_configure: ./configure --prefix=/usr --enable-startup-notification --enable-dnotify --sysconfdir=/etc override_dh_install: dh_install --list-missing debian/matchbox-desktop.10000644000000000000000000000142011561320477012527 0ustar .\" matchbox-desktop.1 .\" Copyright 2004 Moray Allan .TH matchbox-desktop 1 "Jul 17 2004" "" .SH NAME matchbox-desktop \- a desktop application launcher for resource-limited systems .SH SYNOPSIS .B matchbox-desktop [\fIoptions\fR] .SH DESCRIPTION .B matchbox-desktop uses the desktop background to provide an application launcher. It reads the standard desktop entry specification files also used by GNOME and KDE to discover the applications available on the system. Matchbox is a base environment for the X Window System running on non-desktop embedded platforms such as handhelds, set-top boxes, kiosks and anything else for which screen space, input mechanisms or system resources are limited. .SH AUTHOR .B matchbox-desktop was written by Matthew Allum . debian/patches/0000755000000000000000000000000011733436307010624 5ustar debian/patches/series0000644000000000000000000000002511733436221012031 0ustar add-needed-libraries debian/patches/add-needed-libraries0000644000000000000000000000106011733436307014470 0ustar Description: FTBFS with binutils-gold (#555587) Author: Bhavani Shankar R Last-Update: 2010-12-28 --- a/Makefile.am +++ b/Makefile.am @@ -7,7 +7,7 @@ matchbox_desktop_CFLAGS = \ -Wall matchbox_desktop_LDADD = \ - $(GTK_LIBS) $(SN_LIBS) + $(GTK_LIBS) $(SN_LIBS) -lX11 matchbox_desktop_SOURCES = \ taku-tile.h taku-tile.c \ --- a/Makefile.in +++ b/Makefile.in @@ -183,7 +183,7 @@ -Wall matchbox_desktop_LDADD = \ - $(GTK_LIBS) $(SN_LIBS) + $(GTK_LIBS) $(SN_LIBS) -lX11 matchbox_desktop_SOURCES = \ taku-tile.h taku-tile.c \