wok-stable annotate gcc/receipt @ rev 2971
gegl: update depends
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun May 10 00:02:45 2009 +0200 (2009-05-10) |
parents | b89693943f43 |
children | 8dc67d801588 |
rev | line source |
---|---|
pankso@9 | 1 # SliTaz package receipt. |
pankso@9 | 2 |
pankso@9 | 3 PACKAGE="gcc" |
pankso@2700 | 4 VERSION="4.3.3" |
pankso@204 | 5 CATEGORY="development" |
pankso@9 | 6 SHORT_DESC="The the GNU Compiler Collection." |
pankso@9 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@2700 | 8 DEPENDS="libgomp gmp mpfr" |
pankso@2700 | 9 BUILD_DEPENDS="glibc-dev gawk flex gmp gmp-dev mpfr mpfr-dev" |
pankso@9 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@9 | 11 WEB_SITE="http://gcc.gnu.org/" |
pankso@9 | 12 WGET_URL="ftp://ftp.irisa.fr/pub/mirrors/gcc.gnu.org/gcc/releases/$PACKAGE-$VERSION/$TARBALL" |
pankso@9 | 13 |
pankso@9 | 14 # Rules to configure and make the package. |
pankso@9 | 15 compile_rules() |
pankso@9 | 16 { |
pankso@9 | 17 mkdir gcc-build |
pankso@9 | 18 cd gcc-build |
pankso@9 | 19 ../$PACKAGE-$VERSION/configure --prefix=/usr --libexecdir=/usr/lib \ |
pankso@9 | 20 --infodir=/usr/share/info --mandir=/usr/share/man --enable-nls \ |
pankso@9 | 21 --enable-languages=c,c++ --enable-shared --with-system-zlib \ |
pankso@9 | 22 --enable-clocale=gnu --enable-objc-gc --enable-__cxa_atexit \ |
pankso@2700 | 23 --enable-threads=posix --with-tune=i486 i486-pc-linux-gnu && |
pankso@2700 | 24 make bootstrap && |
pankso@9 | 25 # Make install in the source tree to help creating derivated pkgs |
pankso@9 | 26 # and keep $_pkg variable set for genpkg. |
pankso@9 | 27 make DESTDIR=$src/_pkg install |
pankso@9 | 28 } |
pankso@9 | 29 |
pankso@9 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@9 | 31 genpkg_rules() |
pankso@9 | 32 { |
pankso@9 | 33 mkdir -p $fs/usr/share |
pankso@9 | 34 cp -a $_pkg/usr/bin $fs/usr |
pankso@9 | 35 # Copy all libs. Remove libgcc_s.so and libstdc++.so |
pankso@9 | 36 # they goes in gcc-lib-base-$VERSION package. |
pankso@9 | 37 cp -a $_pkg/usr/lib $fs/usr |
pankso@9 | 38 rm $fs/usr/lib/libgcc_s.so* |
pankso@9 | 39 rm $fs/usr/lib/libstdc++.so* |
pascal@2309 | 40 rm $fs/usr/lib/libgomp.so* |
pankso@9 | 41 # Include files. |
pankso@9 | 42 cp -a $_pkg/usr/include $fs/usr |
pankso@9 | 43 } |
pankso@9 | 44 |
pankso@9 | 45 # Post install commands for Tazpkg. |
pankso@9 | 46 post_install() |
pankso@9 | 47 { |
pankso@9 | 48 local root |
pankso@9 | 49 root=$1 |
pankso@9 | 50 echo "Processing post-install commands..." |
pankso@9 | 51 if [ ! -f "$root/lib/cpp" ]; then |
pankso@9 | 52 ln -s ../usr/bin/cpp $root/lib |
pankso@9 | 53 fi |
pankso@9 | 54 if [ ! -f "$root/usr/bin/cc" ]; then |
pankso@9 | 55 ln -s gcc $root/usr/bin/cc |
pankso@9 | 56 fi |
pankso@9 | 57 } |