aboutsummaryrefslogtreecommitdiff
path: root/tools/XBMCLive/USplashThemes
diff options
context:
space:
mode:
authorwattazoum <wattazoum@svn>2009-12-12 20:35:59 +0000
committerwattazoum <wattazoum@svn>2009-12-12 20:35:59 +0000
commit107f3aa52fd06fca7b2e59ab7360b5c39d0e9270 (patch)
tree31435e08d3a41a9626739f30b6a63bc21a5bb205 /tools/XBMCLive/USplashThemes
parent04efd0b5b9c62d17f9e8dbbc8395710d7af929a1 (diff)
add debian folder for xbmc usplash themes
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@25593 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'tools/XBMCLive/USplashThemes')
-rw-r--r--tools/XBMCLive/USplashThemes/Makefile20
-rw-r--r--tools/XBMCLive/USplashThemes/debian/changelog19
-rw-r--r--tools/XBMCLive/USplashThemes/debian/compat1
-rw-r--r--tools/XBMCLive/USplashThemes/debian/control30
-rw-r--r--tools/XBMCLive/USplashThemes/debian/copyright208
-rw-r--r--tools/XBMCLive/USplashThemes/debian/dirs1
-rwxr-xr-xtools/XBMCLive/USplashThemes/debian/rules65
-rw-r--r--tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-pulsating-logo.install1
-rw-r--r--tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-pulsating-logo.postinst12
-rw-r--r--tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-pulsating-logo.postrm9
-rw-r--r--tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black-silver.install1
-rw-r--r--tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black-silver.postinst12
-rw-r--r--tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black-silver.postrm9
-rw-r--r--tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black.install1
-rw-r--r--tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black.postinst12
-rw-r--r--tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black.postrm9
-rw-r--r--tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-blue.install1
-rw-r--r--tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-blue.postinst12
-rw-r--r--tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-blue.postrm9
19 files changed, 432 insertions, 0 deletions
diff --git a/tools/XBMCLive/USplashThemes/Makefile b/tools/XBMCLive/USplashThemes/Makefile
new file mode 100644
index 0000000000..9a736e1dd0
--- /dev/null
+++ b/tools/XBMCLive/USplashThemes/Makefile
@@ -0,0 +1,20 @@
+prefix=/usr/local
+
+build:
+ make -C pulsating-logo
+ make -C spinner-black-silver
+ make -C spinner-blue
+ make -C spinner-black
+ echo $(prefix)
+
+install: build
+ mkdir -p $(prefix)/lib/usplash
+ cp pulsating-logo/xbmc-splash.so $(prefix)/lib/usplash/xbmc-splash-pulsating-logo.so
+ cp spinner-black/xbmc-splash.so $(prefix)/lib/usplash/xbmc-splash-spinner-black.so
+ cp spinner-blue/xbmc-splash.so $(prefix)/lib/usplash/xbmc-splash-spinner-blue.so
+ cp spinner-black-silver/xbmc-splash.so $(prefix)/lib/usplash/xbmc-splash-spinner-black-silver.so
+
+all: build
+
+clean:
+ find . -regextype posix-extended -iregex ".*\.o|.*\.so" -exec rm {} \;
diff --git a/tools/XBMCLive/USplashThemes/debian/changelog b/tools/XBMCLive/USplashThemes/debian/changelog
new file mode 100644
index 0000000000..be1aa0754a
--- /dev/null
+++ b/tools/XBMCLive/USplashThemes/debian/changelog
@@ -0,0 +1,19 @@
+usplash-theme-xbmc (2.0) jaunty; urgency=high
+
+ * Added usplash themes spinner black silver.
+
+ -- Ouattara Oumar Aziz (alias wattazoum) <wattazoum@gmail.com> Sat, 12 Dec 2009 21:31:22 +0100
+
+usplash-theme-xbmc (1.1) jaunty; urgency=low
+
+ * Updated usplash pulsating logo. These contain fixes for the missing boot messages,
+ an issue that has been reported in the forums.
+
+ -- Ouattara Oumar Aziz (alias wattazoum) <wattazoum@gmail.com> Thu, 03 Sep 2009 13:07:36 +0200
+
+usplash-theme-xbmc (1.0) jaunty; urgency=low
+
+ * Usplash Themes for XBMC (provided by Duduke)
+ http://du-duke.blogspot.com
+
+ -- Ouattara Oumar Aziz (alias wattazoum) <wattazoum@gmail.com> Thu, 07 May 2009 18:43:05 +0200
diff --git a/tools/XBMCLive/USplashThemes/debian/compat b/tools/XBMCLive/USplashThemes/debian/compat
new file mode 100644
index 0000000000..7ed6ff82de
--- /dev/null
+++ b/tools/XBMCLive/USplashThemes/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/tools/XBMCLive/USplashThemes/debian/control b/tools/XBMCLive/USplashThemes/debian/control
new file mode 100644
index 0000000000..257c477ce5
--- /dev/null
+++ b/tools/XBMCLive/USplashThemes/debian/control
@@ -0,0 +1,30 @@
+Source: usplash-theme-xbmc
+Priority: optional
+Section: misc
+Maintainer: Oumar Aziz OUATTARA (alias wattazoum) <wattazoum@gmail.com>
+Standards-Version: 3.7.2
+Build-Depends: debhelper, libusplash-dev
+
+Package: usplash-theme-xbmc-spinner-black
+Architecture: any
+Depends: ${shlibs:Depends}, initramfs-tools, usplash
+Description: XBMC Usplash theme for Ubuntu (Black edition)
+ Usplash theme for XBMC coming from http://du-duke.blogspot.com/2008/12/black-now-with-more-resolutions.html
+
+Package: usplash-theme-xbmc-spinner-black-silver
+Architecture: any
+Depends: ${shlibs:Depends}, initramfs-tools, usplash
+Description: XBMC Usplash theme for Ubuntu (Black Silver edition)
+ Usplash theme for XBMC Black Silver edition.
+
+Package: usplash-theme-xbmc-spinner-blue
+Architecture: any
+Depends: ${shlibs:Depends}, initramfs-tools, usplash
+Description: XBMC Usplash theme for Ubuntu (Blue edition)
+ Usplash theme for XBMC coming from http://du-duke.blogspot.com/2008/12/mr-blue-has-arrived.html
+
+Package: usplash-theme-xbmc-pulsating-logo
+Architecture: any
+Depends: ${shlibs:Depends}, initramfs-tools, usplash
+Description: XBMC Usplash theme for Ubuntu (Pulsating Logo edition)
+ Usplash theme for XBMC coming from http://du-duke.blogspot.com/2008/12/they-keep-coming.html
diff --git a/tools/XBMCLive/USplashThemes/debian/copyright b/tools/XBMCLive/USplashThemes/debian/copyright
new file mode 100644
index 0000000000..ab85f16ce0
--- /dev/null
+++ b/tools/XBMCLive/USplashThemes/debian/copyright
@@ -0,0 +1,208 @@
+Authors: http://du-duke.blogspot.com
+
+Licence:
+
+Creative Commons Legal Code ShareAlike 1.0
+
+CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL
+SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN
+ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON
+AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE
+INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS
+USE.
+
+License
+
+THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE
+COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY
+COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS
+AUTHORIZED UNDER THIS LICENSE IS PROHIBITED.
+
+BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO
+BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS
+CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND
+CONDITIONS.
+
+1. Definitions
+
+ 1. "Collective Work" means a work, such as a periodical issue, anthology
+ or encyclopedia, in which the Work in its entirety in unmodified form,
+ along with a number of other contributions, constituting separate and
+ independent works in themselves, are assembled into a collective whole. A
+ work that constitutes a Collective Work will not be considered a
+ Derivative Work (as defined below) for the purposes of this License.
+ 2. "Derivative Work" means a work based upon the Work or upon the Work
+ and other pre-existing works, such as a translation, musical arrangement,
+ dramatization, fictionalization, motion picture version, sound recording,
+ art reproduction, abridgment, condensation, or any other form in which
+ the Work may be recast, transformed, or adapted, except that a work that
+ constitutes a Collective Work will not be considered a Derivative Work
+ for the purpose of this License.
+ 3. "Licensor" means the individual or entity that offers the Work under
+ the terms of this License.
+ 4. "Original Author" means the individual or entity who created the Work.
+ 5. "Work" means the copyrightable work of authorship offered under the
+ terms of this License.
+ 6. "You" means an individual or entity exercising rights under this
+ License who has not previously violated the terms of this License with
+ respect to the Work, or who has received express permission from the
+ Licensor to exercise rights under this License despite a previous
+ violation.
+
+2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or
+restrict any rights arising from fair use, first sale or other limitations
+on the exclusive rights of the copyright owner under copyright law or other
+applicable laws.
+
+3. License Grant. Subject to the terms and conditions of this License,
+Licensor hereby grants You a worldwide, royalty-free, non-exclusive,
+perpetual (for the duration of the applicable copyright) license to exercise
+the rights in the Work as stated below:
+
+ 1. to reproduce the Work, to incorporate the Work into one or more
+ Collective Works, and to reproduce the Work as incorporated in the
+ Collective Works;
+ 2. to create and reproduce Derivative Works;
+ 3. to distribute copies or phonorecords of, display publicly, perform
+ publicly, and perform publicly by means of a digital audio transmission
+ the Work including as incorporated in Collective Works;
+ 4. to distribute copies or phonorecords of, display publicly, perform
+ publicly, and perform publicly by means of a digital audio transmission
+ Derivative Works;
+
+The above rights may be exercised in all media and formats whether now known
+or hereafter devised. The above rights include the right to make such
+modifications as are technically necessary to exercise the rights in other
+media and formats. All rights not expressly granted by Licensor are hereby
+reserved.
+
+4. Restrictions. The license granted in Section 3 above is expressly made
+subject to and limited by the following restrictions:
+
+ 1. You may distribute, publicly display, publicly perform, or publicly
+ digitally perform the Work only under the terms of this License, and You
+ must include a copy of, or the Uniform Resource Identifier for, this
+ License with every copy or phonorecord of the Work You distribute,
+ publicly display, publicly perform, or publicly digitally perform. You
+ may not offer or impose any terms on the Work that alter or restrict the
+ terms of this License or the recipients' exercise of the rights granted
+ hereunder. You may not sublicense the Work. You must keep intact all
+ notices that refer to this License and to the disclaimer of warranties.
+ You may not distribute, publicly display, publicly perform, or publicly
+ digitally perform the Work with any technological measures that control
+ access or use of the Work in a manner inconsistent with the terms of this
+ License Agreement. The above applies to the Work as incorporated in a
+ Collective Work, but this does not require the Collective Work apart from
+ the Work itself to be made subject to the terms of this License. If You
+ create a Collective Work, upon notice from any Licensor You must, to the
+ extent practicable, remove from the Collective Work any reference to such
+ Licensor or the Original Author, as requested. If You create a Derivative
+ Work, upon notice from any Licensor You must, to the extent practicable,
+ remove from the Derivative Work any reference to such Licensor or the
+ Original Author, as requested.
+ 2. You may distribute, publicly display, publicly perform, or publicly
+ digitally perform a Derivative Work only under the terms of this License,
+ and You must include a copy of, or the Uniform Resource Identifier for,
+ this License with every copy or phonorecord of each Derivative Work You
+ distribute, publicly display, publicly perform, or publicly digitally
+ perform. You may not offer or impose any terms on the Derivative Works
+ that alter or restrict the terms of this License or the recipients'
+ exercise of the rights granted hereunder, and You must keep intact all
+ notices that refer to this License and to the disclaimer of warranties.
+ You may not distribute, publicly display, publicly perform, or publicly
+ digitally perform the Derivative Work with any technological measures
+ that control access or use of the Work in a manner inconsistent with the
+ terms of this License Agreement. The above applies to the Derivative Work
+ as incorporated in a Collective Work, but this does not require the
+ Collective Work apart from the Derivative Work itself to be made subject
+ to the terms of this License.
+
+5. Representations, Warranties and Disclaimer
+
+ 1. By offering the Work for public release under this License, Licensor
+ represents and warrants that, to the best of Licensor's knowledge after
+ reasonable inquiry:
+ 1. Licensor has secured all rights in the Work necessary to grant
+ the license rights hereunder and to permit the lawful exercise of
+ the rights granted hereunder without You having any obligation to
+ pay any royalties, compulsory license fees, residuals or any other
+ payments;
+ 2. The Work does not infringe the copyright, trademark, publicity
+ rights, common law rights or any other right of any third party or
+ constitute defamation, invasion of privacy or other tortious injury
+ to any third party.
+ 2. EXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN
+ WRITING OR REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN "AS IS"
+ BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED
+ INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR
+ ACCURACY OF THE WORK.
+
+6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW,
+AND EXCEPT FOR DAMAGES ARISING FROM LIABILITY TO A THIRD PARTY RESULTING
+FROM BREACH OF THE WARRANTIES IN SECTION 5, IN NO EVENT WILL LICENSOR BE
+LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL,
+CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR
+THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+7. Termination
+
+ 1. This License and the rights granted hereunder will terminate
+ automatically upon any breach by You of the terms of this License.
+ Individuals or entities who have received Derivative Works or Collective
+ Works from You under this License, however, will not have their licenses
+ terminated provided such individuals or entities remain in full
+ compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will
+ survive any termination of this License.
+ 2. Subject to the above terms and conditions, the license granted here is
+ perpetual (for the duration of the applicable copyright in the Work).
+ Notwithstanding the above, Licensor reserves the right to release the
+ Work under different license terms or to stop distributing the Work at
+ any time; provided, however that any such election will not serve to
+ withdraw this License (or any other license that has been, or is required
+ to be, granted under the terms of this License), and this License will
+ continue in full force and effect unless terminated as stated above.
+
+8. Miscellaneous
+
+ 1. Each time You distribute or publicly digitally perform the Work or a
+ Collective Work, the Licensor offers to the recipient a license to the
+ Work on the same terms and conditions as the license granted to You under
+ this License.
+ 2. Each time You distribute or publicly digitally perform a Derivative
+ Work, Licensor offers to the recipient a license to the original Work on
+ the same terms and conditions as the license granted to You under this
+ License.
+ 3. If any provision of this License is invalid or unenforceable under
+ applicable law, it shall not affect the validity or enforceability of the
+ remainder of the terms of this License, and without further action by the
+ parties to this agreement, such provision shall be reformed to the
+ minimum extent necessary to make such provision valid and enforceable.
+ 4. No term or provision of this License shall be deemed waived and no
+ breach consented to unless such waiver or consent shall be in writing and
+ signed by the party to be charged with such waiver or consent.
+ 5. This License constitutes the entire agreement between the parties with
+ respect to the Work licensed here. There are no understandings,
+ agreements or representations with respect to the Work not specified
+ here. Licensor shall not be bound by any additional provisions that may
+ appear in any communication from You. This License may not be modified
+ without the mutual written agreement of the Licensor and You.
+
+Creative Commons is not a party to this License, and makes no warranty
+whatsoever in connection with the Work. Creative Commons will not be liable
+to You or any party on any legal theory for any damages whatsoever,
+including without limitation any general, special, incidental or
+consequential damages arising in connection to this license. Notwithstanding
+the foregoing two (2) sentences, if Creative Commons has expressly
+identified itself as the Licensor hereunder, it shall have all rights and
+obligations of Licensor.
+
+Except for the limited purpose of indicating to the public that the Work is
+licensed under the CCPL, neither party will use the trademark "Creative
+Commons" or any related trademark or logo of Creative Commons without the
+prior written consent of Creative Commons. Any permitted use will be in
+compliance with Creative Commons' then-current trademark usage guidelines,
+as may be published on its website or otherwise made available upon request
+from time to time.
+
+Creative Commons may be contacted at http://creativecommons.org/.
diff --git a/tools/XBMCLive/USplashThemes/debian/dirs b/tools/XBMCLive/USplashThemes/debian/dirs
new file mode 100644
index 0000000000..f90e3d051f
--- /dev/null
+++ b/tools/XBMCLive/USplashThemes/debian/dirs
@@ -0,0 +1 @@
+usr/lib/usplash/
diff --git a/tools/XBMCLive/USplashThemes/debian/rules b/tools/XBMCLive/USplashThemes/debian/rules
new file mode 100755
index 0000000000..6c7da1200e
--- /dev/null
+++ b/tools/XBMCLive/USplashThemes/debian/rules
@@ -0,0 +1,65 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export DH_OPTIONS
+
+CFLAGS = -g -Wall
+
+# Disable optimisations if noopt found in $DEB_BUILD_OPTIONS
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+ CFLAGS += -O0
+else
+ CFLAGS += -Os
+endif
+
+# Build the package
+build: build-stamp
+build-stamp:
+ dh_testdir
+ $(MAKE) build
+ touch $@
+
+# Install files
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k -s
+ dh_installdirs -s
+ $(MAKE) install prefix=$(CURDIR)/debian/tmp/usr
+ dh_install -s --sourcedir=$(CURDIR)/debian/tmp
+
+binary: binary-indep binary-arch
+
+# Build architecture-independent files here.
+binary-indep:
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: DH_OPTIONS=-s
+binary-arch: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs
+ dh_installdocs
+ dh_installman
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+
+# Clean up the mess we made
+clean:
+ dh_testdir
+ rm -f build-stamp
+ -$(MAKE) clean
+ dh_clean
+
+.PHONY: build install binary-indep binary-arch binary clean
diff --git a/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-pulsating-logo.install b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-pulsating-logo.install
new file mode 100644
index 0000000000..eb7be78979
--- /dev/null
+++ b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-pulsating-logo.install
@@ -0,0 +1 @@
+/usr/lib/usplash/xbmc-splash-pulsating-logo.so
diff --git a/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-pulsating-logo.postinst b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-pulsating-logo.postinst
new file mode 100644
index 0000000000..6f1a335e1d
--- /dev/null
+++ b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-pulsating-logo.postinst
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+ configure)
+ update-alternatives --install /usr/lib/usplash/usplash-artwork.so usplash-artwork.so /usr/lib/usplash/xbmc-splash-pulsating-logo.so 10
+ update-initramfs -u
+ ;;
+esac
diff --git a/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-pulsating-logo.postrm b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-pulsating-logo.postrm
new file mode 100644
index 0000000000..59c5b89af5
--- /dev/null
+++ b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-pulsating-logo.postrm
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+if [ "$1" = remove ]; then
+ update-initramfs -u
+fi
diff --git a/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black-silver.install b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black-silver.install
new file mode 100644
index 0000000000..aa9b08e82b
--- /dev/null
+++ b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black-silver.install
@@ -0,0 +1 @@
+/usr/lib/usplash/xbmc-splash-spinner-black-silver.so
diff --git a/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black-silver.postinst b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black-silver.postinst
new file mode 100644
index 0000000000..9060090ea2
--- /dev/null
+++ b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black-silver.postinst
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+ configure)
+ update-alternatives --install /usr/lib/usplash/usplash-artwork.so usplash-artwork.so /usr/lib/usplash/xbmc-splash-spinner-black-silver.so 10
+ update-initramfs -u
+ ;;
+esac
diff --git a/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black-silver.postrm b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black-silver.postrm
new file mode 100644
index 0000000000..59c5b89af5
--- /dev/null
+++ b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black-silver.postrm
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+if [ "$1" = remove ]; then
+ update-initramfs -u
+fi
diff --git a/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black.install b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black.install
new file mode 100644
index 0000000000..264cb36f33
--- /dev/null
+++ b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black.install
@@ -0,0 +1 @@
+/usr/lib/usplash/xbmc-splash-spinner-black.so
diff --git a/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black.postinst b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black.postinst
new file mode 100644
index 0000000000..e40d804cb0
--- /dev/null
+++ b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black.postinst
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+ configure)
+ update-alternatives --install /usr/lib/usplash/usplash-artwork.so usplash-artwork.so /usr/lib/usplash/xbmc-splash-spinner-black.so 10
+ update-initramfs -u
+ ;;
+esac
diff --git a/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black.postrm b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black.postrm
new file mode 100644
index 0000000000..59c5b89af5
--- /dev/null
+++ b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-black.postrm
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+if [ "$1" = remove ]; then
+ update-initramfs -u
+fi
diff --git a/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-blue.install b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-blue.install
new file mode 100644
index 0000000000..9badb362e4
--- /dev/null
+++ b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-blue.install
@@ -0,0 +1 @@
+/usr/lib/usplash/xbmc-splash-spinner-blue.so
diff --git a/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-blue.postinst b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-blue.postinst
new file mode 100644
index 0000000000..3bb6d60866
--- /dev/null
+++ b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-blue.postinst
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+ configure)
+ update-alternatives --install /usr/lib/usplash/usplash-artwork.so usplash-artwork.so /usr/lib/usplash/xbmc-splash-spinner-blue.so 10
+ update-initramfs -u
+ ;;
+esac
diff --git a/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-blue.postrm b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-blue.postrm
new file mode 100644
index 0000000000..59c5b89af5
--- /dev/null
+++ b/tools/XBMCLive/USplashThemes/debian/usplash-theme-xbmc-spinner-blue.postrm
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+if [ "$1" = remove ]; then
+ update-initramfs -u
+fi