wok-current rev 18477
easytag, xarchiver: fix warnings during update .desktop system database
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Wed Oct 07 13:34:45 2015 +0300 (2015-10-07) |
parents | 2b6a45f5d1bd |
children | fd7465c3bdde |
files | easytag/description.txt easytag/receipt xarchiver/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/easytag/description.txt Wed Oct 07 13:34:45 2015 +0300 1.3 @@ -0,0 +1,56 @@ 1.4 +EasyTAG is a utility for viewing and editing tags for MP3, MP2, FLAC, Ogg 1.5 +Vorbis, Speex, MP4/AAC, MusePack, Monkey's Audio and WavPack files. Its simple 1.6 +and nice GTK2 interface makes tagging easier under GNU/Linux or Windows. 1.7 + 1.8 + 1.9 +Features 1.10 +-------- 1.11 + 1.12 +Currently EasyTAG supports the following: 1.13 + 1.14 + * view, edit, write tags of MP3, MP2 files (ID3 tag with pictures), FLAC files 1.15 + (FLAC Vorbis tag), Ogg Vorbis and Speex files (Ogg Vorbis tag), MP4/AAC 1.16 + (MP4/AAC tag), MusePack, Monkey's Audio and WavPack files (APE tag) 1.17 + * can edit more tag fields : Title, Artist, Album, Disc Album, Year, Track 1.18 + Number, Genre, Comment, Composer, Original Artist/Performer, Copyright, URL 1.19 + and Encoder name 1.20 + * auto tagging: parse filename and directory to complete automatically the 1.21 + fields (using masks) 1.22 + * ability to rename files and directories from the tag (using masks) or by 1.23 + loading a text file 1.24 + * process selected files of the selected directory 1.25 + * ability to browse subdirectories 1.26 + * recursion for tagging, removing, renaming, saving… 1.27 + * can set a field (artist, title, …) to all other selected files 1.28 + * read file header information (bitrate, time, …) and display them 1.29 + * auto completion of the date if a partial is entered 1.30 + * undo and redo last changes 1.31 + * ability to process fields of tag and filename (convert letters into 1.32 + upper case, lower case, …) 1.33 + * ability to open a directory or a file with an external program 1.34 + * remote and local CDDB support for manual or automatic search 1.35 + * a tree based browser or a view by Artist & Album 1.36 + * a list to select files 1.37 + * a playlist generator window 1.38 + * a file searching window 1.39 + * simple and explicit interface! 1.40 + * Brazilian Portuguese, Bulgarian, Chinese, Czech, Danish, Dutch, French, 1.41 + German, Greek, Hungarian, Italian, Japanese, Polish, Romanian, Russian, 1.42 + Spanish, Swedish and Ukrainian translation languages 1.43 + * written in C and uses GTK+ 2 or GTK+ 3 for the GUI 1.44 + 1.45 + 1.46 +License 1.47 +------- 1.48 + 1.49 +This program is free software; you can redistribute it and/or modify 1.50 +it under the terms of the GNU General Public License as published by 1.51 +the Free Software Foundation; either version 2 of the License, or 1.52 +(at your option) any later version. 1.53 + 1.54 +This program is distributed in the hope that it will be useful, 1.55 +but WITHOUT ANY WARRANTY; without even the implied warranty of 1.56 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 1.57 +General Public License for more details. 1.58 + 1.59 +(It sould be included in this package in the file COPYING)
2.1 --- a/easytag/receipt Tue Oct 06 20:43:34 2015 +0300 2.2 +++ b/easytag/receipt Wed Oct 07 13:34:45 2015 +0300 2.3 @@ -1,18 +1,18 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="easytag" 2.7 -VERSION="2.1.6" 2.8 +VERSION="2.2.6" 2.9 CATEGORY="multimedia" 2.10 SHORT_DESC="Utility for viewing and editing tags on sound files." 2.11 MAINTAINER="pankso@slitaz.org" 2.12 LICENSE="GPL2" 2.13 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.14 -WEB_SITE="http://easytag.sourceforge.net/" 2.15 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 2.16 +TARBALL="$PACKAGE-$VERSION.tar.xz" 2.17 +WEB_SITE="https://wiki.gnome.org/Apps/EasyTAG" 2.18 +WGET_URL="https://download.gnome.org/sources/$PACKAGE/${VERSION%.*}/$TARBALL" 2.19 TAGS="audio" 2.20 2.21 DEPENDS="gtk+ id3lib flac libvorbis xorg-libXdamage gcc-lib-base libid3tag" 2.22 -BUILD_DEPENDS="gtk+-dev id3lib-dev id3lib expat-dev libid3tag-dev" 2.23 +BUILD_DEPENDS="gtk+-dev id3lib-dev id3lib expat-dev libid3tag-dev itstool" 2.24 2.25 # Rules to configure and make the package. 2.26 compile_rules() 2.27 @@ -20,7 +20,6 @@ 2.28 cd $src 2.29 ./configure \ 2.30 --prefix=/usr \ 2.31 - --mandir=/usr/share/man \ 2.32 $CONFIGURE_ARGS && 2.33 make -j1 && 2.34 make -j1 DESTDIR=$DESTDIR install 2.35 @@ -29,8 +28,10 @@ 2.36 # Rules to gen a SliTaz package suitable for Tazpkg. 2.37 genpkg_rules() 2.38 { 2.39 - mkdir -p $fs/usr/share 2.40 + mkdir -p $fs/usr/share/icons/hicolor 2.41 cp -a $install/usr/bin $fs/usr 2.42 - cp -a $install/usr/share/pixmaps $fs/usr/share 2.43 + cp -a $install/usr/share/applications $fs/usr/share 2.44 + cp -a $install/usr/share/icons/hicolor/16x16 $install/usr/share/icons/hicolor/48x48 \ 2.45 + $fs/usr/share/icons/hicolor 2.46 } 2.47
3.1 --- a/xarchiver/receipt Tue Oct 06 20:43:34 2015 +0300 3.2 +++ b/xarchiver/receipt Wed Oct 07 13:34:45 2015 +0300 3.3 @@ -16,6 +16,7 @@ 3.4 DEPENDS="gtk+" 3.5 BUILD_DEPENDS="gtk+-dev" 3.6 GENERIC_PIXMAPS="no" 3.7 +GENERIC_MENUS="no" 3.8 3.9 # Rules to configure and make the package. 3.10 compile_rules() 3.11 @@ -38,7 +39,7 @@ 3.12 cp -a $install/usr/share/icons $fs/usr/share 3.13 rm -rf $fs/usr/share/icons/hicolor/scalable 3.14 3.15 - sed -i '/Encoding/d;/Version/d;/Name\[.*\]=Xarchiver/d;/GenericName/d;/Exec/s/.*/& %f/' \ 3.16 + sed -i '/Encoding/d; /Version/d; /Name\[.*\]=Xarchiver/d; /GenericName/d; s|multipart/x-zip;||; /Exec/s/.*/& %f/' \ 3.17 $fs/usr/share/applications/xarchiver.desktop 3.18 3.19 mkdir -p $fs/var/www/cgi-bin $fs/usr/share/doc/xarchiver/html