forked from Lainports/freebsd-ports
from these ports. Other changes: - convert Makefile header - convert to optionsNG - remove indefinite article from comment - drop support for FreeBSD < 8.0 - pet portlint (leave library ABI versions in LIB_DEPENDS) - net-mgmt/spectools: change option name from GTK to GTK2 to use default description from bsd.options.desc.mk Approved by: portmgr (bapt)
25 lines
550 B
Makefile
25 lines
550 B
Makefile
# Created by: 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
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/mspdebug ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/mspdebug.man ${PREFIX}/man/man1/mspdebug.1
|
|
|
|
.include <bsd.port.mk>
|