diff --git a/packages/sysutils/busybox/meta b/packages/sysutils/busybox/meta index 5850813183..b1762edbcc 100644 --- a/packages/sysutils/busybox/meta +++ b/packages/sysutils/busybox/meta @@ -25,7 +25,7 @@ PKG_ARCH="any" PKG_LICENSE="GPL" PKG_SITE="http://www.busybox.net" PKG_URL="http://busybox.net/downloads/$PKG_NAME-$PKG_VERSION.tar.bz2" -PKG_DEPENDS="bash kexec-tools v86d splashutils hdparm speedcontrol pastebinit zip" +PKG_DEPENDS="bash kexec-tools hdparm speedcontrol pastebinit zip" PKG_BUILD_DEPENDS="toolchain busybox-hosttools" PKG_PRIORITY="required" PKG_SECTION="system" diff --git a/packages/sysutils/splashutils/build b/packages/sysutils/splashutils/build deleted file mode 100755 index 0e551e8120..0000000000 --- a/packages/sysutils/splashutils/build +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv) -# -# 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 OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -. config/options $1 - -cd $PKG_BUILD -./configure --host=$TARGET_NAME \ - --build=$HOST_NAME \ - --enable-shared \ - --disable-static \ - --disable-debug \ - --disable-static-binaries \ - --disable-deprecated \ - --disable-fbcondecor \ - --disable-helper \ - --disable-misc \ - --with-gnu-ld \ - --without-gpm \ - --without-mng \ - --with-png \ - --with-ttf \ - --with-ttf-kernel \ - --with-essential-prefix="/" \ - --with-essential-bindir="/bin" \ - --with-essential-sbindir="/sbin" \ - --with-essential-libdir="/lib" \ - --with-themedir="/etc/splash" \ - --without-klibc - -make diff --git a/packages/sysutils/splashutils/init.d/04_splash b/packages/sysutils/splashutils/init.d/04_splash deleted file mode 100644 index 7a380e7bb7..0000000000 --- a/packages/sysutils/splashutils/init.d/04_splash +++ /dev/null @@ -1,41 +0,0 @@ -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv) -# -# 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 OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -# -# make variable directory structure -# -# runlevels: openelec, installer, textmode - -if [ ! "$SPLASH" = "no" ]; then - progress "starting splash" - if [ -z "$SPLASH_THEME" ]; then - SPLASH_THEME="default" - fi - mkdir -p /run/splash/cache/ - fbsplashd --theme=$SPLASH_THEME --type=bootup - - echo "set tty silent 2" > /run/splash/cache/.splash - echo "set tty verbose 6" > /run/splash/cache/.splash - echo "set mode silent" > /run/splash/cache/.splash - echo "set message `lsb_release`" > /run/splash/cache/.splash - echo "repaint" > /run/splash/cache/.splash - chvt 2 -fi - diff --git a/packages/sysutils/splashutils/install b/packages/sysutils/splashutils/install deleted file mode 100755 index e46fbe77f9..0000000000 --- a/packages/sysutils/splashutils/install +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv) -# -# 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 OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -. config/options $1 - -mkdir -p $INSTALL/lib - cp -P $PKG_BUILD/src/.libs/libfbsplash.so* $INSTALL/lib - cp -P $PKG_BUILD/src/.libs/libfbsplashrender.so* $INSTALL/lib - rm -rf $INSTALL/lib/libfbsplashrender.so*T - -mkdir -p $INSTALL/bin - cp $PKG_BUILD/src/.libs/fbsplashd $INSTALL/bin - -mkdir -p $INSTALL/usr/bin - cp $PKG_BUILD/src/.libs/splash_util $INSTALL/usr/bin - -mkdir -p $INSTALL/etc/splash - if [ -d $PROJECT_DIR/$PROJECT/splash ]; then - cp -R $PROJECT_DIR/$PROJECT/splash/* $INSTALL/etc/splash - else - cp -R $PKG_DIR/splash/default $INSTALL/etc/splash - fi diff --git a/packages/sysutils/splashutils/meta b/packages/sysutils/splashutils/meta deleted file mode 100644 index a6738214f2..0000000000 --- a/packages/sysutils/splashutils/meta +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv) -# -# 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 OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -PKG_NAME="splashutils" -PKG_VERSION="1.5.4.4" -PKG_REV="1" -PKG_ARCH="any" -PKG_LICENSE="GPL" -PKG_SITE="http://dev.gentoo.org/~spock/projects/fbsplash" -PKG_URL="http://dev.gentoo.org/~spock/projects/fbsplash/archive/$PKG_NAME-$PKG_VERSION.tar.bz2" -PKG_DEPENDS="libpng libjpeg-turbo freetype" -PKG_BUILD_DEPENDS="toolchain libpng libjpeg-turbo freetype" -PKG_PRIORITY="optional" -PKG_SECTION="system" -PKG_SHORTDESC="splashutils:" -PKG_LONGDESC="splashutils.." -PKG_IS_ADDON="no" - -PKG_AUTORECONF="yes" diff --git a/packages/sysutils/splashutils/patches/splashutils-1.5.4.4-fifodir.patch b/packages/sysutils/splashutils/patches/splashutils-1.5.4.4-fifodir.patch deleted file mode 100644 index 20d3990c80..0000000000 --- a/packages/sysutils/splashutils/patches/splashutils-1.5.4.4-fifodir.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff -Naur splashutils-1.5.4.4/src/fbsplash.h splashutils-1.5.4.4.patch/src/fbsplash.h ---- splashutils-1.5.4.4/src/fbsplash.h 2011-06-12 23:45:22.000000000 +0200 -+++ splashutils-1.5.4.4.patch/src/fbsplash.h 2012-02-16 07:54:55.028245671 +0100 -@@ -6,7 +6,7 @@ - #include - #include - --#define FBSPLASH_DIR "//lib/splash" -+#define FBSPLASH_DIR "/run/splash" - #define FBSPLASH_CACHEDIR FBSPLASH_DIR"/cache" - #define FBSPLASH_PIDFILE FBSPLASH_CACHEDIR"/daemon.pid" - #define FBSPLASH_PROFILE FBSPLASH_CACHEDIR"/profile" -diff -Naur splashutils-1.5.4.4/src/fbsplash.h.in splashutils-1.5.4.4.patch/src/fbsplash.h.in ---- splashutils-1.5.4.4/src/fbsplash.h.in 2011-06-12 23:43:39.000000000 +0200 -+++ splashutils-1.5.4.4.patch/src/fbsplash.h.in 2012-02-16 07:54:39.069954498 +0100 -@@ -6,7 +6,7 @@ - #include - #include - --#define FBSPLASH_DIR "@libdir@/splash" -+#define FBSPLASH_DIR "/run/splash" - #define FBSPLASH_CACHEDIR FBSPLASH_DIR"/cache" - #define FBSPLASH_PIDFILE FBSPLASH_CACHEDIR"/daemon.pid" - #define FBSPLASH_PROFILE FBSPLASH_CACHEDIR"/profile" diff --git a/packages/sysutils/splashutils/splash/default/1024x768.cfg b/packages/sysutils/splashutils/splash/default/1024x768.cfg deleted file mode 100644 index b1a008f62c..0000000000 --- a/packages/sysutils/splashutils/splash/default/1024x768.cfg +++ /dev/null @@ -1,16 +0,0 @@ -# This is a gensplash configuration file for -# theme OpenELEC, resolution 1024x768. - -# bgcolor is the text background (i.e. transparent) color. -bgcolor=0 - -# ttf message output parameters -text_x=10 -text_y=10 -text_size=18 -text_color=#83b9dd -text_font=/usr/share/fonts/liberation/LiberationSans-Regular.ttf - -# name of the picture file (full path recommended) -pic=/etc/splash/default/images/splash-1024x768.png -silentpic=/etc/splash/default/images/splash-1024x768.png diff --git a/packages/sysutils/splashutils/splash/default/1280x1024.cfg b/packages/sysutils/splashutils/splash/default/1280x1024.cfg deleted file mode 100644 index bd5b3ee53b..0000000000 --- a/packages/sysutils/splashutils/splash/default/1280x1024.cfg +++ /dev/null @@ -1,16 +0,0 @@ -# This is a gensplash configuration file for -# theme OpenELEC, resolution 1280x1024. - -# bgcolor is the text background (i.e. transparent) color. -bgcolor=0 - -# ttf message output parameters -text_x=10 -text_y=10 -text_size=18 -text_color=#83b9dd -text_font=/usr/share/fonts/liberation/LiberationSans-Regular.ttf - -# name of the picture file (full path recommended) -pic=/etc/splash/default/images/splash-1280x1024.png -silentpic=/etc/splash/default/images/splash-1280x1024.png diff --git a/packages/sysutils/splashutils/splash/default/1280x720.cfg b/packages/sysutils/splashutils/splash/default/1280x720.cfg deleted file mode 100644 index 976cd83da1..0000000000 --- a/packages/sysutils/splashutils/splash/default/1280x720.cfg +++ /dev/null @@ -1,16 +0,0 @@ -# This is a gensplash configuration file for -# theme OpenELEC, resolution 1280x720. - -# bgcolor is the text background (i.e. transparent) color. -bgcolor=0 - -# ttf message output parameters -text_x=10 -text_y=10 -text_size=18 -text_color=#83b9dd -text_font=/usr/share/fonts/liberation/LiberationSans-Regular.ttf - -# name of the picture file (full path recommended) -pic=/etc/splash/default/images/splash-1280x720.png -silentpic=/etc/splash/default/images/splash-1280x720.png diff --git a/packages/sysutils/splashutils/splash/default/1280x800.cfg b/packages/sysutils/splashutils/splash/default/1280x800.cfg deleted file mode 100644 index 4b54a843a6..0000000000 --- a/packages/sysutils/splashutils/splash/default/1280x800.cfg +++ /dev/null @@ -1,16 +0,0 @@ -# This is a gensplash configuration file for -# theme OpenELEC, resolution 1280x800. - -# bgcolor is the text background (i.e. transparent) color. -bgcolor=0 - -# ttf message output parameters -text_x=10 -text_y=10 -text_size=18 -text_color=#83b9dd -text_font=/usr/share/fonts/liberation/LiberationSans-Regular.ttf - -# name of the picture file (full path recommended) -pic=/etc/splash/default/images/splash-1280x800.png -silentpic=/etc/splash/default/images/splash-1280x800.png diff --git a/packages/sysutils/splashutils/splash/default/1400x1050.cfg b/packages/sysutils/splashutils/splash/default/1400x1050.cfg deleted file mode 100644 index f4d3f01040..0000000000 --- a/packages/sysutils/splashutils/splash/default/1400x1050.cfg +++ /dev/null @@ -1,16 +0,0 @@ -# This is a gensplash configuration file for -# theme OpenELEC, resolution 1400x1050. - -# bgcolor is the text background (i.e. transparent) color. -bgcolor=0 - -# ttf message output parameters -text_x=10 -text_y=10 -text_size=18 -text_color=#83b9dd -text_font=/usr/share/fonts/liberation/LiberationSans-Regular.ttf - -# name of the picture file (full path recommended) -pic=/etc/splash/default/images/splash-1400x1050.png -silentpic=/etc/splash/default/images/splash-1400x1050.png diff --git a/packages/sysutils/splashutils/splash/default/1600x1200.cfg b/packages/sysutils/splashutils/splash/default/1600x1200.cfg deleted file mode 100644 index bce0089d5b..0000000000 --- a/packages/sysutils/splashutils/splash/default/1600x1200.cfg +++ /dev/null @@ -1,16 +0,0 @@ -# This is a gensplash configuration file for -# theme OpenELEC, resolution 1600x1200. - -# bgcolor is the text background (i.e. transparent) color. -bgcolor=0 - -# ttf message output parameters -text_x=10 -text_y=10 -text_size=18 -text_color=#83b9dd -text_font=/usr/share/fonts/liberation/LiberationSans-Regular.ttf - -# name of the picture file (full path recommended) -pic=/etc/splash/default/images/splash-1600x1200.png -silentpic=/etc/splash/default/images/splash-1600x1200.png diff --git a/packages/sysutils/splashutils/splash/default/1600x900.cfg b/packages/sysutils/splashutils/splash/default/1600x900.cfg deleted file mode 100644 index 21fb9da462..0000000000 --- a/packages/sysutils/splashutils/splash/default/1600x900.cfg +++ /dev/null @@ -1,16 +0,0 @@ -# This is a gensplash configuration file for -# theme OpenELEC, resolution 1600x900. - -# bgcolor is the text background (i.e. transparent) color. -bgcolor=0 - -# ttf message output parameters -text_x=10 -text_y=10 -text_size=18 -text_color=#83b9dd -text_font=/usr/share/fonts/liberation/LiberationSans-Regular.ttf - -# name of the picture file (full path recommended) -pic=/etc/splash/default/images/splash-1600x900.png -silentpic=/etc/splash/default/images/splash-1600x900.png diff --git a/packages/sysutils/splashutils/splash/default/1920x1080.cfg b/packages/sysutils/splashutils/splash/default/1920x1080.cfg deleted file mode 100644 index f6c2ebe67a..0000000000 --- a/packages/sysutils/splashutils/splash/default/1920x1080.cfg +++ /dev/null @@ -1,16 +0,0 @@ -# This is a gensplash configuration file for -# theme OpenELEC, resolution 1920x1080. - -# bgcolor is the text background (i.e. transparent) color. -bgcolor=0 - -# ttf message output parameters -text_x=10 -text_y=10 -text_size=18 -text_color=#83b9dd -text_font=/usr/share/fonts/liberation/LiberationSans-Regular.ttf - -# name of the picture file (full path recommended) -pic=/etc/splash/default/images/splash-1920x1080.png -silentpic=/etc/splash/default/images/splash-1920x1080.png diff --git a/packages/sysutils/splashutils/splash/default/640x480.cfg b/packages/sysutils/splashutils/splash/default/640x480.cfg deleted file mode 100644 index 4c16e75281..0000000000 --- a/packages/sysutils/splashutils/splash/default/640x480.cfg +++ /dev/null @@ -1,16 +0,0 @@ -# This is a gensplash configuration file for -# theme OpenELEC, resolution 640x480. - -# bgcolor is the text background (i.e. transparent) color. -bgcolor=0 - -# ttf message output parameters -text_x=10 -text_y=10 -text_size=18 -text_color=#83b9dd -text_font=/usr/share/fonts/liberation/LiberationSans-Regular.ttf - -# name of the picture file (full path recommended) -pic=/etc/splash/default/images/splash-640x480.png -silentpic=/etc/splash/default/images/splash-640x480.png diff --git a/packages/sysutils/splashutils/splash/default/800x600.cfg b/packages/sysutils/splashutils/splash/default/800x600.cfg deleted file mode 100644 index b0e81f7e33..0000000000 --- a/packages/sysutils/splashutils/splash/default/800x600.cfg +++ /dev/null @@ -1,16 +0,0 @@ -# This is a gensplash configuration file for -# theme OpenELEC, resolution 800x600. - -# bgcolor is the text background (i.e. transparent) color. -bgcolor=0 - -# ttf message output parameters -text_x=10 -text_y=10 -text_size=18 -text_color=#83b9dd -text_font=/usr/share/fonts/liberation/LiberationSans-Regular.ttf - -# name of the picture file (full path recommended) -pic=/etc/splash/default/images/splash-800x600.png -silentpic=/etc/splash/default/images/splash-800x600.png diff --git a/packages/sysutils/splashutils/splash/default/images/splash-1024x768.png b/packages/sysutils/splashutils/splash/default/images/splash-1024x768.png deleted file mode 100644 index c73303e0bc..0000000000 Binary files a/packages/sysutils/splashutils/splash/default/images/splash-1024x768.png and /dev/null differ diff --git a/packages/sysutils/splashutils/splash/default/images/splash-1280x1024.png b/packages/sysutils/splashutils/splash/default/images/splash-1280x1024.png deleted file mode 100644 index cd20bc2c76..0000000000 Binary files a/packages/sysutils/splashutils/splash/default/images/splash-1280x1024.png and /dev/null differ diff --git a/packages/sysutils/splashutils/splash/default/images/splash-1280x720.png b/packages/sysutils/splashutils/splash/default/images/splash-1280x720.png deleted file mode 100644 index c280d51df7..0000000000 Binary files a/packages/sysutils/splashutils/splash/default/images/splash-1280x720.png and /dev/null differ diff --git a/packages/sysutils/splashutils/splash/default/images/splash-1280x800.png b/packages/sysutils/splashutils/splash/default/images/splash-1280x800.png deleted file mode 100644 index cf78cfb915..0000000000 Binary files a/packages/sysutils/splashutils/splash/default/images/splash-1280x800.png and /dev/null differ diff --git a/packages/sysutils/splashutils/splash/default/images/splash-1400x1050.png b/packages/sysutils/splashutils/splash/default/images/splash-1400x1050.png deleted file mode 100644 index 0239c420eb..0000000000 Binary files a/packages/sysutils/splashutils/splash/default/images/splash-1400x1050.png and /dev/null differ diff --git a/packages/sysutils/splashutils/splash/default/images/splash-1600x1200.png b/packages/sysutils/splashutils/splash/default/images/splash-1600x1200.png deleted file mode 100644 index affdf2760c..0000000000 Binary files a/packages/sysutils/splashutils/splash/default/images/splash-1600x1200.png and /dev/null differ diff --git a/packages/sysutils/splashutils/splash/default/images/splash-1600x900.png b/packages/sysutils/splashutils/splash/default/images/splash-1600x900.png deleted file mode 100644 index db2a364f3e..0000000000 Binary files a/packages/sysutils/splashutils/splash/default/images/splash-1600x900.png and /dev/null differ diff --git a/packages/sysutils/splashutils/splash/default/images/splash-1920x1080.png b/packages/sysutils/splashutils/splash/default/images/splash-1920x1080.png deleted file mode 100644 index 316c0d7087..0000000000 Binary files a/packages/sysutils/splashutils/splash/default/images/splash-1920x1080.png and /dev/null differ diff --git a/packages/sysutils/splashutils/splash/default/images/splash-640x480.png b/packages/sysutils/splashutils/splash/default/images/splash-640x480.png deleted file mode 100644 index b366a01669..0000000000 Binary files a/packages/sysutils/splashutils/splash/default/images/splash-640x480.png and /dev/null differ diff --git a/packages/sysutils/splashutils/splash/default/images/splash-800x600.png b/packages/sysutils/splashutils/splash/default/images/splash-800x600.png deleted file mode 100644 index d1a1a848ba..0000000000 Binary files a/packages/sysutils/splashutils/splash/default/images/splash-800x600.png and /dev/null differ