[debian-edu-commits] debian-edu/ 128/437: Start work on customized g-i logo image. Currently just a copy of the default Debian logo.
Mike Gabriel
sunweaver at debian.org
Sun Mar 2 23:49:29 UTC 2014
This is an automated email from the git hooks/post-receive script.
sunweaver pushed a commit to branch master
in repository debian-edu-artwork.
commit d9943b3f61905d9e08fe1dd536b936ed5e2a0a7e
Author: Petter Reinholdtsen <pere at hungry.com>
Date: Wed Jul 18 12:17:00 2007 +0000
Start work on customized g-i logo image. Currently just
a copy of the default Debian logo.
---
art/g-i/Makefile.am | 9 +++++-
art/g-i/Makefile.in | 56 ++++++++++++++++++++++++++++------
art/g-i/README | 11 +++++--
art/g-i/debian-edu-installer-logo.png | Bin 0 -> 22472 bytes
debian/changelog | 8 +++++
5 files changed, 71 insertions(+), 13 deletions(-)
diff --git a/art/g-i/Makefile.am b/art/g-i/Makefile.am
index 952fde6..7b26c7f 100644
--- a/art/g-i/Makefile.am
+++ b/art/g-i/Makefile.am
@@ -1 +1,8 @@
-EXTRA_DIST = README
+logodir = $(datadir)/pixmaps
+
+logo_DATA = debian-edu-installer-logo.png
+
+install-data-local:
+ $(mkinstalldirs) $(DESTDIR)$(logodir)
+
+EXTRA_DIST = README $(logo_DATA)
diff --git a/art/g-i/Makefile.in b/art/g-i/Makefile.in
index 4442d67..e3e0f9e 100644
--- a/art/g-i/Makefile.in
+++ b/art/g-i/Makefile.in
@@ -13,6 +13,7 @@
# PARTICULAR PURPOSE.
@SET_MAKE@
+
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
@@ -43,6 +44,15 @@ mkinstalldirs = $(install_sh) -d
CONFIG_CLEAN_FILES =
SOURCES =
DIST_SOURCES =
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
+am__vpath_adj = case $$p in \
+ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+ *) f=$$p;; \
+ esac;
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
+am__installdirs = "$(DESTDIR)$(logodir)"
+logoDATA_INSTALL = $(INSTALL_DATA)
+DATA = $(logo_DATA)
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
AMDEP_FALSE = @AMDEP_FALSE@
@@ -125,7 +135,9 @@ sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
-EXTRA_DIST = README
+logodir = $(datadir)/pixmaps
+logo_DATA = debian-edu-installer-logo.png
+EXTRA_DIST = README $(logo_DATA)
all: all-am
.SUFFIXES:
@@ -159,6 +171,23 @@ $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
uninstall-info-am:
+install-logoDATA: $(logo_DATA)
+ @$(NORMAL_INSTALL)
+ test -z "$(logodir)" || $(mkdir_p) "$(DESTDIR)$(logodir)"
+ @list='$(logo_DATA)'; for p in $$list; do \
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+ f=$(am__strip_dir) \
+ echo " $(logoDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(logodir)/$$f'"; \
+ $(logoDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(logodir)/$$f"; \
+ done
+
+uninstall-logoDATA:
+ @$(NORMAL_UNINSTALL)
+ @list='$(logo_DATA)'; for p in $$list; do \
+ f=$(am__strip_dir) \
+ echo " rm -f '$(DESTDIR)$(logodir)/$$f'"; \
+ rm -f "$(DESTDIR)$(logodir)/$$f"; \
+ done
tags: TAGS
TAGS:
@@ -195,8 +224,11 @@ distdir: $(DISTFILES)
done
check-am: all-am
check: check-am
-all-am: Makefile
+all-am: Makefile $(DATA)
installdirs:
+ for dir in "$(DESTDIR)$(logodir)"; do \
+ test -z "$$dir" || $(mkdir_p) "$$dir"; \
+ done
install: install-am
install-exec: install-exec-am
install-data: install-data-am
@@ -239,7 +271,7 @@ info: info-am
info-am:
-install-data-am:
+install-data-am: install-data-local install-logoDATA
install-exec-am:
@@ -265,17 +297,21 @@ ps: ps-am
ps-am:
-uninstall-am: uninstall-info-am
+uninstall-am: uninstall-info-am uninstall-logoDATA
.PHONY: all all-am check check-am clean clean-generic distclean \
distclean-generic distdir dvi dvi-am html html-am info info-am \
- install install-am install-data install-data-am install-exec \
- install-exec-am install-info install-info-am install-man \
- install-strip installcheck installcheck-am installdirs \
- maintainer-clean maintainer-clean-generic mostlyclean \
- mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am \
- uninstall-info-am
+ install install-am install-data install-data-am \
+ install-data-local install-exec install-exec-am install-info \
+ install-info-am install-logoDATA install-man install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
+ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
+ pdf-am ps ps-am uninstall uninstall-am uninstall-info-am \
+ uninstall-logoDATA
+
+install-data-local:
+ $(mkinstalldirs) $(DESTDIR)$(logodir)
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
diff --git a/art/g-i/README b/art/g-i/README
index 3ccad3e..4a8007e 100644
--- a/art/g-i/README
+++ b/art/g-i/README
@@ -1,5 +1,12 @@
We should find a way to replace the banner image used in the graphical
version of the debian installer. The image used by g-i is
-/usr/share/graphics/logo_debian.png from the rootskel-gtk package. It
-is unknown how to properly replace it in a custom debian distribution.
+/usr/share/graphics/logo_debian.png from the rootskel-gtk package.
+It is a PNG image data, 800 x 75, 8-bit/color RGBA, non-interlaced.
+
+It is unknown how to properly replace it in a custom debian distribution.
Perhaps we need to make our own g-i boot images to make it happen.
+
+An idea is to modify debian-cd to append a compressed cpio archive with
+this replacement file to the initrd.gz file used when booting g-i. It
+will then replace the original file when the initrd is unpackaged into
+memory.
diff --git a/art/g-i/debian-edu-installer-logo.png b/art/g-i/debian-edu-installer-logo.png
new file mode 100644
index 0000000..6da6c2a
Binary files /dev/null and b/art/g-i/debian-edu-installer-logo.png differ
diff --git a/debian/changelog b/debian/changelog
index d749f56..482e311 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+debian-edu-artwork (0.0.20) unstable; urgency=low
+
+ * UNRELEASED.
+ * Start work on customized g-i logo image. Currently just
+ a copy of the default Debian logo.
+
+ -- Petter Reinholdtsen <pere at debian.org> Wed, 18 Jul 2007 13:51:05 +0200
+
debian-edu-artwork (0.0.19) unstable; urgency=low
* Change how kdm is configured to use the new /etc/default/kdm.d/
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-edu/debian-edu-artwork.git
More information about the debian-edu-commits
mailing list