forked from Lainports/freebsd-ports
Changes include:
* Support for MSP430-JTAG-ISO on platforms other than Linux, via
both serial drivers and raw USB access.
* Support for new chips: MSP430F5342, MSP430F5329, MSP430F2418,
* MSP430F2121, MSP430F2012, MSP430F449.
* Fixed support for later-model MSP430-JTAG-TINY rev 2.
* Fixed output buffering to allow correct interaction with
Eclipse plugins.
* Support for raw USB access to FET430UIF and eZ430-F2013.
* GDB protocol bug fixes.
* Section names are displayed when programming.
PR: 165682
Submitted by: Peter Jeremy <peterjeremy@acm.org> (maintainer)
34 lines
739 B
Makefile
34 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.19
|
|
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>
|