eac38a6d6a
It installs at amd64 directory instead of x86_64. Notified at pkgsrc-bulk@, thanks.
56 lines
1.6 KiB
Makefile
56 lines
1.6 KiB
Makefile
# $NetBSD: Makefile,v 1.4 2013/12/31 00:55:14 mef Exp $
|
|
|
|
DISTNAME= binutils-2.19.1
|
|
PKGNAME= cross-h8300-elf-${DISTNAME}
|
|
CATEGORIES= cross
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=binutils/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= ryoon@NetBSD.org
|
|
HOMEPAGE= # empty
|
|
COMMENT= Cross utility for h8300-elf
|
|
LICENSE= gnu-gpl-v2 AND gnu-gpl-v3 AND gnu-lgpl-v2 AND gnu-lgpl-v3
|
|
|
|
H8300_PREFIX= ${PREFIX}/cross-h8300-elf
|
|
|
|
USE_TOOLS+= gmake makeinfo
|
|
GNU_CONFIGURE= yes
|
|
|
|
OBJDIR= ../build
|
|
CONFIGURE_DIRS= ${OBJDIR}
|
|
CONFIGURE_SCRIPT= ${WRKSRC}/configure
|
|
GNU_CONFIGURE_PREFIX= ${H8300_PREFIX}
|
|
|
|
CONFIGURE_ARGS+= --disable-werror --target=h8300-elf
|
|
INFO_FILES= yes
|
|
|
|
INSTALLATION_DIRS+= bin ${H8300_PREFIX}
|
|
|
|
pre-configure:
|
|
${RUN} cd ${WRKSRC} && ${MKDIR} ${OBJDIR}
|
|
${CP} ${PKGSRCDIR}/mk/gnu-config/config.guess ${WRKSRC}
|
|
${CP} ${PKGSRCDIR}/mk/gnu-config/config.sub ${WRKSRC}
|
|
|
|
|
|
post-install:
|
|
for f in h8300-elf-addr2line h8300-elf-ar \
|
|
h8300-elf-as h8300-elf-c++filt \
|
|
h8300-elf-gprof h8300-elf-ld \
|
|
h8300-elf-nm h8300-elf-objcopy \
|
|
h8300-elf-objdump h8300-elf-ranlib \
|
|
h8300-elf-readelf h8300-elf-size \
|
|
h8300-elf-strings h8300-elf-strip ; do \
|
|
${LN} -s ${H8300_PREFIX}/bin/"$$f" \
|
|
${DESTDIR}${PREFIX}/bin/"$$f" || exit 1; \
|
|
done
|
|
# copy libiberty.a under the different name from compiler
|
|
# PATH differs between clang and gcc: (and SunOS 5.11 places at amd64 instead of x86_64)
|
|
for d in amd64/libiberty.a ${MACHINE_ARCH}/libiberty.a libiberty.a; do \
|
|
if [ -f ${DESTDIR}${H8300_PREFIX}/lib/$$d ]; then \
|
|
${MV} ${DESTDIR}${H8300_PREFIX}/lib/$$d \
|
|
${DESTDIR}${H8300_PREFIX}/lib/libiberty_binutils.a; \
|
|
break; \
|
|
fi; \
|
|
done
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|