wok-next annotate abiword/receipt @ rev 19264

Compress manpages (in $install/usr/share/man/...)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Jul 04 00:54:49 2016 +0300 (2016-07-04)
parents 5f6dfba73c57
children 11b5e93cb5f2
rev   line source
pankso@46 1 # SliTaz package receipt.
pankso@46 2
pankso@46 3 PACKAGE="abiword"
slaxemulator@6146 4 VERSION="2.8.6"
pankso@205 5 CATEGORY="office"
pankso@46 6 SHORT_DESC="Light and speed word processing application."
pankso@46 7 MAINTAINER="pankso@slitaz.org"
pascal@15002 8 LICENSE="GPL2"
pascal@17481 9 SUGGESTED="abiword-plugins"
pascal@15002 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@15002 11 WEB_SITE="http://www.abisource.com/"
pascal@15002 12 WGET_URL="http://www.abisource.com/downloads/abiword/$VERSION/source/$TARBALL"
pascal@15002 13 TAGS="word doc office"
pascal@15002 14 LOCALES="cs da de es fr hu id it pt ru sl sv zh"
pascal@15002 15
pankso@3853 16 DEPENDS="gtk+ libgnomeprint libgnomeprintui libgnomecanvas fribidi libglade \
gokhlayeh@5780 17 popt libxml2 libart_lgpl libgsf libgio enchant wv xorg-libXdamage gcc-lib-base librsvg \
pascal@16450 18 goffice glibc-locale libffi"
pankso@3853 19 BUILD_DEPENDS="$DEPENDS gtk+-dev libgnomeprint-dev libgnomeprintui-dev \
pankso@3853 20 fribidi-dev libglade-dev popt-dev libxml2-dev libart_lgpl-dev libgsf-dev \
slaxemulator@6146 21 enchant-dev wv-dev libgnomecanvas-dev libcroco-dev libboost-dev librsvg-dev"
pascal@19167 22 SUGGESTED="abiword-plugins"
pankso@46 23
al@13066 24 # Rules to configure and make the package.
pankso@46 25 compile_rules()
pankso@46 26 {
pascal@12875 27 sed -i 's|glib/gmacros.h|glib.h|' goffice-bits/goffice/app/goffice-app.h
pascal@12875 28 sed -i 's|glib/gerror.h|glib.h|' src/af/util/xp/ut_go_file.h
pascal@12875 29 sed -i 's|--no-undefined||' src/Makefile*
pascal@13828 30 sed -i 's|cat \$(BUILTIN_STAMP)|& 2> /dev/null|' src/plugins/Makefile*
pankso@46 31 ./configure \
pankso@46 32 --prefix=/usr \
pankso@46 33 --infodir=/usr/share/info \
pankso@46 34 --mandir=/usr/share/man \
jozee@5272 35 --enable-plugins \
jozee@5272 36 --enable-clipart \
jozee@5272 37 --enable-templates \
jozee@5272 38 --disable-collab-backend-sugar \
pascal@4998 39 $CONFIGURE_ARGS &&
gokhlayeh@11574 40 make $MAKEFLAGS &&
pascal@15002 41 make DESTDIR=$DESTDIR install
jozee@5272 42
jozee@5272 43 cd plugins
pascal@15002 44 make DESTDIR=$DESTDIR install
al@19264 45
al@19264 46 cook_compress_manpages
pankso@46 47 }
pankso@46 48
pankso@46 49 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@46 50 genpkg_rules()
pankso@46 51 {
slaxemulator@7481 52 mkdir -p $fs/usr/share/pixmaps $fs/usr/lib/abiword-2.8/plugins $fs/usr/share/icons
al@13066 53
pascal@15002 54 cp -a $install/usr/bin $fs/usr
pascal@15002 55 cp -a $install/usr/lib/*.so $fs/usr/lib
al@13066 56
pascal@15002 57 cp -a $install/usr/share/abiword-* $fs/usr/share
al@13066 58
pankso@3853 59 # Non standard pixmap
pascal@15002 60 cp $install/usr/share/icons/abiword_48.png \
pankso@46 61 $fs/usr/share/pixmaps/abiword.png
al@13066 62
slaxemulator@7481 63 # fix error when abiword is run in command line
slaxemulator@7481 64 ln -sf /usr/share/pixmaps/abiword.png $fs/usr/share/icons/abiword_48.png
al@13066 65
al@13066 66 # Non-standard locale use: get all official SliTaz locales
jozee@2800 67 rm $fs/usr/share/abiword-*/strings/*
jozee@2800 68 rm $fs/usr/share/abiword-*/templates/*
jozee@2800 69 rm $fs/usr/share/abiword-*/system.pro*
al@13066 70
al@13066 71 for LOCALE in $LOCALES; do
pascal@15002 72 cp $install/usr/share/abiword-*/strings/$LOCALE*.strings \
al@13066 73 $fs/usr/share/abiword-*/strings/
al@13066 74 # id locale not complete in sources
al@13066 75 if [ "$LOCALE" != "id" ]; then
pascal@15002 76 cp $install/usr/share/abiword-*/templates/normal.awt-$LOCALE* \
al@13066 77 $fs/usr/share/abiword-*/templates/
pascal@15002 78 cp $install/usr/share/abiword-*/system.profile-$LOCALE* \
al@13066 79 $fs/usr/share/abiword-*/
al@13066 80 fi
al@13066 81 done
al@13066 82
pascal@15002 83 cp $install/usr/share/abiword-*/templates/*.awt $fs/usr/share/abiword-*/templates/
pascal@15002 84 cp $install/usr/share/abiword-*/system.profile $fs/usr/share/abiword-*/
pankso@46 85 }
pankso@46 86