From owner-svn-ports-head@FreeBSD.ORG Sun Dec 16 05:20:18 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 83879943; Sun, 16 Dec 2012 05:20:18 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 66ABE8FC0A; Sun, 16 Dec 2012 05:20:18 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBG5KImQ009517; Sun, 16 Dec 2012 05:20:18 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBG5KHNk009514; Sun, 16 Dec 2012 05:20:17 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201212160520.qBG5KHNk009514@svn.freebsd.org> From: Eitan Adler Date: Sun, 16 Dec 2012 05:20:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r308980 - in head/devel/mspdebug: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Dec 2012 05:20:18 -0000 Author: eadler Date: Sun Dec 16 05:20:17 2012 New Revision: 308980 URL: http://svnweb.freebsd.org/changeset/ports/308980 Log: Update to 0.21 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) Modified: head/devel/mspdebug/Makefile head/devel/mspdebug/distinfo head/devel/mspdebug/files/patch-Makefile Modified: head/devel/mspdebug/Makefile ============================================================================== --- head/devel/mspdebug/Makefile Sun Dec 16 04:22:15 2012 (r308979) +++ head/devel/mspdebug/Makefile Sun Dec 16 05:20:17 2012 (r308980) @@ -7,7 +7,7 @@ # Based on the OpenBSD port by: Jasper Lievisse Adriaanse PORTNAME= mspdebug -PORTVERSION= 0.19 +PORTVERSION= 0.21 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME} Modified: head/devel/mspdebug/distinfo ============================================================================== --- head/devel/mspdebug/distinfo Sun Dec 16 04:22:15 2012 (r308979) +++ head/devel/mspdebug/distinfo Sun Dec 16 05:20:17 2012 (r308980) @@ -1,2 +1,2 @@ -SHA256 (mspdebug-0.19.tar.gz) = 0410ee3c30ae50d028bacee0fe27ec0d0b6cda3163cae51d02cda9aaa8814b6a -SIZE (mspdebug-0.19.tar.gz) = 174126 +SHA256 (mspdebug-0.21.tar.gz) = 37c0c83851e1ff7048012c733e21cd2fe5bef21f67814a462c6a7049dc709988 +SIZE (mspdebug-0.21.tar.gz) = 228413 Modified: head/devel/mspdebug/files/patch-Makefile ============================================================================== --- head/devel/mspdebug/files/patch-Makefile Sun Dec 16 04:22:15 2012 (r308979) +++ head/devel/mspdebug/files/patch-Makefile Sun Dec 16 05:20:17 2012 (r308980) @@ -1,16 +1,16 @@ ---- Makefile.orig 2011-11-08 08:11:49.000000000 +1100 -+++ Makefile 2012-02-25 09:33:44.098219483 +1100 -@@ -43,8 +43,14 @@ - PORTS_CFLAGS = `pkg-config --cflags libusb` - PORTS_LDFLAGS = `pkg-config --libs libusb` -ltermcap -pthread +--- Makefile.orig 2012-11-26 10:27:48.000000000 +1100 ++++ Makefile 2012-12-16 15:13:34.359453238 +1100 +@@ -45,8 +45,14 @@ + PORTS_CFLAGS := $(shell pkg-config --cflags libusb) + PORTS_LDFLAGS := $(shell pkg-config --libs libusb) -ltermcap -pthread else -+ ifeq ($(UNAME),FreeBSD) # FreeBSD Ports stuff ++ ifeq ($(UNAME_S),FreeBSD) # FreeBSD Ports stuff +# This is only needed prior to FreeBSD 8.x to find libusb -+ PORTS_CFLAGS = -I${LOCALBASE}/include -+ PORTS_LDFLAGS = -L${LOCALBASE}/lib ++ PORTS_CFLAGS := -I${LOCALBASE}/include ++ PORTS_LDFLAGS := -L${LOCALBASE}/lib + else - PORTS_CFLAGS = - PORTS_LDFLAGS = + PORTS_CFLAGS := + PORTS_LDFLAGS := + endif endif endif