wok-next rev 18973
splashutils: fix build, update URLs, add description
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat Mar 12 14:29:04 2016 +0200 (2016-03-12) |
parents | 0dfcb8e462b4 |
children | 41d1330c93aa |
files | splashutils/description.txt splashutils/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/splashutils/description.txt Sat Mar 12 14:29:04 2016 +0200 1.3 @@ -0,0 +1,3 @@ 1.4 +fbsplash is a userspace implementation of a splash screen for Linux systems. It 1.5 +provides a graphical environment during system boot using the Linux framebuffer 1.6 +layer. It follows a design policy of being simple, lightweight and fast.
2.1 --- a/splashutils/receipt Sat Mar 12 07:52:00 2016 +0100 2.2 +++ b/splashutils/receipt Sat Mar 12 14:29:04 2016 +0200 2.3 @@ -3,27 +3,28 @@ 2.4 PACKAGE="splashutils" 2.5 VERSION="1.5.4.4" 2.6 CATEGORY="system-tools" 2.7 -SHORT_DESC="Graphical boot utilities (fbsplash)." 2.8 +SHORT_DESC="Framebuffer boot splash screen" 2.9 MAINTAINER="devel@slitaz.org" 2.10 -LICENSE="GPL2" 2.11 +LICENSE="LGPL2 GPL2" 2.12 TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.13 -WEB_SITE="http://fbsplash.alanhaggai.org/" 2.14 -WGET_URL="http://fbsplash.alanhaggai.org/tarballs/files/$TARBALL" 2.15 +WEB_SITE="https://sourceforge.net/projects/fbsplash.berlios/" 2.16 +WGET_URL="$SF_MIRROR/fbsplash.berlios/$TARBALL" 2.17 2.18 DEPENDS="libjpeg libpng gpm" 2.19 -BUILD_DEPENDS="jpeg-dev libpng-dev gpm-dev freetype-dev" 2.20 +BUILD_DEPENDS="autoconf automake libtool jpeg-dev gpm-dev libpng-dev \ 2.21 +freetype-dev" 2.22 2.23 # Rules to configure and make the package. 2.24 compile_rules() 2.25 { 2.26 - cd $src 2.27 - autoreconf 2.28 + autoreconf --install --force 2.29 LIBS="-lbz2" 2.30 ./configure \ 2.31 --sysconfdir=/etc \ 2.32 --without-klibc \ 2.33 - $CONFIGURE_ARGS && 2.34 - make && make DESTDIR=$DESTDIR install 2.35 + $CONFIGURE_ARGS || exit 1 2.36 + sed -i 's|-all-static||' $src/src/Makefile 2.37 + make -j 1 && make DESTDIR=$DESTDIR install 2.38 } 2.39 2.40 # Rules to gen a SliTaz package suitable for Tazpkg.