wok rev 22084
updated urxvt and urxvt-full ( -> 9.22)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Oct 31 12:36:47 2019 +0100 (2019-10-31) |
parents | 78bea43b4006 |
children | 34f0263a1722 |
files | urxvt-full/receipt urxvt/receipt |
line diff
1.1 --- a/urxvt-full/receipt Thu Oct 31 10:52:22 2019 +0100 1.2 +++ b/urxvt-full/receipt Thu Oct 31 12:36:47 2019 +0100 1.3 @@ -1,43 +1,44 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="urxvt-full" 1.7 -VERSION="9.20" 1.8 +VERSION="9.22" 1.9 CATEGORY="utilities" 1.10 -SHORT_DESC="Terminal emulator with Unicode support for X11" 1.11 -WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html" 1.12 +TAGS="terminal" 1.13 +SHORT_DESC="Terminal emulator with Unicode support for X11." 1.14 MAINTAINER="al.bobylev@gmail.com" 1.15 LICENSE="GPL2" 1.16 +WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html" 1.17 1.18 SOURCE="rxvt-unicode" 1.19 TARBALL="$SOURCE-$VERSION.tar.bz2" 1.20 -WGET_URL="http://dist.schmorp.de/rxvt-unicode/$TARBALL" 1.21 -TAGS="terminal" 1.22 - 1.23 -DEPENDS="bzlib expat fontconfig freetype gcc-lib-base gdk-pixbuf glib \ 1.24 -glibc-base libffi libgio libpng libxcb startup-notification xcb-util \ 1.25 -xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXft xorg-libXrender zlib" 1.26 -BUILD_DEPENDS="xorg-libX11-dev freetype-dev xorg-libXft-dev gdk-pixbuf-dev \ 1.27 -startup-notification-dev ncursesw-extra" 1.28 +WGET_URL="http://dist.schmorp.de/$SOURCE/$TARBALL" 1.29 1.30 PROVIDE="urxvt" 1.31 +DEPENDS="bzlib expat fontconfig freetype gcc-lib-base gdk-pixbuf glib \ 1.32 + glibc-base libffi libgio libpng libxcb startup-notification xcb-util \ 1.33 + xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXft xorg-libXrender zlib" 1.34 +BUILD_DEPENDS="freetype-dev gdk-pixbuf-dev ncursesw-extra 1.35 + startup-notification-dev xorg-libX11-dev xorg-libXft-dev" 1.36 1.37 # Rules to configure and make the package. 1.38 compile_rules() 1.39 { 1.40 - ./configure \ 1.41 - --enable-everything \ 1.42 - --enable-256-color \ 1.43 - --with-terminfo=/usr/share/terminfo \ 1.44 + ./configure \ 1.45 + --enable-everything \ 1.46 + --enable-256-color \ 1.47 + --with-terminfo=/usr/share/terminfo \ 1.48 $CONFIGURE_ARGS && 1.49 - make && make install 1.50 + make && 1.51 + make install 1.52 1.53 - R="$install/usr/share/terminfo"; mkdir -p $R 1.54 + R="$install/usr/share/terminfo" 1.55 + mkdir -p $R 1.56 tic -s -o $R $src/doc/etc/rxvt-unicode.terminfo 1.57 } 1.58 1.59 # Rules to gen a SliTaz package suitable for Tazpkg. 1.60 genpkg_rules() 1.61 { 1.62 - cp -a $install/* $fs 1.63 - rm -rf $fs/usr/share/man 1.64 + cp -a $install/* $fs 1.65 + rm -rf $fs/usr/share/man 1.66 }
2.1 --- a/urxvt/receipt Thu Oct 31 10:52:22 2019 +0100 2.2 +++ b/urxvt/receipt Thu Oct 31 12:36:47 2019 +0100 2.3 @@ -1,32 +1,38 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="urxvt" 2.7 -VERSION="9.16" 2.8 +VERSION="9.22" 2.9 CATEGORY="utilities" 2.10 -SHORT_DESC="terminal with unicode support" 2.11 +TAGS="terminal" 2.12 +SHORT_DESC="Terminal with unicode support." 2.13 MAINTAINER="sygne@ombres.eu" 2.14 LICENSE="GPL2" 2.15 +WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html" 2.16 + 2.17 SOURCE="rxvt-unicode" 2.18 TARBALL="$SOURCE-$VERSION.tar.bz2" 2.19 -WEB_SITE="http://software.schmorp.de/pkg/rxvt-unicode.html" 2.20 -WGET_URL="http://dist.schmorp.de/rxvt-unicode/$TARBALL" 2.21 -TAGS="terminal" 2.22 +WGET_URL="http://dist.schmorp.de/$SOURCE/$TARBALL" 2.23 2.24 -DEPENDS="fontconfig xorg-libX11 expat freetype xorg-libXft zlib gcc-lib-base \ 2.25 -xorg-xmessage" 2.26 +DEPENDS="expat fontconfig freetype gcc-lib-base xorg-libX11 xorg-libXft \ 2.27 + xorg-xmessage zlib" 2.28 2.29 # Rules to configure and make the package. 2.30 compile_rules() 2.31 { 2.32 - busybox patch -p0 -i $stuff/gcc.u 2.33 - ./configure \ 2.34 - --prefix=/usr \ 2.35 - --infodir=/usr/share/info \ 2.36 - --disable-perl \ 2.37 - --with-codesets='eu' \ 2.38 - --mandir=/usr/share/man \ 2.39 - $CONFIGURE_ARGS && \ 2.40 - make && make DESTDIR=$DESTDIR install 2.41 + cd src 2.42 + patch --input=$stuff/patches/command.C-9.22 2.43 + patch --input=$stuff/patches/misc.C-9.22 2.44 + cd .. 2.45 + 2.46 + ./configure \ 2.47 + --prefix=/usr \ 2.48 + --infodir=/usr/share/info \ 2.49 + --disable-perl \ 2.50 + --with-codesets='eu' \ 2.51 + --mandir=/usr/share/man \ 2.52 + $CONFIGURE_ARGS && 2.53 + make && 2.54 + make DESTDIR=$DESTDIR install 2.55 } 2.56 2.57 # Rules to gen a SliTaz package suitable for Tazpkg.