# HG changeset patch # User Hans-G?nter Theisgen # Date 1572521807 -3600 # Node ID 7c02b01891054fb10a70d51e18c787ff6bb0a8a5 # Parent 78bea43b4006af0c9664c48b42a6f75e9b0638b0 updated urxvt and urxvt-full ( -> 9.22) diff -r 78bea43b4006 -r 7c02b0189105 urxvt-full/receipt --- a/urxvt-full/receipt Thu Oct 31 10:52:22 2019 +0100 +++ b/urxvt-full/receipt Thu Oct 31 12:36:47 2019 +0100 @@ -1,43 +1,44 @@ # SliTaz package receipt. PACKAGE="urxvt-full" -VERSION="9.20" +VERSION="9.22" CATEGORY="utilities" -SHORT_DESC="Terminal emulator with Unicode support for X11" -WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html" +TAGS="terminal" +SHORT_DESC="Terminal emulator with Unicode support for X11." MAINTAINER="al.bobylev@gmail.com" LICENSE="GPL2" +WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html" SOURCE="rxvt-unicode" TARBALL="$SOURCE-$VERSION.tar.bz2" -WGET_URL="http://dist.schmorp.de/rxvt-unicode/$TARBALL" -TAGS="terminal" - -DEPENDS="bzlib expat fontconfig freetype gcc-lib-base gdk-pixbuf glib \ -glibc-base libffi libgio libpng libxcb startup-notification xcb-util \ -xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXft xorg-libXrender zlib" -BUILD_DEPENDS="xorg-libX11-dev freetype-dev xorg-libXft-dev gdk-pixbuf-dev \ -startup-notification-dev ncursesw-extra" +WGET_URL="http://dist.schmorp.de/$SOURCE/$TARBALL" PROVIDE="urxvt" +DEPENDS="bzlib expat fontconfig freetype gcc-lib-base gdk-pixbuf glib \ + glibc-base libffi libgio libpng libxcb startup-notification xcb-util \ + xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXft xorg-libXrender zlib" +BUILD_DEPENDS="freetype-dev gdk-pixbuf-dev ncursesw-extra + startup-notification-dev xorg-libX11-dev xorg-libXft-dev" # Rules to configure and make the package. compile_rules() { - ./configure \ - --enable-everything \ - --enable-256-color \ - --with-terminfo=/usr/share/terminfo \ + ./configure \ + --enable-everything \ + --enable-256-color \ + --with-terminfo=/usr/share/terminfo \ $CONFIGURE_ARGS && - make && make install + make && + make install - R="$install/usr/share/terminfo"; mkdir -p $R + R="$install/usr/share/terminfo" + mkdir -p $R tic -s -o $R $src/doc/etc/rxvt-unicode.terminfo } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $install/* $fs - rm -rf $fs/usr/share/man + cp -a $install/* $fs + rm -rf $fs/usr/share/man } diff -r 78bea43b4006 -r 7c02b0189105 urxvt/receipt --- a/urxvt/receipt Thu Oct 31 10:52:22 2019 +0100 +++ b/urxvt/receipt Thu Oct 31 12:36:47 2019 +0100 @@ -1,32 +1,38 @@ # SliTaz package receipt. PACKAGE="urxvt" -VERSION="9.16" +VERSION="9.22" CATEGORY="utilities" -SHORT_DESC="terminal with unicode support" +TAGS="terminal" +SHORT_DESC="Terminal with unicode support." MAINTAINER="sygne@ombres.eu" LICENSE="GPL2" +WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html" + SOURCE="rxvt-unicode" TARBALL="$SOURCE-$VERSION.tar.bz2" -WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html" -WGET_URL="http://dist.schmorp.de/rxvt-unicode/$TARBALL" -TAGS="terminal" +WGET_URL="http://dist.schmorp.de/$SOURCE/$TARBALL" -DEPENDS="fontconfig xorg-libX11 expat freetype xorg-libXft zlib gcc-lib-base \ -xorg-xmessage" +DEPENDS="expat fontconfig freetype gcc-lib-base xorg-libX11 xorg-libXft \ + xorg-xmessage zlib" # Rules to configure and make the package. compile_rules() { - busybox patch -p0 -i $stuff/gcc.u - ./configure \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --disable-perl \ - --with-codesets='eu' \ - --mandir=/usr/share/man \ - $CONFIGURE_ARGS && \ - make && make DESTDIR=$DESTDIR install + cd src + patch --input=$stuff/patches/command.C-9.22 + patch --input=$stuff/patches/misc.C-9.22 + cd .. + + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --disable-perl \ + --with-codesets='eu' \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg.