wok annotate evince/receipt @ rev 21899

updated seed and seed-dev (3.2.0 -> 3.8.1)
author Hans-G?nter Theisgen
date Thu Oct 03 20:41:17 2019 +0100 (2019-10-03)
parents feb2e0c63d21
children 6831608a1b2a
rev   line source
erjo@4727 1 # SliTaz package receipt.
erjo@4727 2
erjo@4727 3 PACKAGE="evince"
slaxemulator@9357 4 VERSION="2.32.0"
erjo@4727 5 CATEGORY="office"
erjo@4727 6 SHORT_DESC="Document viewer for Gnome"
erjo@4727 7 MAINTAINER="erjo@slitaz.org"
pascal@15002 8 LICENSE="GPL2"
erjo@4727 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@4727 10 WEB_SITE="http://projects.gnome.org/evince/"
slaxemulator@12595 11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION:0:4}/$TARBALL"
jozee@4935 12 TAGS="viewer pdf tiff ps postscript dvi"
erjo@4727 13
pascal@15002 14 DEPENDS="lcms poppler tiff dbus-glib glib util-linux-uuid"
pascal@15002 15 BUILD_DEPENDS="gnome-doc-utils-dev docbook-xml libxml2-dev \
pascal@15002 16 gnome-icon-theme gtk+-dev intltool lcms-dev util-linux-uuid-dev \
pascal@15002 17 poppler-dev tiff-dev dbus-glib-dev xorg-dev"
monghitri@13986 18
erjo@4727 19 # Rules to configure and make the package.
erjo@4727 20 compile_rules()
erjo@4727 21 {
erjo@4727 22 ./configure --prefix=/usr \
erjo@4727 23 --libexecdir=/usr/lib/$PACKAGE \
erjo@4727 24 --disable-nautilus \
erjo@4727 25 --disable-scrollkeeper \
erjo@4727 26 --disable-comics \
erjo@4727 27 --without-gconf \
erjo@4727 28 --without-keyring \
erjo@4727 29 --disable-schemas-install \
erjo@4727 30 --disable-gtk-doc-html \
erjo@4727 31 --with-help-formats=none \
samuel_trassare@11788 32 --disable-help \
erjo@4727 33 $CONFIGURE_ARGS &&
slaxemulator@12595 34 make -j1 && make -j1 DESTDIR=$DESTDIR install
erjo@4727 35 }
erjo@4727 36
erjo@4727 37 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@4727 38 genpkg_rules()
erjo@4727 39 {
samuel_trassare@11788 40 mkdir -p $fs/usr/share/glib-2.0 $fs/usr/lib $fs/usr/share/applications
pascal@15002 41 cp -a $install/usr/bin $fs/usr
pascal@15002 42 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@15002 43 cp -a $install/usr/lib/evince $fs/usr/lib
al@18734 44
pascal@15002 45 cp -a $install/usr/share/dbus-1 $fs/usr/share
pascal@15002 46 cp -a $install/usr/share/icons $fs/usr/share
pascal@15002 47 cp -a $install/usr/share/evince $fs/usr/share
pascal@15002 48 cp -a $install/usr/share/glib-2.0/schemas $fs/usr/share/glib-2.0
samuel_trassare@11789 49 cp -a $stuff/evince.desktop $fs/usr/share/applications
al@18734 50
erjo@4727 51 # Removing unwanted files
erjo@4727 52 find $fs/usr/lib -name "*.*a" -exec rm -rf {} \;
erjo@4727 53 }