wok-next diff xfig/receipt @ rev 20402

Up seed (3.8.1) use webkitgtk instead of libwebkit; add cogl for clutter; up clutter (1.26.2) using mesa17 instead of mesa; up gnome-games using mesa17 instead of mix 'mesa & mesa17'
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Dec 05 17:49:11 2017 +0200 (2017-12-05)
parents 05e178121827
children dd145c435e4b
line diff
     1.1 --- a/xfig/receipt	Mon Oct 23 11:08:01 2017 +0200
     1.2 +++ b/xfig/receipt	Tue Dec 05 17:49:11 2017 +0200
     1.3 @@ -1,7 +1,7 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="xfig"
     1.8 -VERSION="3.2.6b"
     1.9 +VERSION="3.2.6a"
    1.10  CATEGORY="x-window"
    1.11  SHORT_DESC="Vector graphics editor for X."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13 @@ -9,12 +9,11 @@
    1.14  TARBALL="$PACKAGE-full-$VERSION.tar.xz"
    1.15  WEB_SITE="http://www.xfig.org/"
    1.16  WGET_URL="https://downloads.sourceforge.net/mcj/files/$TARBALL"
    1.17 -SUGGESTED="transfig"
    1.18  
    1.19 -DEPENDS="jpeg libpng xorg xorg-libXp"
    1.20  BUILD_DEPENDS="xorg-imake xorg-cf-files xorg-gccmakedep jpeg-dev \
    1.21  libpng-dev xorg-libXp xorg-libX11-dev xorg-libXt-dev xorg-libXpm-dev \
    1.22 -xorg-libXmu-dev xorg-libXaw-dev xorg-libXaw3d-dev"
    1.23 +xorg-libXmu-dev xorg-libXaw-dev xorg-libXaw3d-dev xorg-libXt-dev"
    1.24 +SPLIT="transfig"
    1.25  
    1.26  # Rules to configure and make the package.
    1.27  compile_rules()
    1.28 @@ -23,11 +22,27 @@
    1.29  	./configure --prefix=/usr \
    1.30  		$CONFIGURE_ARGS &&
    1.31  	make &&
    1.32 -	make DESTDIR=$DESTDIR install
    1.33 +	make DESTDIR=$DESTDIR/xfig install
    1.34 +	cd $src/fig2dev-$VERSION
    1.35 +	./configure --prefix=/usr \
    1.36 +		$CONFIGURE_ARGS &&
    1.37 +	make &&
    1.38 +	make DESTDIR=$DESTDIR/transfig install
    1.39  }
    1.40  
    1.41  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.42  genpkg_rules()
    1.43  {
    1.44 -	cp -a $install/* $fs
    1.45 +	case $PACKAGE in
    1.46 +	xfig)
    1.47 +		SUGGESTED="transfig"
    1.48 +		DEPENDS="jpeg libpng xorg xorg-libXp"
    1.49 +		cp -a $install/xfig/* $fs
    1.50 +		;;
    1.51 +	transfig)
    1.52 +		CAT="x-window|Utilities for converting XFig figure files."
    1.53 +		DEPENDS="xorg xorg-libXpm libpng zlib"
    1.54 +		cp -a $install/transfig/* $fs
    1.55 +		;;
    1.56 +	esac
    1.57  }