wok-next rev 20985
Small updates
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat Sep 29 16:54:07 2018 +0300 (2018-09-29) |
parents | 49a10d2a7814 |
children | 6fe02d53a2a2 |
files | c-icap/receipt c-icap/stuff/c-icapd c_icap/receipt c_icap/stuff/c-icapd calcurse/receipt chrpath/receipt cld2/receipt clex/receipt clex/stuff/clex.desktop clex/stuff/clex.png cmus/receipt cplay/receipt cplay/stuff/patches/destdir.patch cplay/stuff/patches/fr.po.patch cplay/stuff/patches/series dar/.icon.png dar/receipt darkstat/receipt dfu-util/receipt dmidecode/receipt dosbox-mb/receipt dosbox-mb/stuff/dosbox.desktop dosbox-mb/stuff/dosbox.png dosbox/.icon.png dosbox/receipt libcue/receipt sdl-sound/receipt squidclamav/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/c-icap/receipt Sat Sep 29 16:54:07 2018 +0300 1.3 @@ -0,0 +1,75 @@ 1.4 +# SliTaz package receipt v2. 1.5 + 1.6 +PACKAGE="c-icap" 1.7 +VERSION="0.5.5" 1.8 +CATEGORY="network" 1.9 +SHORT_DESC="Implementation of an ICAP server" 1.10 +MAINTAINER="erjo@slitaz.org" 1.11 +LICENSE="LGPL2.1" 1.12 +WEB_SITE="http://c-icap.sourceforge.net/" 1.13 + 1.14 +TARBALL="c_icap-$VERSION.tar.gz" 1.15 +WGET_URL="$SF_MIRROR/c-icap/$TARBALL" 1.16 + 1.17 +BUILD_DEPENDS="openssl-dev zlib-dev bzip2-dev brotli-dev openldap-dev pcre-dev" 1.18 +SPLIT="$PACKAGE-dev" 1.19 + 1.20 +compile_rules() { 1.21 + ./configure \ 1.22 + --sysconfdir=/etc/c-icap \ 1.23 + --enable-large-files \ 1.24 + $CONFIGURE_ARGS && 1.25 + fix libtool && 1.26 + make && 1.27 + make install || return 1 1.28 + 1.29 + mkdir -p $install/var/log/c-icap/ 1.30 + install -Dm755 $stuff/c-icapd $install/etc/init.d/c-icapd 1.31 + 1.32 + # Fix config file 1.33 + sed -i -e "s|YourServerName|localhost|; 1.34 + s|/usr/var/log|/var/log/c-icap/|; 1.35 + s|/usr/var/run/|/var/run/c-icap|; 1.36 + s|/usr/etc|/etc/c-icap|" $install/etc/c-icap/c-icap.conf 1.37 + chmod -x $install/etc/c-icap/* 1.38 +} 1.39 + 1.40 +genpkg_rules() { 1.41 + case $PACKAGE in 1.42 + c-icap) 1.43 + copy @std var/log/c-icap/ 1.44 + DEPENDS="brotli bzlib libldap libpcre openssl zlib" 1.45 + CONFIG_FILES="/etc/c-icap/" 1.46 + ;; 1.47 + *-dev) 1.48 + copy @dev 1.49 + ;; 1.50 + esac 1.51 +} 1.52 + 1.53 +post_install_c_icap() { 1.54 + [ -z "$1" -a ! -s /aufs-umount.sh ] && /etc/init.d/c-icapd start 1.55 + 1.56 + [ -n "$quiet" ] || cat <<EOF 1.57 + 1.58 + .-----------------------------------------------. 1.59 + | To start c-icap server you can run: | 1.60 + | | 1.61 + | /etc/init.d/c-icapd start | 1.62 + | | 1.63 + |Or add c-icapd to RUN_DAEMONS in /etc/rcS.conf | 1.64 + '-----------------------------------------------' 1.65 +EOF 1.66 +} 1.67 + 1.68 +pre_remove_c_icap() { 1.69 + echo "Stopping daemon..." 1.70 + if (ps | grep -q c-icap); then 1.71 + chroot "$1/" /etc/init.d/c-icapd stop 1.72 + fi 1.73 +} 1.74 +post_remove_c_icap() { 1.75 + echo "Removing stalled files..." 1.76 + [ -d "$1/var/log/c-icap" ] && rm -rf "$1/var/log/c-icap" 1.77 + [ -d "$1/usr/run/c-icap" ] && rm -rf "$1/usr/run/c-icap" 1.78 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/c-icap/stuff/c-icapd Sat Sep 29 16:54:07 2018 +0300 2.3 @@ -0,0 +1,57 @@ 2.4 +#!/bin/sh 2.5 +# /etc/init.d/c-icap: Start, stop and restart ICAP server on SliTaz, at 2.6 +# boot time or with the command line. 2.7 +# 2.8 +# To start ICAP server at boot time, just put c-icapd in the $RUN_DAEMONS 2.9 +# variable of /etc/rcS.conf and configure options with /etc/daemons.conf 2.10 +# 2.11 +. /etc/init.d/rc.functions 2.12 +. /etc/daemons.conf 2.13 + 2.14 +NAME=c-icap 2.15 +DESC="$(_ '%s server' ICAP)" 2.16 +DAEMON=/usr/bin/c-icap 2.17 +OPTIONS="" 2.18 +PIDFILE=/var/run/c-icap/c-icap.pid 2.19 + 2.20 +[ -d /var/run/c-icap ] || mkdir -p /var/run/c-icap 2.21 +case "$1" in 2.22 + start) 2.23 + if active_pidfile $PIDFILE $NAME ; then 2.24 + _ '%s is already running.' $NAME 2.25 + exit 1 2.26 + fi 2.27 + action 'Starting %s: %s...' "$DESC" $NAME 2.28 + $DAEMON $OPTIONS 2.29 + status 2.30 + ;; 2.31 + stop) 2.32 + if ! active_pidfile $PIDFILE $NAME ; then 2.33 + _ '%s is not running.' $NAME 2.34 + exit 1 2.35 + fi 2.36 + action 'Stopping %s: %s...' "$DESC" $NAME 2.37 + kill $(cat $PIDFILE) 2.38 + status 2.39 + ;; 2.40 + restart|reload) 2.41 + if ! active_pidfile $PIDFILE $NAME ; then 2.42 + _ '%s is not running.' $NAME 2.43 + exit 1 2.44 + fi 2.45 + action 'Restarting %s: %s...' "$DESC" $NAME 2.46 + kill $(cat $PIDFILE) 2.47 + sleep 2 2.48 + $DAEMON $OPTIONS 2.49 + status 2.50 + ;; 2.51 + test) 2.52 + configtest ;; 2.53 + *) 2.54 + emsg "<n><b>$(_ 'Usage:')</b> $0 [start|stop|restart|reload|test]" 2.55 + newline 2.56 + exit 1 2.57 + ;; 2.58 +esac 2.59 + 2.60 +exit 0
3.1 --- a/c_icap/receipt Fri Sep 28 15:13:36 2018 +0300 3.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 3.3 @@ -1,75 +0,0 @@ 3.4 -# SliTaz package receipt v2. 3.5 - 3.6 -PACKAGE="c_icap" 3.7 -VERSION="0.5.3" 3.8 -CATEGORY="network" 3.9 -SHORT_DESC="Implementation of an ICAP server" 3.10 -MAINTAINER="erjo@slitaz.org" 3.11 -LICENSE="LGPL2.1" 3.12 -WEB_SITE="http://c-icap.sourceforge.net/" 3.13 -REPOLOGY="c-icap" 3.14 - 3.15 -TARBALL="$PACKAGE-$VERSION.tar.gz" 3.16 -WGET_URL="$SF_MIRROR/c-icap/$TARBALL" 3.17 - 3.18 -BUILD_DEPENDS="openssl-dev zlib-dev bzip2-dev brotli-dev openldap-dev pcre-dev" 3.19 -SPLIT="c_icap-dev" 3.20 - 3.21 -compile_rules() { 3.22 - ./configure \ 3.23 - --sysconfdir=/etc/c-icap \ 3.24 - --enable-large-files \ 3.25 - $CONFIGURE_ARGS && 3.26 - fix libtool && 3.27 - make && 3.28 - make install || return 1 3.29 - 3.30 - mkdir -p $install/var/log/c-icap/ 3.31 - install -Dm755 $stuff/c-icapd $install/etc/init.d/c-icapd 3.32 - 3.33 - # Fix config file 3.34 - sed -i -e "s|YourServerName|localhost|; 3.35 - s|/usr/var/log|/var/log/c-icap/|; 3.36 - s|/usr/var/run/|/var/run/c-icap|; 3.37 - s|/usr/etc|/etc/c-icap|" $install/etc/c-icap/c-icap.conf 3.38 - chmod -x $install/etc/c-icap/* 3.39 -} 3.40 - 3.41 -genpkg_rules() { 3.42 - case $PACKAGE in 3.43 - c_icap) 3.44 - copy @std var/log/c-icap/ 3.45 - DEPENDS="brotli bzlib libldap libpcre openssl zlib" 3.46 - ;; 3.47 - *-dev) 3.48 - copy @dev 3.49 - ;; 3.50 - esac 3.51 -} 3.52 - 3.53 -post_install_c_icap() { 3.54 - [ -z "$1" -a ! -s /aufs-umount.sh ] && /etc/init.d/c-icapd start 3.55 - 3.56 - [ -n "$quiet" ] || cat <<EOF 3.57 - 3.58 - .----------------------------------------------. 3.59 - | To start c_icap server you can run: | 3.60 - | | 3.61 - | /etc/init.d/c_icap start | 3.62 - | | 3.63 - |Or add c_icap to RUN_DAEMONS in /etc/rcS.conf | 3.64 - '----------------------------------------------' 3.65 -EOF 3.66 -} 3.67 - 3.68 -pre_remove_c_icap() { 3.69 - echo "Stopping daemon..." 3.70 - if (ps | grep -q c-icap); then 3.71 - chroot "$1/" /etc/init.d/c-icapd stop 3.72 - fi 3.73 -} 3.74 -post_remove_c_icap() { 3.75 - echo "Removing stalled files..." 3.76 - [ -d "$1/var/log/c-icap" ] && rm -rf "$1/var/log/c-icap" 3.77 - [ -d "$1/usr/run/c-icap" ] && rm -rf "$1/usr/run/c-icap" 3.78 -}
4.1 --- a/c_icap/stuff/c-icapd Fri Sep 28 15:13:36 2018 +0300 4.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 4.3 @@ -1,57 +0,0 @@ 4.4 -#!/bin/sh 4.5 -# /etc/init.d/nagios : Start, stop and restart ICAP server on SliTaz, at 4.6 -# boot time or with the command line. 4.7 -# 4.8 -# To start ICAP server at boot time, just put c-icapd in the $RUN_DAEMONS 4.9 -# variable of /etc/rcS.conf and configure options with /etc/daemons.conf 4.10 -# 4.11 -. /etc/init.d/rc.functions 4.12 -. /etc/daemons.conf 4.13 - 4.14 -NAME=c-icap 4.15 -DESC="$(_ '%s server' ICAP)" 4.16 -DAEMON=/usr/bin/c-icap 4.17 -OPTIONS="" 4.18 -PIDFILE=/var/run/c-icap/c-icap.pid 4.19 - 4.20 -[ -d /var/run/c-icap ] || mkdir -p /var/run/c-icap 4.21 -case "$1" in 4.22 - start) 4.23 - if active_pidfile $PIDFILE $NAME ; then 4.24 - _ '%s is already running.' $NAME 4.25 - exit 1 4.26 - fi 4.27 - action 'Starting %s: %s...' "$DESC" $NAME 4.28 - $DAEMON $OPTIONS 4.29 - status 4.30 - ;; 4.31 - stop) 4.32 - if ! active_pidfile $PIDFILE $NAME ; then 4.33 - _ '%s is not running.' $NAME 4.34 - exit 1 4.35 - fi 4.36 - action 'Stopping %s: %s...' "$DESC" $NAME 4.37 - kill $(cat $PIDFILE) 4.38 - status 4.39 - ;; 4.40 - restart|reload) 4.41 - if ! active_pidfile $PIDFILE $NAME ; then 4.42 - _ '%s is not running.' $NAME 4.43 - exit 1 4.44 - fi 4.45 - action 'Restarting %s: %s...' "$DESC" $NAME 4.46 - kill $(cat $PIDFILE) 4.47 - sleep 2 4.48 - $DAEMON $OPTIONS 4.49 - status 4.50 - ;; 4.51 - test) 4.52 - configtest ;; 4.53 - *) 4.54 - emsg "<n><b>$(_ 'Usage:')</b> $0 [start|stop|restart|reload|test]" 4.55 - newline 4.56 - exit 1 4.57 - ;; 4.58 -esac 4.59 - 4.60 -exit 0
5.1 --- a/calcurse/receipt Fri Sep 28 15:13:36 2018 +0300 5.2 +++ b/calcurse/receipt Sat Sep 29 16:54:07 2018 +0300 5.3 @@ -1,21 +1,20 @@ 5.4 # SliTaz package receipt v2. 5.5 5.6 PACKAGE="calcurse" 5.7 -VERSION="2.9.2" 5.8 +VERSION="4.3.0" 5.9 CATEGORY="office" 5.10 SHORT_DESC="Text-based calender and scheduling application" 5.11 MAINTAINER="paul@slitaz.org" 5.12 LICENSE="BSD" 5.13 -WEB_SITE="http://calcurse.org/" 5.14 +WEB_SITE="https://calcurse.org/" 5.15 5.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 5.17 -WGET_URL="http://calcurse.org/files/$TARBALL" 5.18 +WGET_URL="https://calcurse.org/files/$TARBALL" 5.19 5.20 BUILD_DEPENDS="ncurses-dev" 5.21 5.22 compile_rules() { 5.23 ./configure \ 5.24 - --disable-nls \ 5.25 $CONFIGURE_ARGS && 5.26 make && 5.27 make install
6.1 --- a/chrpath/receipt Fri Sep 28 15:13:36 2018 +0300 6.2 +++ b/chrpath/receipt Sat Sep 29 16:54:07 2018 +0300 6.3 @@ -1,31 +1,24 @@ 6.4 -# SliTaz package receipt. 6.5 +# SliTaz package receipt v2. 6.6 6.7 PACKAGE="chrpath" 6.8 -VERSION="0.13" 6.9 +VERSION="0.16" 6.10 CATEGORY="misc" 6.11 SHORT_DESC="Change or delete the rpath or runpath in ELF files" 6.12 MAINTAINER="slaxemulator@gmail.com" 6.13 LICENSE="GPL2" 6.14 -TARBALL="${PACKAGE}_${VERSION}.orig.tar.gz" 6.15 -WEB_SITE="http://packages.debian.org/chrpath" 6.16 -WGET_URL="http://ftp.debian.org/debian/pool/main/c/$PACKAGE/$TARBALL" 6.17 +WEB_SITE="https://alioth-archive.debian.org/releases/chrpath/chrpath/" 6.18 6.19 -# Rules to configure and make the package. 6.20 -compile_rules() 6.21 -{ 6.22 +TARBALL="$PACKAGE-$VERSION.tar.gz" 6.23 +WGET_URL="https://alioth-archive.debian.org/releases/chrpath/chrpath/$VERSION/$TARBALL" 6.24 + 6.25 +compile_rules() { 6.26 sed -i 's|/doc|/share/doc|' Makefile* 6.27 - ./configure \ 6.28 - --prefix=/usr \ 6.29 - --infodir=/usr/share/info \ 6.30 - --mandir=/usr/share/man \ 6.31 - $CONFIGURE_ARGS && 6.32 - make && make DESTDIR=$DESTDIR install 6.33 + 6.34 + ./configure $CONFIGURE_ARGS && 6.35 + make && 6.36 + make install 6.37 } 6.38 6.39 -# Rules to gen a SliTaz package suitable for Tazpkg. 6.40 -genpkg_rules() 6.41 -{ 6.42 - mkdir -p $fs/usr 6.43 - cp -a $install/usr/bin $fs/usr 6.44 +genpkg_rules() { 6.45 + copy @std 6.46 } 6.47 -
7.1 --- a/cld2/receipt Fri Sep 28 15:13:36 2018 +0300 7.2 +++ b/cld2/receipt Sat Sep 29 16:54:07 2018 +0300 7.3 @@ -1,7 +1,7 @@ 7.4 # SliTaz package receipt v2. 7.5 7.6 PACKAGE="cld2" 7.7 -VERSION="150821" 7.8 +VERSION="20150820" 7.9 COMMIT="b56fa78" 7.10 CATEGORY="text" 7.11 SHORT_DESC="Compact Language Detector 2"
8.1 --- a/clex/receipt Fri Sep 28 15:13:36 2018 +0300 8.2 +++ b/clex/receipt Sat Sep 29 16:54:07 2018 +0300 8.3 @@ -1,36 +1,31 @@ 8.4 -# SliTaz package receipt. 8.5 +# SliTaz package receipt v2. 8.6 8.7 PACKAGE="clex" 8.8 -VERSION="4.6.patch6" 8.9 +VERSION="4.6.patch9" 8.10 CATEGORY="system-tools" 8.11 -SHORT_DESC="Text mode file manager." 8.12 +SHORT_DESC="Text mode file manager" 8.13 MAINTAINER="pankso@slitaz.org" 8.14 LICENSE="GPL2" 8.15 +WEB_SITE="http://www.clex.sk/" 8.16 + 8.17 TARBALL="$PACKAGE-$VERSION.tar.gz" 8.18 -WEB_SITE="http://www.clex.sk/" 8.19 WGET_URL="http://www.clex.sk/download/$TARBALL" 8.20 -TAGS="file-manager" 8.21 8.22 -DEPENDS="ncurses" 8.23 BUILD_DEPENDS="ncurses-dev" 8.24 8.25 -# Rules to configure and make the package. 8.26 -compile_rules() 8.27 -{ 8.28 - cd $src 8.29 - case "$ARCH" in 8.30 - arm) 8.31 - sed -i s'|#include <limits.h>|#define SSIZE_MAX 0x7fffffff|' \ 8.32 - src/util.c ;; 8.33 - esac 8.34 +compile_rules() { 8.35 ./configure $CONFIGURE_ARGS && 8.36 - make && make install 8.37 + make && 8.38 + make install || return 1 8.39 + 8.40 + mkdir -p $install/etc 8.41 + cp -r $stuff/skel $install/etc 8.42 + 8.43 + cook_pick_docs README ChangeLog 8.44 } 8.45 8.46 -# Rules to gen a SliTaz package suitable for Tazpkg. 8.47 -genpkg_rules() 8.48 -{ 8.49 - mkdir -p $fs/etc $fs/usr/bin 8.50 - cp -a $install/usr/bin/* $fs/usr/bin 8.51 - cp -a $stuff/skel $fs/etc 8.52 +genpkg_rules() { 8.53 + copy @std 8.54 + DEPENDS="ncurses" 8.55 + TAGS="file-manager" 8.56 }
9.1 --- a/clex/stuff/clex.desktop Fri Sep 28 15:13:36 2018 +0300 9.2 +++ b/clex/stuff/clex.desktop Sat Sep 29 16:54:07 2018 +0300 9.3 @@ -5,5 +5,5 @@ 9.4 Name[pt_BR]=Gerenciador de arquivox Clex 9.5 Name[ru]=Файловый менеджер Clex 9.6 Exec=terminal -e clex 9.7 -Icon=clex 9.8 +Icon=system-file-manager 9.9 Categories=ConsoleOnly;System;FileTools;FileManager;
10.1 Binary file clex/stuff/clex.png has changed
11.1 --- a/cmus/receipt Fri Sep 28 15:13:36 2018 +0300 11.2 +++ b/cmus/receipt Sat Sep 29 16:54:07 2018 +0300 11.3 @@ -1,32 +1,43 @@ 11.4 -# SliTaz package receipt. 11.5 +# SliTaz package receipt v2. 11.6 11.7 PACKAGE="cmus" 11.8 -VERSION="v2.5.0" 11.9 +VERSION="2.7.1" 11.10 CATEGORY="multimedia" 11.11 -SHORT_DESC="Cmus is a small, fast and powerful console music player." 11.12 +SHORT_DESC="Small, fast and powerful console music player" 11.13 MAINTAINER="claudinei@slitaz.org" 11.14 LICENSE="GPL2" 11.15 -WEB_SITE="http://cmus.sourceforge.net" 11.16 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 11.17 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 11.18 +WEB_SITE="https://cmus.github.io/" 11.19 11.20 -DEPENDS="ncurses libmad libvorbis alsa-lib flac" 11.21 -BUILD_DEPENDS="ncurses-dev libmad-dev libvorbis-dev alsa-lib-dev flac-dev" 11.22 +TARBALL="$PACKAGE-$VERSION.tar.gz" 11.23 +WGET_URL="https://github.com/cmus/cmus/archive/v$VERSION.tar.gz" 11.24 11.25 -# Rules to configure and make the package. 11.26 -compile_rules() 11.27 -{ 11.28 - ./configure prefix=/usr && 11.29 - make && make install 11.30 +BUILD_DEPENDS="ncurses-dev libcddb-dev libcdio-paranoia-dev flac-dev \ 11.31 +libmad-dev libmodplug-dev libvorbis-dev opusfile-dev wavpack-dev faad2-dev \ 11.32 +ffmpeg-dev libcue-dev pulseaudio-dev alsa-lib-dev jack-dev libsamplerate-dev \ 11.33 +libao-dev" 11.34 +SPLIT="$PACKAGE-plugins $PACKAGE" 11.35 + 11.36 +compile_rules() { 11.37 + # can't use $CONFIGURE_ARGS 11.38 + ./configure \ 11.39 + prefix=/usr && 11.40 + make && 11.41 + make install 11.42 } 11.43 11.44 -# Rules to gen a SliTaz package suitable for Tazpkg. 11.45 -genpkg_rules() 11.46 -{ 11.47 - mkdir -p $fs/usr/share 11.48 - mkdir -p $fs/usr/bin 11.49 - mkdir -p $fs/usr/lib 11.50 - cp -a $install/usr/bin/cmus* $fs/usr/bin 11.51 - cp -a $install/usr/lib/cmus $fs/usr/lib 11.52 - cp -a $install/usr/share/cmus $fs/usr/share 11.53 +genpkg_rules() { 11.54 + case $PACKAGE in 11.55 + *-plugins) 11.56 + # cue.so in the main package because bin/cmus depends on libcue too 11.57 + copy aac.so cdio.so modplug.so wavpack.so ao.so jack.so oss.so \ 11.58 + pulse.so 11.59 + CAT="multimedia|extra plugins" 11.60 + DEPENDS="cmus faad2 jack libao libcddb libcdio libcdio-paranoia \ 11.61 + libmodplug libsamplerate pulseaudio wavpack" 11.62 + ;; 11.63 + *) 11.64 + copy @std @rm 11.65 + DEPENDS="alsa-lib flac libcue libmad libvorbis ncurses opusfile" 11.66 + ;; 11.67 + esac 11.68 }
12.1 --- a/cplay/receipt Fri Sep 28 15:13:36 2018 +0300 12.2 +++ b/cplay/receipt Sat Sep 29 16:54:07 2018 +0300 12.3 @@ -1,44 +1,33 @@ 12.4 -# SliTaz package receipt. 12.5 +# SliTaz package receipt v2. 12.6 12.7 PACKAGE="cplay" 12.8 -VERSION="1.49" 12.9 +VERSION="1.50" 12.10 CATEGORY="multimedia" 12.11 -SHORT_DESC="Cplay is an ncurses front-end for various audio players." 12.12 +SHORT_DESC="Ncurses front-end for various audio players" 12.13 MAINTAINER="paul@slitaz.org" 12.14 LICENSE="GPL2" 12.15 -DEPENDS="python ncurses linux-sound" 12.16 -BUILD_DEPENDS="python-dev ncurses-dev git bzip2 gettext" 12.17 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 12.18 -WEB_SITE="https://github.com/res0nat0r/cplay" 12.19 -WGET_URL="git|git://github.com/res0nat0r/cplay" 12.20 +WEB_SITE="https://github.com/hukka/cplay" 12.21 12.22 -# Rules to configure and make the package. 12.23 -compile_rules() 12.24 -{ 12.25 - make 12.26 - make cplayrc 12.27 +TARBALL="$PACKAGE-$VERSION.tar.gz" 12.28 +WGET_URL="https://github.com/hukka/cplay/archive/v$VERSION.tar.gz" 12.29 12.30 - cook_pick_manpages cplay.1 12.31 +BUILD_DEPENDS="gettext" 12.32 + 12.33 +compile_rules() { 12.34 + make && 12.35 + make cplayrc && 12.36 + make install || return 1 12.37 + 12.38 + install -Dm644 cplayrc $install/etc/cplayrc 12.39 + install -Dm644 lircrc $install/usr/share/doc/cplay/examples/lircrc 12.40 } 12.41 12.42 -# Rules to gen a SliTaz package suitable for Tazpkg. 12.43 -genpkg_rules() 12.44 -{ 12.45 - mkdir -p $fs/usr/bin $fs/etc $fs/usr/share/doc/cplay/examples 12.46 - cp -a $src/cplay $fs/usr/bin 12.47 - cp -a $src/cplayrc $fs/etc 12.48 - # Copy locale cplay.mo files 12.49 - for lang in da de hu pl; do 12.50 - mkdir -p $fs/usr/share/locale/$lang/LC_MESSAGES 12.51 - cp -a $src/po/$lang.mo \ 12.52 - $fs/usr/share/locale/$lang/LC_MESSAGES/cplay.mo 12.53 - done 12.54 - # Copy remote control files 12.55 - cp -a $src/lircrc $fs/usr/share/doc/cplay/examples 12.56 +genpkg_rules() { 12.57 + copy @std *.mo 12.58 + DEPENDS="python ncurses linux-sound" 12.59 } 12.60 12.61 -post_install() 12.62 -{ 12.63 +post_install() { 12.64 newline 12.65 action 'Modprobing snd-pcm-oss for legacy volume controls...' 12.66 [ "$1" ] || modprobe snd-pcm-oss
13.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 13.2 +++ b/cplay/stuff/patches/destdir.patch Sat Sep 29 16:54:07 2018 +0300 13.3 @@ -0,0 +1,36 @@ 13.4 +--- a/Makefile 13.5 ++++ b/Makefile 13.6 +@@ -1,4 +1,4 @@ 13.7 +-PREFIX = /usr/local 13.8 ++PREFIX = /usr 13.9 + ENV = PREFIX=$(PREFIX) 13.10 + 13.11 + SUBDIRS = po 13.12 +@@ -6,9 +6,11 @@ 13.13 + all: recursive-all 13.14 + 13.15 + install: recursive-install 13.16 +- install -c -m 755 cplay $(PREFIX)/bin 13.17 +- install -c -m 755 cnq $(PREFIX)/bin 13.18 +- install -c -m 644 cplay.1 $(PREFIX)/man/man1 13.19 ++ install -d $(DESTDIR)$(PREFIX)/bin 13.20 ++ install -c -m 755 cplay $(DESTDIR)$(PREFIX)/bin 13.21 ++ install -c -m 755 cnq $(DESTDIR)$(PREFIX)/bin 13.22 ++ install -d $(DESTDIR)$(PREFIX)/share/man/man1 13.23 ++ install -c -m 644 cplay.1 $(DESTDIR)$(PREFIX)/share/man/man1 13.24 + 13.25 + clean: recursive-clean 13.26 + 13.27 +--- a/po/Makefile 13.28 ++++ b/po/Makefile 13.29 +@@ -8,8 +8,8 @@ 13.30 + 13.31 + install: all 13.32 + for i in $(MOFILES); do \ 13.33 +- mkdir -p $(PREFIX)/share/locale/$${i%.mo}/LC_MESSAGES; \ 13.34 +- install -c -m 644 $$i $(PREFIX)/share/locale/$${i%.mo}/LC_MESSAGES/cplay.mo; \ 13.35 ++ mkdir -p $(DESTDIR)$(PREFIX)/share/locale/$${i%.mo}/LC_MESSAGES; \ 13.36 ++ install -c -m 644 $$i $(DESTDIR)$(PREFIX)/share/locale/$${i%.mo}/LC_MESSAGES/cplay.mo; \ 13.37 + done 13.38 + 13.39 + clean:
14.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 14.2 +++ b/cplay/stuff/patches/fr.po.patch Sat Sep 29 16:54:07 2018 +0300 14.3 @@ -0,0 +1,14 @@ 14.4 +fr.po:78: 'msgid' and 'msgstr' entries do not both end with '\n' 14.5 +msgfmt: found 1 fatal error 14.6 + 14.7 +--- a/po/fr.po 14.8 ++++ b/po/fr.po 14.9 +@@ -173,7 +173,7 @@ 14.10 + " 1 .. 9 : modifier le volume (en dixaine de pourcentage)\n" 14.11 + " + : augmenter le volume de 1%\n" 14.12 + " - : diminuer le volume de 1%\n" 14.13 +-" v : slectionner le volume modifier (principal ou auxilliaire)" 14.14 ++" v : slectionner le volume modifier (principal ou auxilliaire)\n" 14.15 + 14.16 + #: cplay:571 14.17 + msgid "filename"
15.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 15.2 +++ b/cplay/stuff/patches/series Sat Sep 29 16:54:07 2018 +0300 15.3 @@ -0,0 +1,2 @@ 15.4 +destdir.patch 15.5 +fr.po.patch
16.1 Binary file dar/.icon.png has changed
17.1 --- a/dar/receipt Fri Sep 28 15:13:36 2018 +0300 17.2 +++ b/dar/receipt Sat Sep 29 16:54:07 2018 +0300 17.3 @@ -1,7 +1,7 @@ 17.4 # SliTaz package receipt v2. 17.5 17.6 PACKAGE="dar" 17.7 -VERSION="2.4.18" 17.8 +VERSION="2.5.16" 17.9 CATEGORY="system-tools" 17.10 SHORT_DESC="Disk archive" 17.11 MAINTAINER="pascal.bellard@slitaz.org" 17.12 @@ -11,8 +11,8 @@ 17.13 TARBALL="$PACKAGE-$VERSION.tar.gz" 17.14 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 17.15 17.16 -BUILD_DEPENDS="lzo-dev libgcrypt-dev bzip2-dev e2fsprogs-dev attr-dev gettext \ 17.17 -zlib-dev upx" 17.18 +BUILD_DEPENDS="gettext zlib-dev bzip2-dev lzo-dev xz-dev libgpg-error-dev \ 17.19 +libgcrypt-dev attr-dev e2fsprogs-dev upx gpgme-dev" 17.20 SPLIT="dar-dev" 17.21 17.22 compile_rules() { 17.23 @@ -21,18 +21,21 @@ 17.24 $CONFIGURE_ARGS && 17.25 fix libtool && 17.26 make && 17.27 - make DESTDIR=$DESTDIR install 17.28 + make install 17.29 } 17.30 17.31 genpkg_rules() { 17.32 case $PACKAGE in 17.33 dar) 17.34 copy @std 17.35 - DEPENDS="gcc-lib-base lzo libgcrypt bzip2 attr" 17.36 + DEPENDS="bzlib gpgme libgcrypt liblzma lzo zlib upx" 17.37 + CONFIG_FILES="/etc/darrc" 17.38 TAGS="backup" 17.39 ;; 17.40 *-dev) 17.41 copy @dev 17.42 + DEPENDS="dar attr-dev bzip2-dev gpgme-dev libassuan-dev libcap-dev \ 17.43 + libgcrypt-dev libgpg-error-dev lzo-dev xz-dev zlib-dev" 17.44 ;; 17.45 esac 17.46 }
18.1 --- a/darkstat/receipt Fri Sep 28 15:13:36 2018 +0300 18.2 +++ b/darkstat/receipt Sat Sep 29 16:54:07 2018 +0300 18.3 @@ -1,33 +1,30 @@ 18.4 -# SliTaz package receipt. 18.5 +# SliTaz package receipt v2. 18.6 18.7 PACKAGE="darkstat" 18.8 -VERSION="3.0.713" 18.9 +VERSION="3.0.719" 18.10 CATEGORY="network" 18.11 -SHORT_DESC="Simpel network traffic statistics" 18.12 +SHORT_DESC="Network statistics gatherer" 18.13 MAINTAINER="erjo@slitaz.org" 18.14 LICENSE="GPL2 BSD" 18.15 +WEB_SITE="https://unix4lyfe.org/darkstat/" 18.16 + 18.17 TARBALL="$PACKAGE-$VERSION.tar.bz2" 18.18 -WEB_SITE="https://unix4lyfe.org/darkstat/" 18.19 WGET_URL="https://unix4lyfe.org/darkstat/$TARBALL" 18.20 -TAGS="network monitor stats statistics" 18.21 18.22 -DEPENDS="libpcap zlib" 18.23 BUILD_DEPENDS="libpcap-dev zlib-dev" 18.24 18.25 -# Rules to configure and make the package. 18.26 -compile_rules() 18.27 -{ 18.28 - cd $src 18.29 - ./configure --prefix=/usr \ 18.30 - --with-chroot-dir=/var/lib/darkstat 18.31 - 18.32 - make && make DESTDIR=$DESTDIR install 18.33 +compile_rules() { 18.34 + ./configure $CONFIGURE_ARGS && 18.35 + make && 18.36 + make install || return 1 18.37 + 18.38 + chmod u+w $install/usr/sbin/darkstat # 555->755 18.39 + 18.40 + cook_pick_docs NEWS README AUTHORS LICENSE INSTALL ChangeLog 18.41 } 18.42 18.43 -# Rules to gen a SliTaz package suitable for Tazpkg. 18.44 -genpkg_rules() 18.45 -{ 18.46 - mkdir -p $fs/usr $fs/var/lib/darkstat 18.47 - cp -a $install/usr/sbin $fs/usr 18.48 +genpkg_rules() { 18.49 + copy @std 18.50 + DEPENDS="libpcap zlib" 18.51 + TAGS="network monitor stats statistics" 18.52 } 18.53 -
19.1 --- a/dfu-util/receipt Fri Sep 28 15:13:36 2018 +0300 19.2 +++ b/dfu-util/receipt Sat Sep 29 16:54:07 2018 +0300 19.3 @@ -1,29 +1,27 @@ 19.4 -# SliTaz package receipt. 19.5 +# SliTaz package receipt v2. 19.6 19.7 PACKAGE="dfu-util" 19.8 -VERSION="0.8" 19.9 +VERSION="0.9" 19.10 CATEGORY="utilities" 19.11 -SHORT_DESC="Device Firmware Upgrade Utilities (for USB devices)." 19.12 +SHORT_DESC="Device firmware update (DFU) USB programmer" 19.13 MAINTAINER="pascal.bellard@slitaz.org" 19.14 LICENSE="GPL2" 19.15 +WEB_SITE="http://dfu-util.sourceforge.net/" 19.16 + 19.17 TARBALL="$PACKAGE-$VERSION.tar.gz" 19.18 -WEB_SITE="http://dfu-util.gnumonks.org/" 19.19 -WGET_URL="${WEB_SITE}releases/$TARBALL" 19.20 +WGET_URL="http://dfu-util.sourceforge.net/releases/$TARBALL" 19.21 19.22 BUILD_DEPENDS="glib libusb-dev" 19.23 19.24 -# Rules to configure and make the package. 19.25 -compile_rules() 19.26 -{ 19.27 - ./configure --prefix=/usr \ 19.28 - $CONFIGURE_ARGS && 19.29 +compile_rules() { 19.30 + ./configure $CONFIGURE_ARGS && 19.31 make && 19.32 - make DESTDIR=$DESTDIR install 19.33 + make install || return 1 19.34 + 19.35 + cook_pick_docs README DEVICES.txt ChangeLog TODO doc/*.rules 19.36 } 19.37 19.38 -# Rules to gen a SliTaz package suitable for Tazpkg. 19.39 -genpkg_rules() 19.40 -{ 19.41 - mkdir -p $fs/usr 19.42 - cp -a $install/usr/bin $fs/usr 19.43 +genpkg_rules() { 19.44 + copy @std 19.45 + DEPENDS="libusb" 19.46 }
20.1 --- a/dmidecode/receipt Fri Sep 28 15:13:36 2018 +0300 20.2 +++ b/dmidecode/receipt Sat Sep 29 16:54:07 2018 +0300 20.3 @@ -1,26 +1,23 @@ 20.4 # SliTaz package receipt v2. 20.5 20.6 PACKAGE="dmidecode" 20.7 -VERSION="3.1" 20.8 +VERSION="3.2" 20.9 CATEGORY="system-tools" 20.10 SHORT_DESC="Desktop Management Interface table related utilities" 20.11 MAINTAINER="erjo@slitaz.org" 20.12 LICENSE="GPL2" 20.13 -WEB_SITE="http://www.nongnu.org/dmidecode/" 20.14 +WEB_SITE="https://www.nongnu.org/dmidecode/" 20.15 20.16 TARBALL="$PACKAGE-$VERSION.tar.xz" 20.17 WGET_URL="http://download.savannah.gnu.org/releases/dmidecode/$TARBALL" 20.18 20.19 -# Rules to configure and make the package. 20.20 -compile_rules() 20.21 -{ 20.22 +compile_rules() { 20.23 sed -i 's|/usr/local|/usr|' Makefile 20.24 - make && make DESTDIR=$install install 20.25 + 20.26 + make && 20.27 + make DESTDIR=$install install 20.28 } 20.29 20.30 -# Rules to gen a SliTaz package suitable for Tazpkg. 20.31 -genpkg_rules() 20.32 -{ 20.33 - copy sbin/ 20.34 +genpkg_rules() { 20.35 + copy @std 20.36 } 20.37 -
21.1 --- a/dosbox-mb/receipt Fri Sep 28 15:13:36 2018 +0300 21.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 21.3 @@ -1,43 +0,0 @@ 21.4 -# SliTaz package receipt. 21.5 - 21.6 -PACKAGE="dosbox-mb" 21.7 -VERSION="6" 21.8 -CATEGORY="system-tools" 21.9 -SHORT_DESC="DOS-emulator that uses the SDL-library with network support." 21.10 -INFO="http://home.arcor.de/h-a-l-9000/ne2kstuff/db_ne2000.html" 21.11 -MAINTAINER="pascal.bellard@slitaz.org" 21.12 -LICENSE="GPL2" 21.13 -TARBALL="$PACKAGE$VERSION.tar.gz" 21.14 -WEB_SITE="http://www.dosbox.com/" 21.15 -WGET_URL="http://source.dosbox.com/mb$VERSION/$TARBALL" 21.16 -TAGS="emulator dos vm86 8086" 21.17 - 21.18 -DEPENDS="xorg-libX11 libsdl alsa-lib zlib mesa libpng16 libsdl-net libpcap" 21.19 -BUILD_DEPENDS="xorg-libX11-dev libsdl-dev libsdl-net-dev freetype-dev \ 21.20 -libpng16-dev libpcap libpcap-dev automake autoconf libtool zlib-dev" 21.21 - 21.22 -# Rules to configure and make the package. 21.23 -compile_rules() 21.24 -{ 21.25 - sed -i 's|"printer.h".*|&\n#include <zlib.h>|' \ 21.26 - src/hardware/parport/printer.cpp 21.27 - sed -i '/HAVE_REMOTE/d' src/hardware/ne2000.cpp 21.28 - sed -i 's/define DOSBOX_DOS_INC_H/&\n#include <stddef.h>/' include/dos_inc.h 21.29 - ./autogen.sh 21.30 - ./configure \ 21.31 - --prefix=/usr \ 21.32 - --mandir=/usr/share/man \ 21.33 - $CONFIGURE_ARGS && 21.34 - make && 21.35 - make DESTDIR=$DESTDIR install 21.36 -} 21.37 - 21.38 -# Rules to gen a SliTaz package suitable for Tazpkg. 21.39 -genpkg_rules() 21.40 -{ 21.41 - mkdir -p $fs/usr/share/pixmaps \ 21.42 - $fs/usr/share/applications 21.43 - cp -a $install/usr/bin $fs/usr 21.44 - # Must be root to see the network interface 21.45 - chmod 4755 $fs/usr/bin/dosbox 21.46 -}
22.1 --- a/dosbox-mb/stuff/dosbox.desktop Fri Sep 28 15:13:36 2018 +0300 22.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 22.3 @@ -1,7 +0,0 @@ 22.4 -[Desktop Entry] 22.5 -Type=Application 22.6 -Name=DOSbox Emulator 22.7 -Name[ru]=Эмулятор DOSbox 22.8 -Exec=dosbox 22.9 -Icon=dosbox 22.10 -Categories=System;
23.1 Binary file dosbox-mb/stuff/dosbox.png has changed
24.1 Binary file dosbox/.icon.png has changed
25.1 --- a/dosbox/receipt Fri Sep 28 15:13:36 2018 +0300 25.2 +++ b/dosbox/receipt Sat Sep 29 16:54:07 2018 +0300 25.3 @@ -1,37 +1,28 @@ 25.4 -# SliTaz package receipt. 25.5 +# SliTaz package receipt v2. 25.6 25.7 PACKAGE="dosbox" 25.8 -VERSION="0.74" 25.9 +VERSION="0.74-2" 25.10 CATEGORY="system-tools" 25.11 -SHORT_DESC="DOS-emulator that uses the SDL-library." 25.12 +SHORT_DESC="A DOS emulator" 25.13 MAINTAINER="pankso@slitaz.org" 25.14 LICENSE="GPL2" 25.15 +WEB_SITE="https://www.dosbox.com/" 25.16 + 25.17 TARBALL="$PACKAGE-$VERSION.tar.gz" 25.18 -WEB_SITE="http://www.dosbox.com/" 25.19 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 25.20 -TAGS="emulator dos vm86 8086" 25.21 25.22 -DEPENDS="xorg-libX11 libsdl alsa-lib zlib mesa libpng16 libsdl-net" 25.23 -BUILD_DEPENDS="xorg-libX11-dev libsdl-dev libsdl-net-dev " 25.24 +BUILD_DEPENDS="libsdl-dev alsa-lib-dev libpng16-dev libsdl-net-dev mesa-dev \ 25.25 +glu-dev sdl-sound-dev" 25.26 25.27 -# Rules to configure and make the package. 25.28 -compile_rules() 25.29 -{ 25.30 - cd $src 25.31 - sed -i 's/define DOSBOX_DOS_INC_H/&\n#include <stddef.h>/' include/dos_inc.h 25.32 - ./configure \ 25.33 - --prefix=/usr \ 25.34 - --mandir=/usr/share/man \ 25.35 - $CONFIGURE_ARGS && 25.36 +compile_rules() { 25.37 + ./configure $CONFIGURE_ARGS && 25.38 make && 25.39 - make DESTDIR=$DESTDIR install 25.40 + make install 25.41 } 25.42 25.43 -# Rules to gen a SliTaz package suitable for Tazpkg. 25.44 -genpkg_rules() 25.45 -{ 25.46 - mkdir -p $fs/usr/share/pixmaps \ 25.47 - $fs/usr/share/applications 25.48 - cp -a $install/usr/bin $fs/usr 25.49 +genpkg_rules() { 25.50 + copy @std 25.51 + DEPENDS="alsa-lib libpng16 libsdl libsdl-net mesa sdl-sound xorg-libX11 \ 25.52 + zlib" 25.53 + TAGS="emulator dos vm86 8086" 25.54 } 25.55 -
26.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 26.2 +++ b/libcue/receipt Sat Sep 29 16:54:07 2018 +0300 26.3 @@ -0,0 +1,34 @@ 26.4 +# SliTaz package receipt v2. 26.5 + 26.6 +PACKAGE="libcue" 26.7 +VERSION="2.2.1" 26.8 +CATEGORY="multimedia" 26.9 +SHORT_DESC="CUE Sheet Parser Library" 26.10 +MAINTAINER="al.bobylev@gmail.com" 26.11 +LICENSE="GPL2" 26.12 +WEB_SITE="https://github.com/lipnitsk/libcue" 26.13 + 26.14 +TARBALL="$PACKAGE-$VERSION.tar.gz" 26.15 +WGET_URL="https://github.com/lipnitsk/libcue/archive/v$VERSION.tar.gz" 26.16 + 26.17 +BUILD_DEPENDS="cmake bison flex" 26.18 +SPLIT="$PACKAGE-dev" 26.19 + 26.20 +compile_rules() { 26.21 + mkdir build 26.22 + cd build 26.23 + cmake \ 26.24 + -DCMAKE_INSTALL_PREFIX=/usr \ 26.25 + -DCMAKE_INSTALL_LIBDIR=lib \ 26.26 + -DBUILD_SHARED_LIBS=true \ 26.27 + .. && 26.28 + make && 26.29 + make install 26.30 +} 26.31 + 26.32 +genpkg_rules() { 26.33 + case $PACKAGE in 26.34 + libcue) copy @std;; 26.35 + *-dev) copy @dev;; 26.36 + esac 26.37 +}
27.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 27.2 +++ b/sdl-sound/receipt Sat Sep 29 16:54:07 2018 +0300 27.3 @@ -0,0 +1,38 @@ 27.4 +# SliTaz package receipt v2. 27.5 + 27.6 +PACKAGE="sdl-sound" 27.7 +VERSION="1.0.3" 27.8 +CATEGORY="multimedia" 27.9 +SHORT_DESC="An abstract SDL sound-file decoder" 27.10 +MAINTAINER="al.bobylev@gmail.com" 27.11 +LICENSE="LGPL2.1" 27.12 +WEB_SITE="https://icculus.org/SDL_sound/" 27.13 + 27.14 +TARBALL="SDL_sound-$VERSION.tar.gz" 27.15 +WGET_URL="https://icculus.org/SDL_sound/downloads/$TARBALL" 27.16 + 27.17 +BUILD_DEPENDS="gfortran libsdl-dev libsmpeg-dev libmikmod-dev libmodplug-dev \ 27.18 +libogg-dev libvorbis-dev flac-dev speex-dev physfs-dev" 27.19 +SPLIT="$PACKAGE-dev" 27.20 + 27.21 +compile_rules() { 27.22 + ./configure \ 27.23 + --disable-static \ 27.24 + $CONFIGURE_ARGS && 27.25 + fix libtool && 27.26 + make && 27.27 + make install 27.28 +} 27.29 + 27.30 +genpkg_rules() { 27.31 + case $PACKAGE in 27.32 + sdl-sound) 27.33 + copy @std 27.34 + DEPENDS="flac libmikmod libmodplug libogg libsdl libvorbis physfs \ 27.35 + speex" 27.36 + ;; 27.37 + *-dev) 27.38 + copy @dev 27.39 + ;; 27.40 + esac 27.41 +}
28.1 --- a/squidclamav/receipt Fri Sep 28 15:13:36 2018 +0300 28.2 +++ b/squidclamav/receipt Sat Sep 29 16:54:07 2018 +0300 28.3 @@ -11,7 +11,7 @@ 28.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 28.5 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 28.6 28.7 -BUILD_DEPENDS="curl-dev c_icap-dev" 28.8 +BUILD_DEPENDS="curl-dev c-icap-dev" 28.9 28.10 compile_rules() { 28.11 mkdir -p $DESTDIR/etc 28.12 @@ -32,7 +32,7 @@ 28.13 sed -i -e "s|^redirect.*|redirect http://localhost/cgi-bin/squidclamav/clwarn.cgi|" \ 28.14 -e "s|^#squidguard.*|squidguard /usr/bin/squidGuard|" \ 28.15 $fs/etc/squidclamav.conf 28.16 - DEPENDS="squid libcurl clamav c_icap squidguard" 28.17 + DEPENDS="squid libcurl clamav c-icap squidguard" 28.18 CONFIG_FILES="/etc/squidclamav.conf" 28.19 } 28.20