blob: 0b3ed13b68c97e7d8df59e394bf0029e41585991 (
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
|
# Created by: M. Warner Losh <imp@freebsd.org>
# $FreeBSD$
PORTNAME= gdb
PORTVERSION= 7.10
PORTREVISION= 4
CATEGORIES= devel
MASTER_SITES= GNU
PKGNAMEPREFIX= arm-none-eabi-
DISTNAME= gdb-${PORTVERSION}
MAINTAINER= imp@FreeBSD.org
COMMENT= GNU GDB for the arm bare metal target
LIB_DEPENDS= libexpat.so:textproc/expat2
USES= gmake tar:xz iconv gmake libtool
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --target=arm-none-eabi --program-prefix=arm-none-eabi- --disable-nls \
--disable-werror
pre-configure:
cd ${WRKSRC} ; ${RM} -rf dejagnu expect tcl texinfo
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/gdb/gdb \
${STAGEDIR}${PREFIX}/bin/${PKGNAMEPREFIX}${PORTNAME}
.include <bsd.port.mk>
|