wok diff edje/receipt @ rev 9732

linux: Fix 2. clean up and make it build with cookutils: FIXME: tazwok specif code (aufs is ok for cook and tazwok I guess)
author Christophe Lincoln <pankso@slitaz.org>
date Mon May 09 15:57:19 2011 +0200 (2011-05-09)
parents b68b4f934ba7
children 934feaca597b
line diff
     1.1 --- a/edje/receipt	Tue Mar 02 18:31:54 2010 +0100
     1.2 +++ b/edje/receipt	Mon May 09 15:57:19 2011 +0200
     1.3 @@ -1,28 +1,22 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="edje"
     1.7 -VERSION="0.9.93.063"
     1.8 +VERSION="1.0.0"
     1.9  CATEGORY="x-window"
    1.10  SHORT_DESC="E17 libs."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12 -DEPENDS="eet evas ecore embryo libcurl openssl xorg-libXss xorg-libXp libtasn1"
    1.13 -BUILD_DEPENDS="pkg-config eet evas ecore embryo eet-dev embryo-dev \
    1.14 -evas-dev ecore-dev ecore"
    1.15 +DEPENDS="embryo ecore lua"
    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 --enable-amalgamation && \
    1.34 +	make && make install
    1.35  }
    1.36  
    1.37  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.38 @@ -33,13 +27,5 @@
    1.39  	cp -a $_pkg/usr/share $fs/usr
    1.40  	chmod 755 $fs/usr/bin/*
    1.41  	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.42 -	for i in $fs/usr/lib/*.so ; do
    1.43 -		[ -L $i ] || continue
    1.44 -		[ -e $i.0 ] && continue
    1.45 -		target=$(readlink $i)
    1.46 -		case "$target" in
    1.47 -		*.so.0.*) ln -s $target $i.0;;
    1.48 -		esac
    1.49 -	done
    1.50  }
    1.51