wok-stable diff efreet/receipt @ rev 8505

Update e17 stuff to last version
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sat Feb 12 02:21:51 2011 +0100 (2011-02-12)
parents b68b4f934ba7
children 4d81023c7989
line diff
     1.1 --- a/efreet/receipt	Tue Mar 02 18:31:54 2010 +0100
     1.2 +++ b/efreet/receipt	Sat Feb 12 02:21:51 2011 +0100
     1.3 @@ -1,27 +1,21 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="efreet"
     1.7 -VERSION="0.5.0.063"
     1.8 -CATEGORY="x-window"
     1.9 +VERSION="1.0.0"
    1.10 +CATEGORY="base-system"
    1.11  SHORT_DESC="E17 implementation of several specifications from freedesktop.org."
    1.12  MAINTAINER="pankso@slitaz.org"
    1.13 -DEPENDS="eet evas ecore embryo edje libcurl openssl libtasn1"
    1.14 -BUILD_DEPENDS="eet-dev evas-dev ecore-dev ecore embryo-dev edje-dev"
    1.15 +DEPENDS="eina ecore"
    1.16 +BUILD_DEPENDS=""
    1.17  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.18  WEB_SITE="http://www.enlightenment.org/"
    1.19 -WGET_URL="http://download.enlightenment.org/snapshots/2009-12-02/$TARBALL"
    1.20 +WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
    1.21  
    1.22  # Rules to configure and make the package.
    1.23  compile_rules()
    1.24  {
    1.25  	cd $src
    1.26 -	./configure \
    1.27 -		--prefix=/usr \
    1.28 -		--infodir=/usr/share/info \
    1.29 -		--mandir=/usr/share/man \
    1.30 -		$CONFIGURE_ARGS &&
    1.31 -	make &&
    1.32 -	make DESTDIR=$PWD/_pkg install
    1.33 +	./configure && make && make install
    1.34  }
    1.35  
    1.36  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.37 @@ -31,13 +25,5 @@
    1.38  	cp -a $_pkg/usr/bin $fs/usr
    1.39  	cp -a $_pkg/usr/share $fs/usr
    1.40  	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.41 -	for i in $fs/usr/lib/*.so ; do
    1.42 -		[ -L $i ] || continue
    1.43 -		[ -e $i.0 ] && continue
    1.44 -		target=$(readlink $i)
    1.45 -		case "$target" in
    1.46 -		*.so.0.*) ln -s $target $i.0;;
    1.47 -		esac
    1.48 -	done
    1.49  }
    1.50