2008-10-21 01:09:29 +00:00
|
|
|
# Template file for 'binutils'
|
|
|
|
pkgname=binutils
|
2010-12-10 15:12:36 +00:00
|
|
|
version=2.21
|
2008-10-28 22:57:52 +00:00
|
|
|
distfiles="http://ftp.gnu.org/gnu/binutils/$pkgname-$version.tar.bz2"
|
2008-10-21 01:09:29 +00:00
|
|
|
build_style=gnu_configure
|
2010-03-05 02:02:55 +00:00
|
|
|
configure_args="--enable-shared --enable-64-bit-bfd --enable-multilib
|
2010-01-27 01:16:31 +00:00
|
|
|
--enable-plugins --enable-secureplt --with-mmap --with-gnu-ld"
|
2009-03-18 09:02:43 +00:00
|
|
|
make_install_args="tooldir=/usr"
|
2008-10-21 01:09:29 +00:00
|
|
|
short_desc="GNU binary utilities"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2010-12-10 15:12:36 +00:00
|
|
|
checksum=60abec5bf448eb930a5a15acb8712612377dc8bcfb13dfd5131228f70561d0c7
|
2008-10-21 01:09:29 +00:00
|
|
|
long_desc="
|
|
|
|
The GNU binutils package contains essential tools to assemble, link and
|
|
|
|
manipulate binary and object files. They are often used with a compiler
|
|
|
|
and additional libraries for building software.
|
|
|
|
|
|
|
|
It includes the GNU linker, the portable GNU assembler, ar for modifying
|
|
|
|
archives (such as libraries), nm for listing symbols from object files,
|
|
|
|
objdump for displaying object file information, ranlib for generating
|
|
|
|
archive indexes, size for listing section sizes of object files,
|
|
|
|
strings for outputing the printable characters in files, strip for
|
|
|
|
stripping out symbols (like debugging information) from object files,
|
|
|
|
and other tools."
|
2008-10-27 06:42:40 +00:00
|
|
|
|
|
|
|
base_chroot=yes
|
2009-11-22 07:31:44 +00:00
|
|
|
subpackages="$pkgname-devel"
|
2009-02-24 06:13:11 +00:00
|
|
|
Add_dependency run glibc
|
2009-12-19 03:56:14 +00:00
|
|
|
Add_dependency run zlib
|
2009-10-18 06:11:54 +00:00
|
|
|
|
2009-10-18 10:28:15 +00:00
|
|
|
pre_install()
|
|
|
|
{
|
|
|
|
if [ "$xbps_machine" = "x86_64" ]; then
|
2010-12-10 15:12:36 +00:00
|
|
|
mkdir -p ${SRCPKGDESTDIR}/usr/lib
|
|
|
|
cd ${SRCPKGDESTDIR}/usr && ln -s lib lib64 && cd ${wrksrc}
|
2009-10-18 10:28:15 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2009-10-18 06:11:54 +00:00
|
|
|
post_install()
|
|
|
|
{
|
|
|
|
# Remove info file that conflicts with autoconf.
|
|
|
|
rm -f ${DESTDIR}/usr/share/info/standards.info
|
2010-01-27 01:16:31 +00:00
|
|
|
rm -f ${DESTDIR}/usr/lib64
|
2010-05-20 23:14:19 +00:00
|
|
|
|
|
|
|
# Fix for multilib builds.
|
|
|
|
if [ -d ${DESTDIR}/usr/lib32 ]; then
|
|
|
|
mv ${DESTDIR}/usr/lib32/* ${DESTDIR}/usr/lib || return 1
|
|
|
|
rmdir ${DESTDIR}/usr/lib32
|
|
|
|
fi
|
2009-10-18 06:11:54 +00:00
|
|
|
}
|