--- lightdm-webkit-greeter-0.1.2.orig/debian/40-lightdm-webkit-greeter.conf +++ lightdm-webkit-greeter-0.1.2/debian/40-lightdm-webkit-greeter.conf @@ -0,0 +1,2 @@ +[Seat:*] +greeter-session=lightdm-webkit-greeter --- lightdm-webkit-greeter-0.1.2.orig/debian/changelog +++ lightdm-webkit-greeter-0.1.2/debian/changelog @@ -0,0 +1,60 @@ +lightdm-webkit-greeter (0.1.2-0ubuntu4) yakkety; urgency=medium + + * debian/control: + Build-depend on libwebkitgtk-dev instead of libwebkit-dev, + which has been a transitional package since Precise (LP: #1588037) + + -- Jeremy Bicha Wed, 01 Jun 2016 15:21:52 -0400 + +lightdm-webkit-greeter (0.1.2-0ubuntu3) wily; urgency=medium + + * debian/40-lightdm-webkit-greeter.conf: + - Use [Seat:*] instead of deprecated [SeatDefaults] + + -- Robert Ancell Fri, 07 Aug 2015 13:31:25 +1200 + +lightdm-webkit-greeter (0.1.2-0ubuntu2) trusty; urgency=low + + * debian/40-lightdm-webkit-greeter.conf: + * debian/install: + * debian/postinst: + * debian/postrm: + - Install lightdm configuration for greeter instead of using deprecated + lightdm-set-defaults + * debian/control: + - Use standards version 3.9.4 + + -- Robert Ancell Tue, 10 Dec 2013 10:17:48 +1300 + +lightdm-webkit-greeter (0.1.2-0ubuntu1) precise; urgency=low + + * New upstream release + * debian/watch: + - Update to new download location + + -- Robert Ancell Thu, 12 Jan 2012 10:36:13 +0100 + +lightdm-webkit-greeter (0.1.0-0ubuntu4) oneiric; urgency=low + + * Switched to XZ compression for better compression and faster unpacking + + -- Sergey "Shnatsel" Davidoff Fri, 16 Sep 2011 22:08:51 +0400 + +lightdm-webkit-greeter (0.1.0-0ubuntu3) oneiric; urgency=low + + * Fixed the ugly thing + + -- Sergey "Shnatsel" Davidoff Sun, 11 Sep 2011 06:25:14 +0400 + +lightdm-webkit-greeter (0.1.0-0ubuntu2) natty; urgency=low + + * debian/control: + - Add build-depends on gnome-common + + -- Robert Ancell Fri, 20 May 2011 16:24:26 +1000 + +lightdm-webkit-greeter (0.1.0-0ubuntu1) natty; urgency=low + + * New upstream release + + -- Robert Ancell Fri, 20 May 2011 14:10:34 +1000 --- lightdm-webkit-greeter-0.1.2.orig/debian/compat +++ lightdm-webkit-greeter-0.1.2/debian/compat @@ -0,0 +1 @@ +7 --- lightdm-webkit-greeter-0.1.2.orig/debian/control +++ lightdm-webkit-greeter-0.1.2/debian/control @@ -0,0 +1,21 @@ +Source: lightdm-webkit-greeter +Section: x11 +Priority: optional +Maintainer: Robert Ancell +Standards-Version: 3.9.4 +Build-Depends: debhelper (>= 7.0.50~), + gnome-common, + liblightdm-gobject-1-dev, + libwebkitgtk-dev +Homepage: https://launchpad.net/lightdm +Vcs-Bzr: https://code.launchpad.net/~ubuntu-desktop/lightdm-webkit-greeter/ubuntu + +Package: lightdm-webkit-greeter +Architecture: any +Depends: ${misc:Depends}, + ${shlibs:Depends} +Pre-Depends: dpkg (>= 1.15.6) +Recommends: lightdm +Provides: lightdm-greeter +Description: LightDM Webkit Greeter + A LightDM greeter that uses WebKit (HTML/CSS). --- lightdm-webkit-greeter-0.1.2.orig/debian/copyright +++ lightdm-webkit-greeter-0.1.2/debian/copyright @@ -0,0 +1,24 @@ +Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=59 +Name: LightDM Webkit Greeter +Maintainer: Robert Ancell +Source: https://launchpad.net/lightdm + +Files: * +Copyright: 2010-2011, Robert Ancell +License: GPL-3+ + +License: GPL-3+ + 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 . +X-Comment: On Debian systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-3’. --- lightdm-webkit-greeter-0.1.2.orig/debian/install +++ lightdm-webkit-greeter-0.1.2/debian/install @@ -0,0 +1 @@ +debian/40-lightdm-webkit-greeter.conf /usr/share/lightdm/lightdm.conf.d/ --- lightdm-webkit-greeter-0.1.2.orig/debian/postinst +++ lightdm-webkit-greeter-0.1.2/debian/postinst @@ -0,0 +1,10 @@ +#!/bin/sh +set -e + +if [ "$1" = configure ]; then + update-alternatives --install /usr/share/lightdm-webkit/themes/default \ + lightdm-webkit-theme /usr/share/lightdm-webkit/themes/webkit 5 +fi + +#DEBHELPER# + --- lightdm-webkit-greeter-0.1.2.orig/debian/prerm +++ lightdm-webkit-greeter-0.1.2/debian/prerm @@ -0,0 +1,9 @@ +#!/bin/sh + +set -e + +if [ "$1" = "remove" ]; then + update-alternatives --remove lightdm-webkit-theme /usr/share/lightdm-webkit/themes/webkit +fi + +#DEBHELPER# --- lightdm-webkit-greeter-0.1.2.orig/debian/rules +++ lightdm-webkit-greeter-0.1.2/debian/rules @@ -0,0 +1,12 @@ +#!/usr/bin/make -f + +LDFLAGS+=-Wl,--as-needed + +%: + dh $@ + +override_dh_auto_configure: + ./autogen.sh --prefix=/usr + +override_dh_builddeb: + dh_builddeb -- -Zxz --- lightdm-webkit-greeter-0.1.2.orig/debian/watch +++ lightdm-webkit-greeter-0.1.2/debian/watch @@ -0,0 +1,2 @@ +version=3 +https://launchpad.net/lightdm-webkit-greeter/+download .*/lightdm-webkit-greeter-([0-9.]+)\.tar\.gz