# HG changeset patch # User Hans-G?nter Theisgen # Date 1647335013 -3600 # Node ID dac38080ab6b5cf6c89ae66de4d6f86952f6bb06 # Parent 365a61a6027744662dbbbc5575f612e4b2e514c4 updated libcaca and libcaca-dev (0.99.beta19 -> 0.99.beta20) diff -r 365a61a60277 -r dac38080ab6b libcaca-dev/receipt --- a/libcaca-dev/receipt Tue Mar 15 09:33:23 2022 +0100 +++ b/libcaca-dev/receipt Tue Mar 15 10:03:33 2022 +0100 @@ -1,22 +1,19 @@ # SliTaz package receipt. PACKAGE="libcaca-dev" -VERSION="0.99.beta19" +VERSION="0.99.beta20" CATEGORY="development" -SHORT_DESC="Text mode graphics utilities development files." +SHORT_DESC="Text mode graphics utilities - development files." MAINTAINER="paul@slitaz.org" LICENSE="GPL2" WEB_SITE="http://caca.zoy.org/wiki/libcaca" -WANTED="libcaca" DEPENDS="libcaca pkg-config" +WANTED="libcaca" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/lib/*a $fs/usr/lib + get_dev_files } diff -r 365a61a60277 -r dac38080ab6b libcaca/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libcaca/description.txt Tue Mar 15 10:03:33 2022 +0100 @@ -0,0 +1,11 @@ +Libcaca is a graphics library that outputs text instead of pixels, +so that it can work on older video cards or text terminals. +It is not unlike the famous AAlib library, with the following improvements: + +* Unicode support +* 2048 available colours (some devices can only handle 16) +* dithering of colour images +* advanced text canvas operations (blitting, rotations) + +Libcaca works in a text terminal (and should thus work on all Unix systems +including Mac OS X) using the S-Lang or ncurses libraries. diff -r 365a61a60277 -r dac38080ab6b libcaca/receipt --- a/libcaca/receipt Tue Mar 15 09:33:23 2022 +0100 +++ b/libcaca/receipt Tue Mar 15 10:03:33 2022 +0100 @@ -1,17 +1,18 @@ # SliTaz package receipt. PACKAGE="libcaca" -VERSION="0.99.beta19" +VERSION="0.99.beta20" CATEGORY="graphics" SHORT_DESC="Text mode graphics utilities." MAINTAINER="paul@slitaz.org" LICENSE="GPL2" +WEB_SITE="http://caca.zoy.org/wiki/libcaca" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://caca.zoy.org/wiki/libcaca" -WGET_URL="http://caca.zoy.org/files/libcaca/$TARBALL" +WGET_URL="https://github.com/cacalabs/$PACKAGE/archive/refs/tags/v$VERSION.tar.gz" -DEPENDS="ncurses imlib2" -BUILD_DEPENDS="ncurses-dev imlib2-dev xorg-libX11-dev" +DEPENDS="imlib2 ncurses" +BUILD_DEPENDS="automake imlib2-dev libtool ncurses-dev xorg-libX11-dev" # What is the latest version available today? current_version() @@ -23,27 +24,31 @@ # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr \ + ./bootstrap && + ./configure \ + --prefix=/usr \ $CONFIGURE_ARGS && - make - make DESTDIR=$DESTDIR install + make && + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { # hack for missing iso8859-1 folder - cook xorg-libX11 +# cook xorg-libX11 - mkdir -p $fs/usr/lib $fs/usr/share/X11/locale - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib + mkdir -p $fs/usr/lib +# mkdir -p $fs/usr/share/X11/locale + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib #cp -a $install/usr/lib/jni $fs/usr/lib - cp -a $install/usr/share $fs/usr - rm -rf $fs/usr/share/man + cp -a $install/usr/share $fs/usr + rm -rf $fs/usr/share/man # hack for missing iso8859-1 folder - cp -a $WOK/xorg-libX11/install/usr/share/X11/locale/iso8859-1 \ - $fs/usr/share/X11/locale +# cp -a $WOK/xorg-libX11/install/usr/share/X11/locale/iso8859-1 \ +# $fs/usr/share/X11/locale +# really needed? }