freebsd-ports/devel/msp430-debug-stack/Makefile
Tobias Kortkamp 1bf865fed5
Clean up all commented PORTREVISION and PORTEPOCH lines
No revision bump tool that we have cleans them up or deals with
them, so we end up with duplicated lines.  Instead of implementing
that just clean up the 51 ports that do this.

PORTREVISION and PORTEPOCH can be set to 0 explicitly instead if
you need a reminder or placeholder.
2021-04-19 10:00:13 +02:00

54 lines
1.7 KiB
Makefile

PORTNAME= msp430-debug-stack
PORTVERSION= 3.15.0.1
PORTREVISION= 0
CATEGORIES= devel
MASTER_SITES= http://software-dl.ti.com/msp430/msp430_public_sw/mcu/msp430/MSPDS/3_15_0_000/export/ \
http://www.ti.com/lit/ug/slau320ai/:doc1 \
http://www.ti.com/lit/ug/slau656b/:doc2
DISTFILES= MSPDebugStack_OS_Package_${PORTVERSION:S/./_/g}.zip \
slau320ai.pdf:doc1 \
slau656b.pdf:doc2
EXTRACT_ONLY= MSPDebugStack_OS_Package_${PORTVERSION:S/./_/g}.zip
MAINTAINER= lev@FreeBSD.org
COMMENT= TI MSP430 debugging interface library
LICENSE= BSD3CLAUSE
LIB_DEPENDS= libboost_filesystem.so:devel/boost-libs \
libhidapi.so:comms/hidapi
USES= compiler:c++11-lib dos2unix gmake zip:infozip
USE_LDCONFIG= yes
DOS2UNIX_REGEX= .*/Makefile|.*\.(cpp|h)
MAKE_ARGS= BOOST_DIR=${LOCALBASE} \
HIDAPI_DIR=${LOCALBASE}
MAKE_JOBS_UNSAFE= yes
NO_WRKSUBDIR= yes
SUB_FILES= pkg-message
REINPLACE_ARGS= -i ""
OPTIONS_DEFINE= DOCS
post-patch:
@${FIND} ${WRKSRC}/DLL430_v3/src/TI/DLL430 \
\( -name '*.cpp' -o -name '*.h' \) -print0 | ${XARGS} -0 \
${REINPLACE_CMD} -e 's|[io]fstream|std::&|; s|std::std::|std::|'
do-install:
${INSTALL_LIB} ${WRKSRC}/libmsp430.so ${STAGEDIR}${PREFIX}/lib/libmsp430.so
${INSTALL_DATA} ${WRKSRC}/libmsp430.a ${STAGEDIR}${PREFIX}/lib/libmsp430.a
${MKDIR} ${STAGEDIR}${PREFIX}/include/libmsp430
${INSTALL_DATA} ${WRKSRC}/DLL430_v3/include/* ${STAGEDIR}${PREFIX}/include/libmsp430/
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/slau320ai.pdf ${STAGEDIR}${DOCSDIR}/
${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/slau656b.pdf ${STAGEDIR}${DOCSDIR}/
${MKDIR} ${STAGEDIR}${PREFIX}/etc/devd
${INSTALL_DATA} ${FILESDIR}/mspfet.conf ${STAGEDIR}${PREFIX}/etc/devd
.include <bsd.port.mk>