summaryrefslogtreecommitdiffstats
path: root/binutils/Pkgfile
blob: 6c6fd0a4c46e2c09bdbcbee2a4e1721a2072cf03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
description="The GNU Binutils are a collection of binary tools."
packager="CRUX System Team <core-ports AT crux DOT nu>"
maintainer="Lukc <lukc AT upyum DOT com>"
url="http://sources.redhat.com/binutils/"
depends=(zlib)

if [[ -z "${CTARGET}" ]]; then
	name=binutils
else
	name=binutils-$CTARGET
fi
version=2.21
release=1
source=(ftp://ftp.gnu.org/gnu/binutils/binutils-$version.tar.bz2)
build () 
{ 
	sed -i '/^SUBDIRS/s/doc//' $name-$version/bfd/Makefile.in;
	sed -i '/^# RELEASE=y/s/#//' $name-$version/bfd/Makefile.in;
	mkdir build;
	cd build;
	if [[ -n $CTARGET ]]; then
		info "Building $name for $CTARGET."
	fi
	../$name-$version/configure \
		${CBUILD:+--build=${CBUILD}} \
		${CHOST:+--host=${CHOST}} \
		${CTARGET:+--target=${CTARGET}} \
		--prefix=$prefix \
		--mandir=$mandir \
		$(use_enable static) \
		--enable-shared \
		$(use_enable nls);
	make tooldir=$prefix;
	make check;
	make tooldir=$prefix DESTDIR=$PKG install;
	mkdir -p $PKG$prefix/include; # Pour éviter des problèmes…
	cp ../$name-$version/include/libiberty.h $PKG$prefix/include;
	# FIXME
	if [[ -e $PKG$prefix/lib/libfd.la ]]; then
		sed -i "s|-L$SRC[^ ]* ||g" $PKG$prefix/lib/libbfd.la
	fi
}