wok-4.x diff evas/receipt @ rev 9614
Add libassuan to libassuan-dev depends.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun Apr 17 15:18:47 2011 +0000 (2011-04-17) |
parents | 6e90579538d6 |
children | e1bff384cd9d |
line diff
1.1 --- a/evas/receipt Sun Feb 28 14:11:33 2010 +0100 1.2 +++ b/evas/receipt Sun Apr 17 15:18:47 2011 +0000 1.3 @@ -1,30 +1,22 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="evas" 1.7 -VERSION="0.9.9.063" 1.8 +VERSION="1.0.0" 1.9 CATEGORY="x-window" 1.10 -SHORT_DESC="E17 libs." 1.11 +SHORT_DESC="Enlightenment's hardware-accelerated retained canvas API" 1.12 MAINTAINER="pankso@slitaz.org" 1.13 -DEPENDS="expat fontconfig freetype jpeg libpng tiff xorg-libX11 \ 1.14 -xorg-libXau xorg-libXdmcp xorg-libXext xorg-libXrender eet openssl \ 1.15 -fribidi libgsf libcroco librsvg giflib" 1.16 -BUILD_DEPENDS="xorg-libX11-dev eet-dev libgsf-dev libcroco-dev" 1.17 -TARBALL="$PACKAGE-$VERSION.tar.gz" 1.18 +DEPENDS="fontconfig freetype jpeg libpng tiff xorg-libXrender \ 1.19 +eet fribidi librsvg giflib" 1.20 +BUILD_DEPENDS="" 1.21 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.22 WEB_SITE="http://www.enlightenment.org/" 1.23 -WGET_URL="http://download.enlightenment.org/snapshots/2009-12-02/$TARBALL" 1.24 +WGET_URL="http://download.enlightenment.org/releases/$TARBALL" 1.25 1.26 # Rules to configure and make the package. 1.27 compile_rules() 1.28 { 1.29 cd $src 1.30 - ./configure \ 1.31 - --prefix=/usr \ 1.32 - --infodir=/usr/share/info \ 1.33 - --mandir=/usr/share/man \ 1.34 - --disable-gnutls \ 1.35 - $CONFIGURE_ARGS && 1.36 - make && 1.37 - make DESTDIR=$PWD/_pkg install 1.38 + ./configure && make && make install 1.39 } 1.40 1.41 # Rules to gen a SliTaz package suitable for Tazpkg. 1.42 @@ -34,13 +26,5 @@ 1.43 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.44 cp -a $_pkg/usr/lib/evas $fs/usr/lib 1.45 rm -rf $fs/usr/lib/evas/modules/*/*/*/*.*a 1.46 - for i in $fs/usr/lib/*.so ; do 1.47 - [ -L $i ] || continue 1.48 - [ -e $i.0 ] && continue 1.49 - target=$(readlink $i) 1.50 - case "$target" in 1.51 - *.so.0.*) ln -s $target $i.0;; 1.52 - esac 1.53 - done 1.54 } 1.55