--- gdm2setup-0.5.3-lucid.orig/debian/changelog +++ gdm2setup-0.5.3-lucid/debian/changelog @@ -0,0 +1,5 @@ +gdm2setup (0.5.3-lucid-1) lucid; urgency=low + + * source package automatically created by stdeb 0.5.1 + + -- Garth Johnson Sat, 20 Mar 2010 19:22:04 -0700 --- gdm2setup-0.5.3-lucid.orig/debian/compat +++ gdm2setup-0.5.3-lucid/debian/compat @@ -0,0 +1 @@ +7 --- gdm2setup-0.5.3-lucid.orig/debian/control +++ gdm2setup-0.5.3-lucid/debian/control @@ -0,0 +1,20 @@ +Source: gdm2setup +Maintainer: Garth Johnson +Section: python +Priority: optional +Build-Depends: debhelper (>= 7), python-support (>= 0.8.4) +Standards-Version: 3.7.2 +XS-Python-Version: current + +Package: python-gdm2setup +Architecture: all +Depends: ${python:Depends} +XB-Python-Version: ${python:Versions} +Provides: ${python:Provides} +Description: GDM2 Setup utility and libraries + GDM2 Setup utility + . + A simple setup utility for the new GDM2 included in Karmic Ubuntu. GDM2Setup allows the user to set login wallpaper, select automatic login or prompted, user list or input box login, and much more. This application's goal is to put the older GDM setup utility functionality back into Ubuntu and other Gnome based Linux distributions. + . + . + . --- gdm2setup-0.5.3-lucid.orig/debian/python-gdm2setup.preinst +++ gdm2setup-0.5.3-lucid/debian/python-gdm2setup.preinst @@ -0,0 +1,14 @@ +#! /bin/sh + +set -e + +# This was added by stdeb to workaround Debian #479852. In a nutshell, +# pycentral does not remove normally remove its symlinks on an +# upgrade. Since we're using python-support, however, those symlinks +# will be broken. This tells python-central to clean up any symlinks. +if [ -e /var/lib/dpkg/info/python-gdm2setup.list ] && which pycentral >/dev/null 2>&1 +then + pycentral pkgremove python-gdm2setup +fi + +#DEBHELPER# --- gdm2setup-0.5.3-lucid.orig/debian/rules +++ gdm2setup-0.5.3-lucid/debian/rules @@ -0,0 +1,22 @@ +#!/usr/bin/make -f + +# This file was automatically generated by stdeb 0.5.1 at +# Sat, 20 Mar 2010 19:22:04 -0700 + +# Unset the environment variables set by dpkg-buildpackage. (This is +# necessary because distutils is brittle with compiler/linker flags +# set. Specifically, packages using f2py will break without this.) +unexport CPPFLAGS +unexport CFLAGS +unexport CXXFLAGS +unexport FFLAGS +unexport LDFLAGS + +#exports specified using stdeb Setup-Env-Vars: +export DH_OPTIONS=--buildsystem=python_distutils + + +%: + dh $@ + +