wok-next annotate gcc/receipt @ rev 1127
linux-source: some post-install messages
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jul 22 13:49:27 2008 +0000 (2008-07-22) |
parents | a0004e60c7fd |
children | b89693943f43 |
rev | line source |
---|---|
pankso@9 | 1 # SliTaz package receipt. |
pankso@9 | 2 |
pankso@9 | 3 PACKAGE="gcc" |
pankso@546 | 4 VERSION="4.2.3" |
pankso@204 | 5 CATEGORY="development" |
pankso@9 | 6 SHORT_DESC="The the GNU Compiler Collection." |
pankso@9 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@736 | 8 DEPENDS="" |
pankso@546 | 9 BUILD_DEPENDS="glibc-dev gawk flex" |
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@9 | 23 --enable-threads=posix --with-tune=i486 i486-pc-linux-gnu |
pankso@9 | 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* |
pankso@9 | 40 # Include files. |
pankso@9 | 41 cp -a $_pkg/usr/include $fs/usr |
pankso@9 | 42 } |
pankso@9 | 43 |
pankso@9 | 44 # Post install commands for Tazpkg. |
pankso@9 | 45 post_install() |
pankso@9 | 46 { |
pankso@9 | 47 local root |
pankso@9 | 48 root=$1 |
pankso@9 | 49 echo "Processing post-install commands..." |
pankso@9 | 50 if [ ! -f "$root/lib/cpp" ]; then |
pankso@9 | 51 ln -s ../usr/bin/cpp $root/lib |
pankso@9 | 52 fi |
pankso@9 | 53 if [ ! -f "$root/usr/bin/cc" ]; then |
pankso@9 | 54 ln -s gcc $root/usr/bin/cc |
pankso@9 | 55 fi |
pankso@9 | 56 } |