From 7e657581947c155945a1ff16cdf67dc3051b105e Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Sat, 10 Dec 2005 10:49:34 +0000 Subject: [PATCH] initial packaging --- .bzrignore | 2 ++ debian/changelog | 5 ++++ debian/compat | 1 + debian/control | 16 +++++++++++++ debian/copyright | 27 ++++++++++++++++++++++ debian/gfxboot-theme-ubuntu.dirs | 1 + debian/rules | 39 ++++++++++++++++++++++++++++++++ 7 files changed, 91 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/gfxboot-theme-ubuntu.dirs create mode 100755 debian/rules diff --git a/.bzrignore b/.bzrignore index d085155..98bdee9 100644 --- a/.bzrignore +++ b/.bzrignore @@ -2,3 +2,5 @@ boot install po/*.tr po/text.inc +debian/files +debian/gfxboot-theme-ubuntu diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..50eadb5 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +gfxboot-theme-ubuntu (0.1.0) dapper; urgency=low + + * Initial release. + + -- Colin Watson Sat, 10 Dec 2005 10:48:12 +0000 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +4 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..b503a4a --- /dev/null +++ b/debian/control @@ -0,0 +1,16 @@ +Source: gfxboot-theme-ubuntu +Section: utils +Priority: optional +Maintainer: Colin Watson +Build-Depends-Indep: debhelper (>= 4) +Standards-Version: 3.6.2 + +Package: gfxboot-theme-ubuntu +Architecture: all +Depends: gfxboot +Description: Ubuntu theme for gfxboot-compliant boot loaders + This is an Ubuntu theme for the gfxboot graphical boot loader extension. It + should be suitable for Ubuntu derivatives as well as Ubuntu itself. + . + This theme does not include any help texts or logos itself. Those should be + provided by other packages, and may be specific to Ubuntu derivatives. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..0d3efc5 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,27 @@ +This gfxboot theme was written and packaged by Colin Watson +, drawing heavily on code from the SuSE gfxboot theme +(which may be found in the gfxboot package). + +Copyright: + + Copyright (C) 2004 SUSE LINUX AG + Copyright (C) 2005 SUSE Linux GmbH + Copyright (C) 2005 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 2, 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; see the file COPYING. If not, write to the Free + Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + 02110-1301, USA. + +A copy of the GNU General Public License is available in +/usr/share/common-licenses/GPL. diff --git a/debian/gfxboot-theme-ubuntu.dirs b/debian/gfxboot-theme-ubuntu.dirs new file mode 100644 index 0000000..fc853f8 --- /dev/null +++ b/debian/gfxboot-theme-ubuntu.dirs @@ -0,0 +1 @@ +usr/share/gfxboot/themes/Ubuntu diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..f1a6321 --- /dev/null +++ b/debian/rules @@ -0,0 +1,39 @@ +#! /usr/bin/make -f + +tmp := $(CURDIR)/debian/gfxboot-theme-ubuntu +themedir := $(tmp)/usr/share/gfxboot/themes/Ubuntu + +build: + +clean: + dh_testdir + dh_testroot + $(MAKE) clean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + install -m644 Makefile languages *.config *.dat *.fnt *.inc *.jpg \ + $(themedir) + install -m755 keymapchars $(themedir) + +binary-arch: + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-arch binary-indep + +.PHONY: build clean install binary-arch binary-indep binary