forked from Lainports/freebsd-ports
- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.
While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.
Also, replace some EXTRACT_SUFX occurences with USES=tar:*.
Checked by: make fetch-urlall-list
With hat: portmgr
Sponsored by: Absolight
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# Created by: John Marino <marino@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= binutils
|
|
PORTVERSION= 2.25
|
|
CATEGORIES= lang
|
|
MASTER_SITES= SOURCEWARE/binutils/releases
|
|
PKGNAMEPREFIX= gnatdroid-
|
|
|
|
MAINTAINER= marino@FreeBSD.org
|
|
COMMENT= Infrastructure for C/Ada Android cross-compiler
|
|
|
|
LICENSE= GPLv3 LGPL3
|
|
LICENSE_COMB= multi
|
|
|
|
BUILD_DEPENDS= gnatdroid-sysroot>=19:${PORTSDIR}/lang/gnatdroid-sysroot \
|
|
${LOCALBASE}/lib/libgmp.so:${PORTSDIR}/math/gmp \
|
|
${LOCALBASE}/lib/libmpfr.so:${PORTSDIR}/math/mpfr
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USES= gmake tar:bzip2
|
|
HAS_CONFIGURE= yes
|
|
NO_MTREE= yes
|
|
|
|
NO_LICENSES_INSTALL= yes
|
|
|
|
WRKSRC= ${WRKDIR}/binutils-${PORTVERSION}
|
|
PREFIX= ${LOCALBASE}/android
|
|
BRANCH2= ARMv7
|
|
BR2_PREFIX= ${PREFIX}/${BRANCH2}
|
|
ARMTARGET= arm-aux-linux-androideabi
|
|
PLIST_SUB+= TARGET="${ARMTARGET}"
|
|
PLIST_SUB+= BRANCH2="${BRANCH2}"
|
|
|
|
CONFIGURE_ARGS+= --target=${ARMTARGET}
|
|
CONFIGURE_ARGS+= --prefix=${BR2_PREFIX}
|
|
CONFIGURE_ARGS+= --with-sysroot=${PREFIX}
|
|
CONFIGURE_ARGS+= --with-gmp=${LOCALBASE}
|
|
CONFIGURE_ARGS+= --with-mpfr=${LOCALBASE}
|
|
CONFIGURE_ARGS+= --disable-werror
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
|
|
post-install:
|
|
# Move the unwanted documentation out of the stage directory
|
|
${MV} ${STAGEDIR}${BR2_PREFIX}/share ${WRKDIR}
|
|
|
|
.include <bsd.port.mk>
|