--- netbook-launcher-1.1.orig/src/main.c +++ netbook-launcher-1.1/src/main.c @@ -113,6 +113,9 @@ return EXIT_FAILURE; } + /* DO NOT REMOVE, that is, unless https://bugs.freedesktop.org/show_bug.cgi?id=17327 is fixed properly on Intel systems */ + clutter_set_use_mipmapped_text(FALSE); + /* FIXME: Some tests that shouldn't be in here */ local_apps = g_build_filename (g_get_home_dir (), ".local", "share", "applications", NULL); --- netbook-launcher-1.1.orig/debian/changelog +++ netbook-launcher-1.1/debian/changelog @@ -0,0 +1,14 @@ +netbook-launcher (1.1-0ubuntu2) intrepid; urgency=low + + * Work around problems with Intel graphics and mipmapping by disabling + mipmapping before fonts are created. This fixes the text not displaying + correctly for Intel graphics users. (LP: #269150) + + -- James Westby Mon, 13 Oct 2008 00:43:57 +0100 + +netbook-launcher (1.1-0ubuntu1) intrepid; urgency=low + + * Initial release (LP: #263493). + + -- Oliver Grawert Tue, 09 Sep 2008 14:04:07 +0200 + --- netbook-launcher-1.1.orig/debian/copyright +++ netbook-launcher-1.1/debian/copyright @@ -0,0 +1,41 @@ +This package was debianized by Neil J. Patel on +Tue, 29 Apr 2008 11:19:58 +0100. + +This package was downloaded from http://bazaar.launchpad.net/~netbook-remix-team/netbook-remix-launcher/clutter-0-8-intrepid/ via bzr. + +Upstream Authors: + + Neil J. Patel + +Copyright (C) 2007 Intel +Copyright (C) 2008 Canonical Ltd + + 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 3 of the License, 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, see . + +The Debian packaging is (C) 2008, Neil J. Patel and +is licensed under the GPL version 3, see `/usr/share/common-licenses/GPL-3'. + +This program also contains a copy of the tidy library under tidy, which is +Copyright (C) 2007 OpenedHand Ltd, was downloaded from +http://svn.o-hand.com/repos/tidy and is licensed under the LGPL 2, or later. + +Tidy was Authored by: + Chris Lord + Emmanuele Bassi + Matthew Allum + Øyvind Kolås + Jorn Baayen + +On Debian/Ubuntu systems, a full copy of the LGPL 2 can be found in +`/usr/share/common-licenses/LGPL-2'. --- netbook-launcher-1.1.orig/debian/README.source +++ netbook-launcher-1.1/debian/README.source @@ -0,0 +1,19 @@ +To create a tarball for this package pull the source branch from: +http://bazaar.launchpad.net/~netbook-remix-team/netbook-remix-launcher/clutter-0-8-intrepid/ + +look up the upstream version from configure.ac: +grep AC_INIT clutter-0-8-intrepid/ + +use the bzr export command like (with the upstream version the above command showed you instead of 1.1): +bzr export netbook-launcher-1.1 clutter-0-8-intrepid/ + +run autogen.sh inside the exported branch: +cd netbook-launcher-1.1 +./autogen.sh +cd - + +create a tarball from that exported branch (again, replace the version if it differs): +tar czf ../netbook-launcher_1.1.orig.tar.gz netbook-launcher-1.1 + +and clean up: +rm -rf netbook-launcher-1.1 --- netbook-launcher-1.1.orig/debian/netbook-launcher.1 +++ netbook-launcher-1.1/debian/netbook-launcher.1 @@ -0,0 +1,53 @@ +.\" Title: netbook-launcher +.\" Author: +.\" Generator: DocBook XSL Stylesheets v1.70.1 +.\" Date: 09/09/2008 +.\" Manual: +.\" Source: +.\" +.\" disable hyphenation +.\" .nh +.\" disable justification (adjust text to left margin only) +.\" .ad l +.TH "netbook-launcher" "1" "09/09/2008" "" "" +.SH "NAME" +netbook-launcher \- a desktop launcher for netbook desktops +.SH "SYNOPSIS" +\fInetbook-launcher\fR +.SH "DESCRIPTION" +netbook-launcher(1) is an application that provides a launcher on your desktop similar to the application menu in gnome-panel. + +It was originally designed for the ubuntu-netbook-remix project and follows the freedesktop.org xdg menu standard. +.SH "OPTIONS" + netbook-launcher has no commandline options. + +.SH "RESOURCES" +https://launchpad.net/netbook-remix-launcher +.SH "COPYING" +Copyright \(co 2008 Canonical Ltd. + +.RS 3n +.nf +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 in version 3 of the License. +.fi +.RE + +.RS 3n +.nf +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. +.fi +.RE + +.RS 3n +.nf +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., 51 Franklin St, Fifth Floor, Boston, MA +02110\-1301 USA +.fi +.RE --- netbook-launcher-1.1.orig/debian/netbook-launcher.manpages +++ netbook-launcher-1.1/debian/netbook-launcher.manpages @@ -0,0 +1 @@ +debian/netbook-launcher.1 --- netbook-launcher-1.1.orig/debian/rules +++ netbook-launcher-1.1/debian/rules @@ -0,0 +1,18 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/rules/utils.mk +include /usr/share/cdbs/1/class/gnome.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk + +LDFLAGS += -Wl,-z,defs -Wl,-O1 -Wl,--as-needed + +BZR_BRANCH+=http://bazaar.launchpad.net/~netbook-remix-team/netbook-remix-launcher/clutter-0-8-intrepid/ +TARFILE+=$(DEB_SOURCE_PACKAGE)_$(DEB_UPSTREAM_VERSION).orig.tar.gz + +get-orig-source:: + bzr export $(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION) $(BZR_BRANCH) + tar czf $(CURDIR)/../$(TARFILE) $(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION) + rm -rf $(CURDIR)/$(DEB_SOURCE_PACKAGE)-$(DEB_UPSTREAM_VERSION) + +../$(TARFILE):: get-orig-source --- netbook-launcher-1.1.orig/debian/control +++ netbook-launcher-1.1/debian/control @@ -0,0 +1,20 @@ +Source: netbook-launcher +Section: gnome +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Neil J. Patel +Build-Depends: cdbs (>= 0.4.41), debhelper (>= 5), autotools-dev, gnome-pkg-tools (>= 0.10), libglib2.0-dev (>= 2.15.5), libpango1.0-dev (>= 1.18.0), librsvg2-dev (>= 2.18.0), libgtk2.0-dev (>= 2.10.0), libgnomeui-dev (>=2.0), libgnome-desktop-dev, libgconf2-dev, libcairo2-dev (>= 1.2.4), libdbus-1-dev (>= 1.0), libdbus-glib-1-dev (>= 0.7), libclutter-0.8-dev (>=0.8), libclutter-gtk-0.8-dev (>=0.8), libgnome-menu-dev, libwnck-dev, libstartup-notification0-dev +Standards-Version: 3.8.0 + +Package: netbook-launcher +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: A clutter-based desktop launcher, typically used on netbooks + Netbook Launcher is a desktop launcher that uses the clutter UI library. + It is commonly being used on netbook desktops with a resolution of + 1024x600 pixels and also supposed to support usage on touchscreens. + It follows the xdg spec standards from freedesktop.org + for the Desktop menu layout. Originally this application is used in + the Ubuntu Netbook Remix. + . + See https://launchpad.net/netbook-remix-launcher for more information. --- netbook-launcher-1.1.orig/debian/compat +++ netbook-launcher-1.1/debian/compat @@ -0,0 +1 @@ +5