wok-next view evas/receipt @ rev 6928

Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Oct 22 22:36:22 2010 +0000 (2010-10-22)
parents f99c07c038f7
children 85cd798d6997
line source
1 # SliTaz package receipt.
3 PACKAGE="evas"
4 VERSION="0.9.9.063"
5 CATEGORY="x-window"
6 SHORT_DESC="E17 libs."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="expat fontconfig freetype jpeg libpng tiff xorg-libX11 \
9 xorg-libXau xorg-libXdmcp xorg-libXext xorg-libXrender eet openssl \
10 fribidi libgsf libcroco librsvg giflib"
11 BUILD_DEPENDS="xorg-libX11-dev eet-dev libgsf-dev libcroco-dev"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WEB_SITE="http://www.enlightenment.org/"
14 WGET_URL="http://download.enlightenment.org/snapshots/2009-12-02/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 --disable-gnutls \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 cp -a $_pkg/usr/lib/evas $fs/usr/lib
36 rm -rf $fs/usr/lib/evas/modules/*/*/*/*.*a
37 for i in $fs/usr/lib/*.so ; do
38 [ -L $i ] || continue
39 [ -e $i.0 ] && continue
40 target=$(readlink $i)
41 case "$target" in
42 *.so.0.*) ln -s $target $i.0;;
43 esac
44 done
45 }