# HG changeset patch # User Aleksej Bobylev # Date 1457785744 -7200 # Node ID 5a73713a01e21acf3ec1fad6b12aa7738c58f213 # Parent 0dfcb8e462b4cba2bd141bf66b0789e591ddbc44 splashutils: fix build, update URLs, add description diff -r 0dfcb8e462b4 -r 5a73713a01e2 splashutils/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/splashutils/description.txt Sat Mar 12 14:29:04 2016 +0200 @@ -0,0 +1,3 @@ +fbsplash is a userspace implementation of a splash screen for Linux systems. It +provides a graphical environment during system boot using the Linux framebuffer +layer. It follows a design policy of being simple, lightweight and fast. diff -r 0dfcb8e462b4 -r 5a73713a01e2 splashutils/receipt --- a/splashutils/receipt Sat Mar 12 07:52:00 2016 +0100 +++ b/splashutils/receipt Sat Mar 12 14:29:04 2016 +0200 @@ -3,27 +3,28 @@ PACKAGE="splashutils" VERSION="1.5.4.4" CATEGORY="system-tools" -SHORT_DESC="Graphical boot utilities (fbsplash)." +SHORT_DESC="Framebuffer boot splash screen" MAINTAINER="devel@slitaz.org" -LICENSE="GPL2" +LICENSE="LGPL2 GPL2" TARBALL="$PACKAGE-$VERSION.tar.bz2" -WEB_SITE="http://fbsplash.alanhaggai.org/" -WGET_URL="http://fbsplash.alanhaggai.org/tarballs/files/$TARBALL" +WEB_SITE="https://sourceforge.net/projects/fbsplash.berlios/" +WGET_URL="$SF_MIRROR/fbsplash.berlios/$TARBALL" DEPENDS="libjpeg libpng gpm" -BUILD_DEPENDS="jpeg-dev libpng-dev gpm-dev freetype-dev" +BUILD_DEPENDS="autoconf automake libtool jpeg-dev gpm-dev libpng-dev \ +freetype-dev" # Rules to configure and make the package. compile_rules() { - cd $src - autoreconf + autoreconf --install --force LIBS="-lbz2" ./configure \ --sysconfdir=/etc \ --without-klibc \ - $CONFIGURE_ARGS && - make && make DESTDIR=$DESTDIR install + $CONFIGURE_ARGS || exit 1 + sed -i 's|-all-static||' $src/src/Makefile + make -j 1 && make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg.