wok rev 481
Remove Xarchive for stable release
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Fri Mar 21 23:57:13 2008 +0100 (2008-03-21) |
parents | 815fce15f885 |
children | e625fbc69f3e |
files | xarchive-extras/receipt xarchive/receipt xarchive/stuff/tar-wrap.patch xarchive/stuff/xarchive.desktop |
line diff
1.1 --- a/xarchive-extras/receipt Sat Mar 22 00:57:10 2008 +0100 1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 1.3 @@ -1,23 +0,0 @@ 1.4 -# SliTaz package receipt. 1.5 - 1.6 -PACKAGE="xarchive-extras" 1.7 -VERSION="0.2.8-6" 1.8 -CATEGORY="x-windows" 1.9 -SHORT_DESC="XArchve command line archiving tools wrappers." 1.10 -MAINTAINER="Erjo <erjo@slitaz.org>" 1.11 -DEPENDS="xarchive" 1.12 -WANTED="xarchive" 1.13 -TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 -WEB_SITE="http://xarchive.sourceforge.net/" 1.15 - 1.16 - 1.17 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.18 -genpkg_rules() 1.19 -{ 1.20 - mkdir -p $fs/usr/lib/xarchive/wrappers 1.21 - cp -a $_pkg/usr/bin $fs/usr 1.22 - cp -a $_pkg/usr/lib/xarchive/wrappers/* $fs/usr/lib/xarchive/wrappers 1.23 - rm -f fs/usr/lib/xarchive/wrappers/tar-* 1.24 - sed -i 's|#!\s*/bin/bash|#!/bin/sh|' $_pkg/usr/lib/xarchive/wrappers/* 1.25 -} 1.26 -
2.1 --- a/xarchive/receipt Sat Mar 22 00:57:10 2008 +0100 2.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 2.3 @@ -1,37 +0,0 @@ 2.4 -# SliTaz package receipt. 2.5 - 2.6 -PACKAGE="xarchive" 2.7 -VERSION="0.2.8-6" 2.8 -CATEGORY="x-windows" 2.9 -SHORT_DESC="A GTK+ front-end for command line archiving tools." 2.10 -MAINTAINER="Erjo <erjo@slitaz.org>" 2.11 -DEPENDS="" 2.12 -TARBALL="$PACKAGE-$VERSION.tar.gz" 2.13 -WEB_SITE="http://xarchive.sourceforge.net/" 2.14 -WGET_URL="http://dfn.dl.sourceforge.net/sourceforge/xarchive/$TARBALL" 2.15 -JWM_MENU='Utilities:<Program icon="xarchive.xpm" label="XArchive">xarchive</Program>' 2.16 - 2.17 -# Rules to configure and make the package.ls sr 2.18 -compile_rules() 2.19 -{ 2.20 - cd $src 2.21 - # patch tar-wrap for busybox tar option 2.22 - patch -p1 -i ../stuff/tar-wrap.patch 2.23 - 2.24 - ./configure --prefix=/usr --infodir=/usr/share/info \ 2.25 - --mandir=/usr/share/man $CONFIGURE_ARGS 2.26 - 2.27 - make 2.28 - make DESTDIR=$PWD/_pkg install 2.29 -} 2.30 - 2.31 -# Rules to gen a SliTaz package suitable for Tazpkg. 2.32 -genpkg_rules() 2.33 -{ 2.34 - mkdir -p $fs/usr/lib/xarchive/wrappers 2.35 - cp -a $_pkg/usr/bin $fs/usr 2.36 - cp -a $_pkg/usr/lib/xarchive/wrappers/tar-* $fs/usr/lib/xarchive/wrappers 2.37 - sed -i 's|#!\s*/bin/bash|#!/bin/sh|' $_pkg/usr/lib/xarchive/wrappers/* 2.38 - strip -s $fs/usr/bin/* 2.39 -} 2.40 -
3.1 --- a/xarchive/stuff/tar-wrap.patch Sat Mar 22 00:57:10 2008 +0100 3.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 3.3 @@ -1,36 +0,0 @@ 3.4 ---- xarchive-0.2.8-6.ori/wrappers/tar-gnu.src Tue Nov 8 20:50:59 2005 3.5 -+++ xarchive-0.2.8-6/wrappers/tar-gnu.src Tue Mar 11 23:28:34 2008 3.6 -@@ -1,4 +1,4 @@ 3.7 --#! /path/to/bash 3.8 -+#! /bin/bash 3.9 - # tar-wrap.sh - bash tar wrapper for xarchive frontend 3.10 - # Copyright (C) 2005 Lee Bigelow <ligelowbee@yahoo.com> 3.11 - # 3.12 -@@ -54,14 +54,14 @@ 3.13 - if [ $(expr "$lc_archive" : ".*\."$ext"$") -gt 0 ]; then 3.14 - DECOMPRESS="gzip -dc" 3.15 - COMPRESS="gzip -c" 3.16 -- TAR_COMPRESS_OPT="--use-compress-prog=gzip" 3.17 -+ TAR_COMPRESS_OPT="z" 3.18 - fi 3.19 - done 3.20 - for ext in $BZIP2_EXTS; do 3.21 - if [ $(expr "$lc_archive" : ".*\."$ext"$") -gt 0 ]; then 3.22 - DECOMPRESS="bzip2 -dc" 3.23 - COMPRESS="bzip2 -c" 3.24 -- TAR_COMPRESS_OPT="--use-compress-prog=bzip2" 3.25 -+ TAR_COMPRESS_OPT="j" 3.26 - fi 3.27 - done 3.28 - for ext in $COMPRESS_EXTS; do 3.29 -@@ -76,8 +76,8 @@ 3.30 - # open and extract can use tar's cmd line option 3.31 - # add, new, and remove need to decompress the tar first 3.32 - # do their thing, than recompress the tar. 3.33 --OPEN_OPTS="$TAR_COMPRESS_OPT -tvf" 3.34 --EXTRACT_OPTS="$TAR_COMPRESS_OPT -xf" 3.35 -+OPEN_OPTS="tv${TAR_COMPRESS_OPT}f" 3.36 -+EXTRACT_OPTS="-x${TAR_COMPRESS_OPT}f" 3.37 - ADD_OPTS="-rf" 3.38 - NEW_OPTS="-cf" 3.39 - REMOVE_OPTS="--delete -f"
4.1 --- a/xarchive/stuff/xarchive.desktop Sat Mar 22 00:57:10 2008 +0100 4.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 4.3 @@ -1,22 +0,0 @@ 4.4 -[Desktop Entry] 4.5 -Version=1.0 4.6 -Encoding=UTF-8 4.7 - 4.8 -Name=XArchive Manager 4.9 -Name[de]=XArchive Manager 4.10 -Name[en_CA]=XArchive Manager 4.11 -Name[en_GB]=XArchive Manager 4.12 -Comment=Create, modify and browse an archive 4.13 -Comment[de]=Archive anlegen, verändern und durchsuchen 4.14 -Comment[en_CA]=Create, modify and browse an archive 4.15 -Comment[en_GB]=Create, modify and browse an archive 4.16 -GenericName=Archive Manager 4.17 - 4.18 -Categories=Gtk;Application;System;Utility; 4.19 -Exec=xarchive %F 4.20 -Icon=/usr/share/pixmaps/xarchive.xpm 4.21 -StartupNotify=true 4.22 -Terminal=false 4.23 -Type=Application 4.24 -X-MultipleArgs=false 4.25 -MimeType=application/x-bzip;application/x-bzip-compressed-tar;application/x-compress;application/x-compressed-tar;application/x-gtar;application/x-gzip;application/x-rar;application/x-rar-compressed;application/x-tar;application/x-zip;application/x-zip-compressed;application/zip;multipart/x-zip;