debian/0000755000000000000000000000000011733174230007167 5ustar debian/watch0000644000000000000000000000017211732430340010214 0ustar version=2 http://projects.o-hand.com/matchbox/sources/matchbox-common/0.9/matchbox-common-(.*)\.tar.gz \ debian uupdate debian/rules.cdbs0000755000000000000000000000035311732430340011156 0ustar #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/autotools.mk DEB_CONFIGURE_EXTRA_FLAGS = --enable-png install/matchbox-common:: dh_install debian/matchbox.desktop usr/share/xsessions/ debian/control0000644000000000000000000000132611733174155010602 0ustar Source: matchbox-common Section: embedded Priority: optional Maintainer: Moray Allan Build-Depends: debhelper (>= 9.0), dh-autoreconf (>= 5), libmatchbox-dev Build-Depends-Indep: pkg-config Standards-Version: 3.9.3 Package: matchbox-common Architecture: all Depends: ${shlibs:Depends}, ${misc:Depends} Replaces: matchbox (<< 1:0.8.2) Description: common files for Matchbox Project applications This package contains files used by several Matchbox Project applications. . 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-session.10000644000000000000000000000133411732430340012534 0ustar .\" matchbox-session.1 .\" Copyright 2004 Moray Allan .TH matchbox-session 1 "Jul 16 2004" "" .SH NAME matchbox-session \- Matchbox session manager .SH SYNOPSIS .B matchbox-session .SH DESCRIPTION .B matchbox-session is a simple X session manager for the Matchbox Project. 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 FILES .TP .I /etc/matchbox/session System-wide default Matchbox session script .TP .I ~/.matchbox/session Per-user Matchbox session script .SH AUTHOR .B matchbox-session was written by Matthew Allum . debian/changelog0000644000000000000000000000253111733173503011044 0ustar matchbox-common (0.9.1-5) unstable; urgency=low * Fix upstream build system in cleaner way. -- Moray Allan Fri, 23 Mar 2012 22:20:38 +0000 matchbox-common (0.9.1-4) unstable; urgency=low * Move from cdbs to dh 9. * Convert to 3.0 (quilt) source format. -- Moray Allan Wed, 21 Mar 2012 19:54:16 +0000 matchbox-common (0.9.1-3) unstable; urgency=low * Force installation of PNGs rather than XPM images. -- Moray Allan Sun, 22 Apr 2007 13:40:19 +0100 matchbox-common (0.9.1-2) unstable; urgency=low * Add session file in /usr/share/xsessions. Closes: #330056. -- Moray Allan Sun, 22 Apr 2007 12:55:34 +0100 matchbox-common (0.9.1-1) unstable; urgency=low * New upstream release. -- Moray Allan Mon, 28 Mar 2005 19:49:17 +0100 matchbox-common (0.9-2) unstable; urgency=low * Update download location in watch file. -- Moray Allan Mon, 28 Mar 2005 19:47:33 +0100 matchbox-common (0.9-1) unstable; urgency=medium * New upstream release. -- Moray Allan Fri, 7 Jan 2005 16:19:46 +0000 matchbox-common (0.8-1) unstable; urgency=low * Split out from monolithic matchbox package. * New maintainer for Matchbox packages. -- Moray Allan Fri, 16 Jul 2004 02:18:17 +0100 debian/source/0000755000000000000000000000000011732431070010464 5ustar debian/source/format0000644000000000000000000000001411732431070011672 0ustar 3.0 (quilt) debian/copyright0000644000000000000000000000154511732430340011123 0ustar This package was debianised by Moray Allan on Mon, 12 Jul 2004 20:39:00 +0100. It was downloaded from http://matchbox.handhelds.org/sources/ Upstream author: Matthew Allum Copyright: Copyright (C) 2004 Matthew Allum 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. 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-common.install0000644000000000000000000000005611732430705013654 0ustar debian/matchbox.desktop /usr/share/xsessions/ debian/compat0000644000000000000000000000000211732431112010357 0ustar 9 debian/matchbox.desktop0000644000000000000000000000022511732430340012362 0ustar [Desktop Entry] Encoding=UTF-8 Name=Matchbox Comment=This session logs you into Matchbox Exec=matchbox-session Terminal=False Icon= Type=Application debian/rules0000755000000000000000000000025111733174172010252 0ustar #!/usr/bin/make -f %: dh $@ --with autoreconf override_dh_autoreconf: dh_autoreconf --as-needed override_dh_auto_configure: ./configure --prefix=/usr --enable-png debian/matchbox-common.manpages0000644000000000000000000000003211732430340013766 0ustar debian/matchbox-session.1 debian/patches/0000755000000000000000000000000011733173743010626 5ustar debian/patches/series0000644000000000000000000000002111733173530012026 0ustar build-system-fix debian/patches/build-system-fix0000644000000000000000000000070311733173743013756 0ustar Description: Fix build system check on whether libmatchbox is linked against libpng Author: Moray Allan --- a/configure.ac +++ b/configure.ac @@ -33,7 +33,7 @@ PKG_CHECK_MODULES(LIBMB, libmb >= 1.1,, AC_MSG_ERROR([*** libmb required and not found ***])) # below is quite bad ... -if $PKG_CONFIG --libs libmb | grep png ; then +if $PKG_CONFIG --libs --static libmb | grep png ; then found_png="yes" else found_png="no"