wok annotate binutils/receipt @ rev 9911
audacious-plugins: Fix BD
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Tue May 17 16:02:43 2011 +0200 (2011-05-17) |
parents | 349042ce2a5d |
children | 3ab75c9a703d |
rev | line source |
---|---|
pankso@9 | 1 # SliTaz package receipt. |
pankso@9 | 2 |
pankso@9 | 3 PACKAGE="binutils" |
gokhlayeh@8172 | 4 VERSION="2.21" |
pankso@204 | 5 CATEGORY="development" |
pankso@9 | 6 SHORT_DESC="GNU assembler, linker and binary utilities." |
pankso@9 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@534 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
gokhlayeh@8172 | 9 DEPENDS="glibc zlib" |
gokhlayeh@8172 | 10 BUILD_DEPENDS="glibc zlib" |
pankso@9 | 11 WEB_SITE="http://www.gnu.org/software/binutils/" |
pankso@2699 | 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" |
erjo@4780 | 13 PROVIDE="libbfd" |
jozee@4932 | 14 TAGS="assembler linker" |
pankso@9 | 15 |
gokhlayeh@8172 | 16 # Rules to compile & install the temporary toolchain. |
gokhlayeh@8172 | 17 precook_tmp_toolchain() |
gokhlayeh@8172 | 18 { |
gokhlayeh@8172 | 19 mkdir -p binutils-build && cd binutils-build |
gokhlayeh@8172 | 20 { $src/configure \ |
gokhlayeh@8172 | 21 --target=$BUILD_HOST --disable-nls \ |
gokhlayeh@8172 | 22 --disable-werror && |
gokhlayeh@8172 | 23 make |
gokhlayeh@8172 | 24 } || return 1 |
gokhlayeh@8172 | 25 |
gokhlayeh@8172 | 26 #If building on x86_64, create a symlink to ensure the sanity of the toolchain. |
gokhlayeh@8172 | 27 [ "$ARCH" = x86_64 ] && mkdir /tools/lib && ln -s lib /tools/lib64 |
gokhlayeh@8172 | 28 |
gokhlayeh@8172 | 29 make install |
gokhlayeh@8172 | 30 } |
gokhlayeh@8172 | 31 |
gokhlayeh@8172 | 32 cook_tmp_toolchain() |
gokhlayeh@8172 | 33 { |
gokhlayeh@8172 | 34 mkdir -p binutils-build && cd binutils-build |
gokhlayeh@8172 | 35 { CC="$BUILD_HOST-gcc -B/tools/lib/" \ |
gokhlayeh@8172 | 36 AR=$BUILD_HOST-ar RANLIB=$BUILD_HOST-ranlib \ |
gokhlayeh@8172 | 37 $src/configure \ |
gokhlayeh@8172 | 38 --disable-nls --with-lib-path=/tools/lib && |
gokhlayeh@8172 | 39 make && |
gokhlayeh@8172 | 40 make install && |
gokhlayeh@8172 | 41 make -C ld clean && |
gokhlayeh@8172 | 42 make -C ld LIB_PATH=/usr/lib:/lib |
gokhlayeh@8172 | 43 } || return 1 |
gokhlayeh@8172 | 44 cp ld/ld-new /tools/bin |
gokhlayeh@8172 | 45 } |
gokhlayeh@8172 | 46 |
pankso@9 | 47 # Rules to configure and make the package. |
pankso@9 | 48 compile_rules() |
pankso@9 | 49 { |
slaxemulator@9745 | 50 cd $src |
pankso@9702 | 51 mkdir -p ../binutils-build && cd ../binutils-build |
gokhlayeh@8172 | 52 $src/configure \ |
rcx@3930 | 53 --program-prefix=$TOOLPREFIX \ |
gokhlayeh@8172 | 54 --enable-shared && |
gokhlayeh@8172 | 55 make tooldir=/usr && |
pankso@9 | 56 # Install in binutils-build/ and then move the files to |
pankso@9 | 57 # to the source tree. Can't install directly... This is done |
pankso@9 | 58 # to keep the $src and $_pkg working for genpkg. |
gokhlayeh@8172 | 59 make tooldir=/usr install && |
rcx@3930 | 60 # This is the default binutils, so create symlinks |
rcx@3930 | 61 # to the target platform binutil binaries. |
rcx@3930 | 62 # Delete duplicate binaries to save space. |
gokhlayeh@8172 | 63 for binutil in $(ls -1 $DESTDIR/usr/bin/ | grep "${TOOLPREFIX}") ; do |
gokhlayeh@8172 | 64 genericBinutilPath="$DESTDIR/usr/bin/$(echo "$binutil" | sed "s:$TOOLPREFIX::g")" |
rcx@3930 | 65 if [ -e $genericBinutilPath ] ; then |
rcx@3930 | 66 rm -f $genericBinutilPath |
rcx@3930 | 67 fi |
rcx@3930 | 68 ln -s $binutil $genericBinutilPath |
rcx@3930 | 69 done |
pankso@9 | 70 } |
pankso@9 | 71 |
pankso@9 | 72 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@9 | 73 genpkg_rules() |
pankso@9 | 74 { |
slaxemulator@9439 | 75 mkdir -p $fs/usr/lib |
pankso@9 | 76 cp -a $_pkg/usr/bin $fs/usr |
slaxemulator@9439 | 77 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
slaxemulator@9439 | 78 cp -a $_pkg/usr/lib/*.a $fs/usr/lib |
pankso@9 | 79 cp -a $_pkg/usr/include $fs/usr |
pankso@534 | 80 |
pankso@9 | 81 # libiberty.h |
pankso@9 | 82 cp -a $src/include/libiberty.h $fs/usr/include |
pankso@534 | 83 |
pankso@3188 | 84 # Remove 'strings' (Busybox). |
pankso@3188 | 85 #rm $fs/usr/lib/libiberty.a |
rcx@3930 | 86 rm $fs/usr/bin/strings $fs/usr/bin/*-strings |
gokhlayeh@8172 | 87 |
pankso@9702 | 88 # Remove build directory (cookutils and tazwok path). |
pankso@9702 | 89 rm -rf $WOK/$PACKAGE/source/$PACKAGE-build |
pankso@9702 | 90 rm -rf $WOK/$PACKAGE/$PACKAGE-build |
pankso@9 | 91 } |