freebsd-ports/sysutils/minipro/Makefile
Kyle Evans 5fb9edd6bd Multiple ports: improve regex compliance
These changes largely fall into just two categories:

1. Need textproc/gsed for GNU extensions
2. Extraneous escapes that can go away

For #1, there's a further subdivision into those that require autoconf magic
and those that can get away with BINARY_ALIAS=sed=${LOCALBASE}/bin/gsed.
-CURRENT will soon gain GNU extensions, but these will take longer to get to
all supported releases; we must switch them to gsed to ensure we're actually
properly building them as intended.

For #2, I've fixed these as I can and we should upstream these fixes.

PORTREVISION is bumped for all of the above, because we will almost
certainly build these differently when the replacements actually start
working.

These were all detected by the below-referenced exp-run [1]. The patch
included forbids many ordinary characters from being escaped, since we'll
later imbue those with special meanings. This has had the nice side effect
of picking up various things that we didn't handle properly, e.g. \t and \r
for tab and carriage return.

PR:		229925 [1]
Approved by:	koobs (mentor)
Approved by:	portmgr (blanket: trivial build fixes)
MFH:		no (invasive risk)
Differential Revision:	https://reviews.freebsd.org/D25185
2020-06-08 04:41:31 +00:00

34 lines
752 B
Makefile

# Created by: Hondareyte <lhondareyte@laposte.net>
# $FreeBSD$
PORTNAME= minipro
PORTVERSION= 0.3
PORTREVISION= 2
CATEGORIES= sysutils
MAINTAINER= lhondareyte@laposte.net
COMMENT= CLI for MiniPRO TL866xx chip programmers
LICENSE= GPLv3
BUILD_DEPENDS= gsed:textproc/gsed
RUN_DEPENDS= bash:shells/bash
USES= compiler:c11 gmake pkgconfig shebangfix
USE_GITLAB= yes
GL_ACCOUNT= DavidGriffith
GL_COMMIT= e6fb06822e6685886a045ae98c3c82d832bd8e9c
GL_PROJECT= ${PORTNAME}
BINARY_ALIAS= sed=${LOCALBASE}/bin/gsed
SHEBANG_FILES= miniprohex
PLIST_FILES= bin/minipro \
bin/miniprohex \
man/man1/minipro.1.gz
post-install:
@${GZIP_CMD} ${STAGEDIR}${PREFIX}/man/man1/minipro.1
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
.include <bsd.port.mk>