wok diff ecore/receipt @ rev 9425
add: ruby-enterprise*
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Wed Mar 30 23:45:07 2011 +0200 (2011-03-30) |
parents | 3fa1d9832662 |
children | e1bff384cd9d |
line diff
1.1 --- a/ecore/receipt Tue May 04 09:45:55 2010 +0200 1.2 +++ b/ecore/receipt Wed Mar 30 23:45:07 2011 +0200 1.3 @@ -1,31 +1,23 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="ecore" 1.7 -VERSION="0.9.9.063" 1.8 -CATEGORY="x-window" 1.9 -SHORT_DESC="E17 core libs." 1.10 +VERSION="1.0.0" 1.11 +CATEGORY="base-system" 1.12 +SHORT_DESC="Enlightenment's core event abstraction layer and OS abstraction layer" 1.13 MAINTAINER="pankso@slitaz.org" 1.14 -DEPENDS="eet evas libcurl openssl xorg-libX11 xorg-libXau xorg-libXcomposite \ 1.15 -xorg-libXcursor xorg-libXdmcp xorg-libXext xorg-libXfixes xorg-libXinerama \ 1.16 -xorg-libXrandr xorg-libXrender xorg-libXdamage xorg-libXtst xorg-libXp \ 1.17 -xorg-libXss libtasn1" 1.18 -BUILD_DEPENDS="xorg-dev eet-dev evas-dev xorg-libXtst-dev libtasn1-dev" 1.19 +DEPENDS="evas xorg-libX11 libcurl glib xorg-libXcomposite \ 1.20 +xorg-libXcursor xorg-libXdamage xorg-libXtst xorg-libXinerama \ 1.21 +xorg-libXrandr xorg-libXp xorg-libXss" 1.22 +BUILD_DEPENDS="curl-dev" 1.23 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.24 WEB_SITE="http://www.enlightenment.org/" 1.25 -WGET_URL="http://download.enlightenment.org/snapshots/2009-12-02/$TARBALL" 1.26 +WGET_URL="http://download.enlightenment.org/releases/$TARBALL" 1.27 1.28 # Rules to configure and make the package. 1.29 compile_rules() 1.30 { 1.31 cd $src 1.32 - ./configure \ 1.33 - --enable-ecore-config \ 1.34 - --prefix=/usr \ 1.35 - --infodir=/usr/share/info \ 1.36 - --mandir=/usr/share/man \ 1.37 - $CONFIGURE_ARGS && 1.38 - make && 1.39 - make DESTDIR=$PWD/_pkg install 1.40 + ./configure && make && make install 1.41 } 1.42 1.43 # Rules to gen a SliTaz package suitable for Tazpkg. 1.44 @@ -34,13 +26,5 @@ 1.45 mkdir -p $fs/usr/lib 1.46 cp -a $_pkg/usr/bin $fs/usr 1.47 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.48 - for i in $fs/usr/lib/*.so ; do 1.49 - [ -L $i ] || continue 1.50 - [ -e $i.0 ] && continue 1.51 - target=$(readlink $i) 1.52 - case "$target" in 1.53 - *.so.0.*) ln -s $target $i.0;; 1.54 - esac 1.55 - done 1.56 } 1.57