# Template file for 'chroot-binutils'
pkgname=chroot-binutils
version=2.23.52.0.2
revision=2
wrksrc="binutils-${version}"
short_desc="GNU binary utilities -- for xbps-src use"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://www.gnu.org/software/binutils/"
license="GPL-3"
distfiles="${KERNEL_SITE}/devel/binutils/binutils-$version.tar.xz"
checksum=c2229d5d4067c782b67cfaf7f049acd8361407c0870991bc5430be5c548f6825

if [ "$IN_CHROOT" ]; then
	hostmakedepends="flex perl"
fi
makedepends="zlib-devel"
bootstrap=yes

do_configure() {
	if [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
		CONFIGFLAG="--enable-64-bit-bfd --enable-multilib"
	fi
	if [ "$CROSS_BUILD" ]; then
		# Do not use configure_args nor build_style=gnu-configure,
		# avoiding --with-sysroot to $XBPS_CROSS_BASE.
		CONFIGFLAG="--host=$XBPS_CROSS_TRIPLET --with-build-sysroot=$XBPS_CROSS_BASE"
	fi
	./configure --prefix=/usr --disable-shared \
		--enable-threads --disable-plugins \
		--with-mmap --disable-bootstrap ${CONFIGFLAG}
}

do_build() {
	make ${makejobs}
}

do_install() {
	if [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
		mkdir -p ${DESTDIR}/usr/lib
                cd ${DESTDIR}/usr
		ln -s lib lib64
		cd ${wrksrc}
        fi

	make DESTDIR=${DESTDIR} tooldir=/usr install

	[ -h ${DESTDIR}/usr/lib64 ] && rm -f ${DESTDIR}/usr/lib64
	rm -f ${DESTDIR}/usr/lib/*.a
	rm -rf ${DESTDIR}/usr/share ${DESTDIR}/usr/include
}

chroot-binutils_package() {
	provides="binutils-${version}"
	conflicts="binutils>=0"
	noverifyrdeps=yes
	pkg_install() {
		vmove usr
	}
}