--- mythbuntu-default-settings-0.2.orig/debian/control +++ mythbuntu-default-settings-0.2/debian/control @@ -0,0 +1,23 @@ +Source: mythbuntu-default-settings +Section: x11 +Priority: optional +Maintainer: Mario Limonciello +Build-Depends: debhelper (>= 5.0.0), cdbs +XS-Vcs-Bzr: http://bazaar.launchpad.net/~mythbuntu/mythbuntu/mythbuntu-default-settings +Standards-Version: 3.7.2 + +Package: mythbuntu-default-settings +Architecture: all +Depends: openbox, mythbuntu-gdm-theme, gtk2-engines-mythbuntu +Recommends: feh, gnome-screensaver, gnome-power-manager, idesk, gdm +Description: default settings for Mythbuntu + Various preconfigured items for Mythbuntu. + This package will: + * Preset the GDM theme + * Provide idesk icons + * Mythbuntu System Administration Session + * Preset the GTK theme for new users + * Preset the background for new users + . + It can be installed on a normal system, but makes most sense to + be installed on a Mythbuntu system. --- mythbuntu-default-settings-0.2.orig/debian/copyright +++ mythbuntu-default-settings-0.2/debian/copyright @@ -0,0 +1,27 @@ +This package was debianized by Mario Limonciello on +Tue, 03 July 2007 16:41:23 -0500 + +Author & Copyright: + © 2007 Mario Limonciello + +License: + + 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; either + version 3 of the License, 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. + + You should have received a copy of the GNU General Public + License along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian & Ubuntu systems, a complete copy of the GPL can be found under +/usr/share/common-licenses/GPL + +The Debian packaging is © 2007, Mario Limonciello and is +also licensed under the GPL. --- mythbuntu-default-settings-0.2.orig/debian/compat +++ mythbuntu-default-settings-0.2/debian/compat @@ -0,0 +1 @@ +5 --- mythbuntu-default-settings-0.2.orig/debian/changelog +++ mythbuntu-default-settings-0.2/debian/changelog @@ -0,0 +1,5 @@ +mythbuntu-default-settings (0.2-0ubuntu1) gutsy; urgency=low + + * Initial Release. + + -- Mario Limonciello Tue, 3 Jul 2007 18:57:19 -0500 --- mythbuntu-default-settings-0.2.orig/debian/rules +++ mythbuntu-default-settings-0.2/debian/rules @@ -0,0 +1,14 @@ +#!/usr/bin/make -f +include /usr/share/cdbs/1/rules/debhelper.mk + +BZR_PACKAGE+=mythbuntu-default-settings +BZR_REVISION+=2 +BZR_BRANCH+=http://bazaar.launchpad.net/~mythbuntu/mythbuntu/$(BZR_PACKAGE) +TARFILE+=$(BZR_PACKAGE)_0.$(BZR_REVISION).orig.tar.gz + +get-orig-source:: + bzr export -r $(BZR_REVISION) $(BZR_PACKAGE) $(BZR_BRANCH) + tar czf $(CURDIR)/../$(TARFILE) $(BZR_PACKAGE) --exclude debian + rm -rf $(CURDIR)/$(BZR_PACKAGE) + +../$(TARFILE):: get-orig-source --- mythbuntu-default-settings-0.2.orig/debian/install +++ mythbuntu-default-settings-0.2/debian/install @@ -0,0 +1,2 @@ +etc/* /etc +usr/* /usr --- mythbuntu-default-settings-0.2.orig/debian/prerm +++ mythbuntu-default-settings-0.2/debian/prerm @@ -0,0 +1,11 @@ +#! /bin/sh + +set -e + +#DEBHELPER# + +case "$1" in + remove) + update-alternatives --remove gdm-config-derivative /etc/xdg/mythbuntu/gdm/gdm.conf + ;; +esac --- mythbuntu-default-settings-0.2.orig/debian/postinst +++ mythbuntu-default-settings-0.2/debian/postinst @@ -0,0 +1,14 @@ +#! /bin/sh + +set -e + +#DEBHELPER# + +case "$1" in + configure) + if [ -d /etc/gdm ]; then + # Higher than xubuntu + update-alternatives --install /etc/gdm/gdm-cdd.conf gdm-config-derivative /etc/xdg/mythbuntu/gdm/gdm.conf 60 + fi + ;; +esac