41 lines
907 B
Makefile
41 lines
907 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: GDB 5.1
|
|
# Date created: 30 March 2001
|
|
# Whom: David O'Brien <obrien@NUXI.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
SNAPDATE= 2002-03-25
|
|
SNAPVER= ${SNAPDATE:S/-//g}
|
|
|
|
PORTNAME= gdb
|
|
PORTVERSION= 5.2
|
|
PORTREVISION= ${SNAPVER}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEWARE}
|
|
#MASTER_SITE_SUBDIR= gdb/releases
|
|
MASTER_SITE_SUBDIR= gdb/snapshots/branch
|
|
DISTNAME= gdb+dejagnu-5.1.90_${SNAPVER} # gdb+dejagnu-weekly-5.1.90_${SNAPVER}
|
|
|
|
MAINTAINER= obrien@FreeBSD.org
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --program-suffix=52
|
|
|
|
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://mirrors.rcn.net/mirrors/sources.redhat.com/${MASTER_SITE_SUBDIR}/ \
|
|
| grep gdb+dejagnu-
|
|
|
|
.include <bsd.port.mk>
|