e13f00eca1
7.X and up, for removal in one month
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# Ports collection makefile for: GDB 5.3-act
|
|
# Date created: 8 August 2003
|
|
# Whom: John R. Shannon <john@johnrshannon.com>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gdb
|
|
PORTVERSION= 5.3
|
|
PORTREVISION= 2
|
|
PORTEPOCH= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.johnrshannon.com/download/
|
|
PKGNAMESUFFIX= -act
|
|
DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION}
|
|
|
|
MAINTAINER= john@johnrshannon.com
|
|
COMMENT= GDB 5.3 modified by ACT for Ada programming language
|
|
|
|
BROKEN= Does not compile with GCC 4.2
|
|
DEPRECATED= does not compile on FreeBSD 7.x and up
|
|
EXPIRATION_DATE=2011-04-17
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
PLIST_FILES= bin/gdbada
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --program-suffix=ada
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} != "i386" && ${ARCH} != "alpha"
|
|
BROKEN= Does not compile on !i386 and !alpha
|
|
.endif
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} ; ${RM} -rf dejagnu expect sim tcl texinfo
|
|
${LN} -sf ${FILESDIR}/freebsd-uthread.c ${FILESDIR}/kvm-fbsd.c \
|
|
${WRKSRC}/gdb
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/gdb/gdb ${PREFIX}/bin/gdbada
|
|
|
|
.include <bsd.port.post.mk>
|