diff options
author | obrien <obrien@FreeBSD.org> | 2004-03-25 07:12:34 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2004-03-25 07:12:34 +0800 |
commit | 563ac8adb58861a069e776428bc40e15e3f24fe3 (patch) | |
tree | 669367e1a01a861e427a00e32e62c29275e59199 /devel/gdb6/Makefile | |
parent | 0ee208dbe62724ce030ca997c9720edb1012584d (diff) | |
download | freebsd-ports-gnome-563ac8adb58861a069e776428bc40e15e3f24fe3.tar.gz freebsd-ports-gnome-563ac8adb58861a069e776428bc40e15e3f24fe3.tar.zst freebsd-ports-gnome-563ac8adb58861a069e776428bc40e15e3f24fe3.zip |
Update to a gdb 6.1 snapshot.
Note that the FreeBSD local hacks haven't been updated to 6.1 in this
commit. That will come later.
Diffstat (limited to 'devel/gdb6/Makefile')
-rw-r--r-- | devel/gdb6/Makefile | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/devel/gdb6/Makefile b/devel/gdb6/Makefile index fc3e902bd307..4a182f499c64 100644 --- a/devel/gdb6/Makefile +++ b/devel/gdb6/Makefile @@ -6,25 +6,32 @@ # $FreeBSD$ # -SNAPDATE= 2003-03-11 +SNAPDATE= 2004-03-23 SNAPVER= ${SNAPDATE:S/-//g} PORTNAME= gdb -PORTVERSION= 5.3 +PORTVERSION= 6 PORTREVISION= ${SNAPVER} CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEWARE} -MASTER_SITE_SUBDIR= gdb/snapshots/branch -DISTNAME= gdb+dejagnu-weekly-5.3.0.90_${SNAPVER} +MASTER_SITE_SUBDIR= gdb/snapshots/current +DISTNAME= gdb+dejagnu-weekly-${SNAPVER} -MAINTAINER= mp@FreeBSD.org -COMMENT= GNU GDB 5.3 developmental snapshot +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=53 +CONFIGURE_ARGS= --program-suffix=6 + +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 @@ -35,7 +42,11 @@ do-install: cklatest: ncftpls \ - ftp://mirrors.rcn.net/mirrors/sources.redhat.com/${MASTER_SITE_SUBDIR}/ \ + ftp://sources.redhat.com/pub/${MASTER_SITE_SUBDIR}/ \ | ${GREP} gdb+dejagnu-weekly .include <bsd.port.mk> + +.if ${ARCH} == "amd64" +CONFIGURE_TARGET= x86_64-portbld-freebsd${OSREL} +.endif |