initial packaging

master
Colin Watson 19 years ago
parent 1f2243c645
commit 7e65758194

@ -2,3 +2,5 @@ boot
install
po/*.tr
po/text.inc
debian/files
debian/gfxboot-theme-ubuntu

5
debian/changelog vendored

@ -0,0 +1,5 @@
gfxboot-theme-ubuntu (0.1.0) dapper; urgency=low
* Initial release.
-- Colin Watson <cjwatson@ubuntu.com> Sat, 10 Dec 2005 10:48:12 +0000

1
debian/compat vendored

@ -0,0 +1 @@
4

16
debian/control vendored

@ -0,0 +1,16 @@
Source: gfxboot-theme-ubuntu
Section: utils
Priority: optional
Maintainer: Colin Watson <cjwatson@ubuntu.com>
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.

27
debian/copyright vendored

@ -0,0 +1,27 @@
This gfxboot theme was written and packaged by Colin Watson
<cjwatson@ubuntu.com>, 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.

@ -0,0 +1 @@
usr/share/gfxboot/themes/Ubuntu

39
debian/rules vendored

@ -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
Loading…
Cancel
Save