aboutsummaryrefslogtreecommitdiffstats
path: root/devel/gdb6/Makefile
blob: b5275c1ae4f78e3b1e3c6080fb60ada9d3a3c929 (plain) (blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# ex:ts=8
# Ports collection makefile for:    GDB 5.1
# Date created:             30 March 2001
# Whom:                 David O'Brien <obrien@NUXI.com>
#
# $FreeBSD$
#

SNAPDATE=   2004-03-23
SNAPVER=    ${SNAPDATE:S/-//g}

PORTNAME=   gdb
PORTVERSION=    6
PORTREVISION=   ${SNAPVER}
CATEGORIES= devel
MASTER_SITES=   ${MASTER_SITE_SOURCEWARE}
MASTER_SITE_SUBDIR= gdb/snapshots/current
DISTNAME=   gdb+dejagnu-weekly-${SNAPVER}

MAINTAINER= obrien@FreeBSD.org
COMMENT=    GNU GDB 6

WRKSRC=     ${WRKDIR}/${DISTNAME:S/-weekly//}
USE_BZIP2=  yes
USE_GMAKE=  yes
USE_REINPLACE=  yes
GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --program-suffix=6

.include <bsd.port.pre.mk>

.if ${ARCH} == "amd64"
CONFIGURE_TARGET=   x86_64-portbld-freebsd${OSREL}
.endif
.if ${ARCH} == "amd64" || ${ARCH} == "sparc64" || ${ARCH} == "ia64"
PLIST_SUB+= NO_NATIVE_GDB=""
post-install:
    cd ${PREFIX}/bin ; ${LN} -sf gdb${PORTVERSION} gdb
.else
PLIST_SUB+= NO_NATIVE_GDB="@comment "
.endif

post-patch:
    @${REINPLACE_CMD} -e 's/$$/ [FreeBSD]/' ${WRKSRC}/gdb/version.in

do-patch: post-patch
    @${ECHO} 'FreeBSD-specific patches disabled for now, until upgraded.'

pre-configure:
    cd ${WRKSRC} ; ${RM} -rf dejagnu expect sim tcl texinfo

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/gdb/gdb \
        ${PREFIX}/bin/${PORTNAME}${PORTVERSION:S/.//g}

cklatest:
    ncftpls \
        ftp://sources.redhat.com/pub/${MASTER_SITE_SUBDIR}/  \
        | ${GREP} gdb+dejagnu-weekly

.include <bsd.port.post.mk>