wok-current rev 25713
Up abiword (3.0.5), libwmf (0.2.13), fix wv url
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Fri Jun 14 11:35:21 2024 +0000 (5 months ago) |
parents | 4f280129f9f2 |
children | d3ba73c6de01 |
files | abiword-dev/receipt abiword-plugins/receipt abiword/receipt libwmf-dev/receipt libwmf/receipt wv-dev/receipt wv/receipt |
line diff
1.1 --- a/abiword-dev/receipt Mon Jun 10 20:42:21 2024 +0000 1.2 +++ b/abiword-dev/receipt Fri Jun 14 11:35:21 2024 +0000 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="abiword-dev" 1.7 -VERSION="2.8.6" 1.8 +VERSION="3.0.5" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Abiword devel files" 1.11 MAINTAINER="pankso@slitaz.org" 1.12 @@ -14,10 +14,10 @@ 1.13 # Rules to gen a SliTaz package suitable for Tazpkg. 1.14 genpkg_rules() 1.15 { 1.16 - mkdir -p $fs/usr/lib/abiword-2.8/plugins 1.17 + mkdir -p $fs/usr/lib/abiword-3.0/plugins 1.18 cp -a $install/usr/lib/*.*a $fs/usr/lib 1.19 cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.20 cp -a $install/usr/lib/abiword-*/plugins/*.*a \ 1.21 - $fs/usr/lib/abiword-2.8/plugins 1.22 + $fs/usr/lib/abiword-3.0/plugins 1.23 cp -a $install/usr/include $fs/usr 1.24 }
2.1 --- a/abiword-plugins/receipt Mon Jun 10 20:42:21 2024 +0000 2.2 +++ b/abiword-plugins/receipt Fri Jun 14 11:35:21 2024 +0000 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="abiword-plugins" 2.7 -VERSION="2.8.6" 2.8 +VERSION="3.0.5" 2.9 CATEGORY="office" 2.10 SHORT_DESC="Extra plugins for Abiword (MSWord, OpenDocument, Wikipedia, etc)." 2.11 MAINTAINER="pankso@slitaz.org" 2.12 @@ -15,9 +15,9 @@ 2.13 # Rules to gen a SliTaz package suitable for Tazpkg. 2.14 genpkg_rules() 2.15 { 2.16 - mkdir -p $fs/usr/lib/abiword-2.8/plugins $fs/usr/share 2.17 + mkdir -p $fs/usr/lib/abiword-3.0/plugins $fs/usr/share 2.18 2.19 cp -a $install/usr/lib/abiword-*/plugins/*.so \ 2.20 - $fs/usr/lib/abiword-2.8/plugins 2.21 + $fs/usr/lib/abiword-3.0/plugins 2.22 } 2.23
3.1 --- a/abiword/receipt Mon Jun 10 20:42:21 2024 +0000 3.2 +++ b/abiword/receipt Fri Jun 14 11:35:21 2024 +0000 3.3 @@ -1,24 +1,21 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="abiword" 3.7 -VERSION="2.8.6" 3.8 +VERSION="3.0.5" 3.9 CATEGORY="office" 3.10 SHORT_DESC="Light and speed word processing application." 3.11 MAINTAINER="pankso@slitaz.org" 3.12 LICENSE="GPL2" 3.13 SUGGESTED="abiword-plugins" 3.14 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.15 -WEB_SITE="http://www.abisource.com/" 3.16 -WGET_URL="http://www.abisource.com/downloads/abiword/$VERSION/source/$TARBALL" 3.17 +WEB_SITE="https://gitlab.gnome.org/World/AbiWord/" 3.18 +WGET_URL="https://fossies.org/linux/misc/$TARBALL" 3.19 TAGS="word doc office" 3.20 LOCALES="cs da de es fr hu id it pt ru sl sv zh" 3.21 3.22 -DEPENDS="gtk+ libgnomeprint libgnomeprintui libgnomecanvas fribidi libglade \ 3.23 -popt libxml2 libart_lgpl libgsf libgio enchant wv xorg-libXdamage gcc-lib-base \ 3.24 -librsvg goffice glibc-locale libffi" 3.25 -BUILD_DEPENDS="$DEPENDS gtk+-dev libgnomeprint-dev libgnomeprintui-dev \ 3.26 -fribidi-dev libglade-dev popt-dev libxml2-dev libart_lgpl-dev libgsf-dev \ 3.27 -enchant-dev wv-dev libgnomecanvas-dev libcroco-dev libboost-dev librsvg-dev" 3.28 +DEPENDS="librsvg wv libwmf" 3.29 +BUILD_DEPENDS="gtk+-dev enchant-dev libxslt-dev fribidi-dev wv-dev \ 3.30 +libgsf-dev librsvg-dev libboost-dev libwmf-dev" 3.31 SUGGESTED="abiword-plugins" 3.32 3.33 # What is the latest version available today? 3.34 @@ -38,15 +35,21 @@ 3.35 sed -i 's|--no-undefined||' src/Makefile* 3.36 sed -i 's|cat \$(BUILTIN_STAMP)|& 2> /dev/null|' src/plugins/Makefile* 3.37 sed -i 's|TRUE|boolean(TRUE)|' src/af/util/xp/ut_jpeg.cpp 3.38 + 3.39 + # Fix build with recent gcc 3.40 + export CXXFLAGS="$CXXFLAGS -fpermissive" 3.41 + 3.42 ./configure \ 3.43 --prefix=/usr \ 3.44 + --with-gtk2 \ 3.45 --infodir=/usr/share/info \ 3.46 --mandir=/usr/share/man \ 3.47 --enable-plugins \ 3.48 --enable-clipart \ 3.49 --enable-templates \ 3.50 --disable-collab-backend-sugar \ 3.51 - $CONFIGURE_ARGS && 3.52 + $CONFIGURE_ARGS 3.53 + 3.54 make $MAKEFLAGS && 3.55 make DESTDIR=$DESTDIR install 3.56 3.57 @@ -57,20 +60,18 @@ 3.58 # Rules to gen a SliTaz package suitable for Tazpkg. 3.59 genpkg_rules() 3.60 { 3.61 - mkdir -p $fs/usr/share/pixmaps $fs/usr/lib/abiword-2.8/plugins $fs/usr/share/icons 3.62 + mkdir -p $fs/usr/share/pixmaps $fs/usr/lib/abiword-2.8/plugins 3.63 3.64 cp -a $install/usr/bin $fs/usr 3.65 cp -a $install/usr/lib/*.so $fs/usr/lib 3.66 3.67 cp -a $install/usr/share/abiword-* $fs/usr/share 3.68 3.69 + cp -a $install/usr/share/icons $fs/usr/share 3.70 # Non standard pixmap 3.71 - cp $install/usr/share/icons/abiword_48.png \ 3.72 + cp $install/usr/share/icons/hicolor/48x48/apps/abiword.png \ 3.73 $fs/usr/share/pixmaps/abiword.png 3.74 3.75 - # fix error when abiword is run in command line 3.76 - ln -sf /usr/share/pixmaps/abiword.png $fs/usr/share/icons/abiword_48.png 3.77 - 3.78 # Non-standard locale use: get all official SliTaz locales 3.79 rm $fs/usr/share/abiword-*/strings/* 3.80 rm $fs/usr/share/abiword-*/templates/*
4.1 --- a/libwmf-dev/receipt Mon Jun 10 20:42:21 2024 +0000 4.2 +++ b/libwmf-dev/receipt Fri Jun 14 11:35:21 2024 +0000 4.3 @@ -1,7 +1,7 @@ 4.4 # SliTaz package receipt. 4.5 4.6 PACKAGE="libwmf-dev" 4.7 -VERSION="0.2.8.4" 4.8 +VERSION="0.2.13" 4.9 CATEGORY="development" 4.10 SHORT_DESC="library for converting WMF files" 4.11 MAINTAINER="monghitri@aruba.it"
5.1 --- a/libwmf/receipt Mon Jun 10 20:42:21 2024 +0000 5.2 +++ b/libwmf/receipt Fri Jun 14 11:35:21 2024 +0000 5.3 @@ -1,14 +1,15 @@ 5.4 # SliTaz package receipt. 5.5 5.6 PACKAGE="libwmf" 5.7 -VERSION="0.2.8.4" 5.8 +VERSION="0.2.13" 5.9 CATEGORY="misc" 5.10 SHORT_DESC="library for converting WMF files" 5.11 MAINTAINER="monghitri@aruba.it" 5.12 LICENSE="GPL2" 5.13 TARBALL="$PACKAGE-$VERSION.tar.gz" 5.14 WEB_SITE="https://wvware.sourceforge.net/libwmf.html" 5.15 -WGET_URL="https://sourceforge.net/projects/wvware/files/$PACKAGE/$VERSION/$TARBALL" 5.16 +#WGET_URL="https://sourceforge.net/projects/wvware/files/$PACKAGE/$VERSION/$TARBALL" 5.17 +WGET_URL="https://github.com/caolanm/$PACKAGE/archive/refs/tags/v$VERSION.tar.gz" 5.18 5.19 DEPENDS="libpng jpeg libgd gdk-pixbuf expat" 5.20 BUILD_DEPENDS="libpng-dev jpeg-dev libgd-dev gdk-pixbuf-dev expat-dev"
6.1 --- a/wv-dev/receipt Mon Jun 10 20:42:21 2024 +0000 6.2 +++ b/wv-dev/receipt Fri Jun 14 11:35:21 2024 +0000 6.3 @@ -7,7 +7,7 @@ 6.4 MAINTAINER="pankso@slitaz.org" 6.5 LICENSE="GPL2" 6.6 WANTED="wv" 6.7 -WEB_SITE="http://www.abisource.com/projects/" 6.8 +WEB_SITE="https://gitlab.gnome.org/World/AbiWord" 6.9 6.10 DEPENDS="pkg-config" 6.11
7.1 --- a/wv/receipt Mon Jun 10 20:42:21 2024 +0000 7.2 +++ b/wv/receipt Fri Jun 14 11:35:21 2024 +0000 7.3 @@ -7,8 +7,8 @@ 7.4 MAINTAINER="pankso@slitaz.org" 7.5 LICENSE="GPL2" 7.6 TARBALL="$PACKAGE-$VERSION.tar.gz" 7.7 -WEB_SITE="http://www.abisource.com/projects/" 7.8 -WGET_URL="http://www.abisource.com/downloads/wv/$VERSION/$TARBALL" 7.9 +WEB_SITE="https://gitlab.gnome.org/World/AbiWord" 7.10 +WGET_URL="https://github.com/AbiWord/wv/archive/refs/tags/$TARBALL" 7.11 7.12 DEPENDS="glib libgsf libpng libxml2 zlib" 7.13 BUILD_DEPENDS="libgsf libgsf-dev glib-dev libxml2-dev libpng-dev"