mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
6b4f8c7600
Changes: * Support for flat binary files. * Various bug fixes, including many disassembly fixes, an issue causing FRAM reset-vector corruption and refactoring of drivers. * Support for UIF BSL access via USB. * Support for Olimex MSP430-JTAG-ISO-MK2, including power profiling. * Support for parallel JTAG. * Support for many new chips when using Olimex drivers. * Add new interface mode for use with front-ends. * Support for new chips: MSP430F6736, MSP430F2252, MSP430G2403, MSP430F6435. * Support for watchpoints using MSP430.DLL (tilib) driver. * Support for GoodFET (memory access/programming only). * Basic C++ demangling support. * New commands: "fill" and "verify". * Erase requests are now ignored when using FRAM chips. PR: ports/174468 Submitted by: peterj (maintainer)
35 lines
739 B
Makefile
35 lines
739 B
Makefile
# New ports collection makefile for: mspdebug
|
|
# Date created: 30 Jan 2011
|
|
# Whom: Peter Jeremy <peterjeremy@acm.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# Based on the OpenBSD port by: Jasper Lievisse Adriaanse <jasper@openbsd.org>
|
|
|
|
PORTNAME= mspdebug
|
|
PORTVERSION= 0.21
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF/${PORTNAME}
|
|
|
|
MAINTAINER= peterjeremy@acm.org
|
|
COMMENT= Debugger for use with MSP 430 MCUs
|
|
|
|
LICENSE= GPLv2
|
|
|
|
MAN1= mspdebug.1
|
|
USE_GMAKE= yes
|
|
|
|
PLIST_FILES= bin/mspdebug
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 800069
|
|
LIB_DEPENDS+= usb:${PORTSDIR}/devel/libusb
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/mspdebug ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/mspdebug.man ${PREFIX}/man/man1/mspdebug.1
|
|
|
|
.include <bsd.port.post.mk>
|