wok-stable annotate gtk+/receipt @ rev 11962

removed extensions and paths from desktop files
author Samuel Trassare <samuel_trassare@yahoo.com>
date Thu Mar 01 10:30:40 2012 -0800 (2012-03-01)
parents c6a1b92559ce 37d744940e6c
children 3e3b8bf5727e
rev   line source
pankso@22 1 # SliTaz package receipt.
pankso@22 2
pankso@22 3 PACKAGE="gtk+"
slaxemulator@11796 4 VERSION="2.24.10"
pankso@22 5 CATEGORY="x-window"
pankso@22 6 SHORT_DESC="The GIMP Toolkit."
pankso@22 7 MAINTAINER="pankso@slitaz.org"
jozee@3751 8 SUGGESTED="cups gnutls libgcrypt libgpg-error"
slaxemulator@11796 9 TARBALL="$PACKAGE-$VERSION.tar.xz"
pankso@22 10 WEB_SITE="http://www.gtk.org/"
slaxemulator@11316 11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION:0:4}/$TARBALL"
slaxemulator@10982 12 CONFIG_FILES="/etc/gtk-2.0/gtk.immodules"
pankso@10361 13 CROSS="bug: /bin/bash: no: command not found"
pankso@22 14
pankso@9868 15 DEPENDS="glibc-base expat libxcb xcb-util zlib glib cairo pango atk libpng \
pankso@9868 16 jpeg tiff gdk-pixbuf fontconfig freetype pixman libgio xorg-libX11 xorg-libXau \
pankso@9868 17 xorg-libXcomposite xorg-libXcursor xorg-libXdamage xorg-libXdmcp xorg-libXext \
pankso@9868 18 xorg-libXfixes xorg-libXinerama xorg-libXrender xorg-libXrandr"
pankso@10361 19 BUILD_DEPENDS="bash pkg-config xorg-xextproto cups-dev libcomerr3 cups dbus-dev \
pankso@10361 20 gobject-introspection gobject-introspection-dev libffi-dev perl gdk-pixbuf-dev"
pankso@9868 21
pankso@22 22 # Rules to configure and make the package.
pankso@22 23 compile_rules()
pankso@22 24 {
gokhlayeh@11577 25 cd $src
gokhlayeh@11577 26 ./configure \
gokhlayeh@11577 27 --prefix=/usr \
gokhlayeh@11577 28 --sysconfdir=/etc \
gokhlayeh@11577 29 --with-html-dir=/usr/share/doc \
slaxemulator@11796 30 --build=$HOST_SYSTEM --host=$HOST_SYSTEM
slaxemulator@11796 31 # https://bugzilla.gnome.org/show_bug.cgi?id=655517
slaxemulator@11796 32 sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
gokhlayeh@11577 33 make $MAKEFLAGS &&
gokhlayeh@11577 34 make DESTDIR=$DESTDIR install
pankso@22 35 }
pankso@22 36
pankso@22 37 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@22 38 genpkg_rules()
pankso@22 39 {
pankso@547 40 mkdir -p $fs/usr/lib/gtk-2.0 $fs/usr/share $fs/usr/bin
pankso@836 41
pankso@22 42 # Libs.
pankso@2002 43 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@2002 44 cp -a $_pkg/usr/lib/gtk-2.0/2.10.0 $fs/usr/lib/gtk-2.0
pankso@2002 45 rm -rf $fs/usr/lib/gtk-2.0/2.10.0/*/*.la
pankso@836 46
pankso@2002 47 # Themes
pankso@2002 48 cp -a $_pkg/usr/share/themes $fs/usr/share
pankso@836 49
pankso@2002 50 # Apps.
pankso@2002 51 cp $_pkg/usr/bin/gtk-query-immodules-2.0 $fs/usr/bin
pankso@2002 52 cp $_pkg/usr/bin/gtk-update-icon-cache $fs/usr/bin
rcx@3620 53 cp $_pkg/usr/bin/gtk-builder-convert $fs/usr/bin
slaxemulator@10982 54
slaxemulator@10982 55 mkdir -p $fs/etc/gtk-2.0
slaxemulator@10982 56 touch $fs/etc/gtk-2.0/gtk.immodules
gokhlayeh@11958 57 ln -s /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache \
gokhlayeh@11958 58 $fs/etc/gtk-2.0/gdk-pixbuf.loaders
pankso@22 59 }
pankso@22 60
pankso@22 61 # Pre and post install commands for Tazpkg.
pankso@22 62 post_install()
pankso@22 63 {
pascal@5124 64 local arg
pankso@2002 65 echo "Processing post-install commands..."
slaxemulator@7774 66 if [ ! -d $1/etc/gtk-2.0 ]; then
slaxemulator@7772 67 mkdir -p $1/etc/gtk-2.0
slaxemulator@7772 68 fi
pascal@5124 69 chroot $1/ /usr/bin/gtk-query-immodules-2.0 > $1/etc/gtk-2.0/gtk.immodules
pankso@2002 70 # Force reinstall of clearlooks theme (1.0 compatibilty until
pankso@2002 71 # clearlooks are updated)
pascal@5124 72 if [ -d $1/usr/lib/gtk-2.0/2.4.0 ]; then
pascal@5124 73 arg="--forced"
pascal@5124 74 [ -n "$1" ] && arg="--forced --root=$1/"
pascal@5124 75 tazpkg get-install clearlooks $arg
pascal@5124 76 rm -rf $1/usr/lib/gtk-2.0/2.4.0
pankso@2002 77 fi
pankso@22 78 }
slaxemulator@6394 79