diff options
author | Jimmy Olgeni <olgeni@FreeBSD.org> | 2022-07-13 12:34:25 +0200 |
---|---|---|
committer | Jimmy Olgeni <olgeni@FreeBSD.org> | 2022-07-13 12:42:46 +0200 |
commit | 72073266a236f80d4c52b4643174817e1b52d06f (patch) | |
tree | dce40d04e5f662790de5fb6bccbd6c146f43f478 /multimedia | |
parent | www/caddy: Update to 2.5.2 (diff) |
multimedia/Bento4: unbreak replacement of 'python'
The scripts have 'python3' in them but the replacement was being
performed on 'python', so you would end up with 'python3.93' and
some wrappers did not work.
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/Bento4/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/multimedia/Bento4/Makefile b/multimedia/Bento4/Makefile index 16be6fe9ef92..966f8d927700 100644 --- a/multimedia/Bento4/Makefile +++ b/multimedia/Bento4/Makefile @@ -2,6 +2,7 @@ PORTNAME= Bento4 PORTVERSION= 1.6.0 DISTVERSIONPREFIX=v DISTVERSIONSUFFIX=-639 +PORTREVISION= 1 CATEGORIES= multimedia devel MAINTAINER= rodrigo@FreeBSD.org @@ -25,7 +26,7 @@ CMAKE_BUILD_TYPE= Release INSTALL_TARGET= do-install post-patch: - @${REINPLACE_CMD} -e 's|python|${PYTHON_CMD}|g' ${WRKSRC}/Source/Python/wrappers/* + @${REINPLACE_CMD} -e 's|python3|${PYTHON_CMD}|g' ${WRKSRC}/Source/Python/wrappers/* @${REINPLACE_CMD} -e 's|$$BASEDIR/..|${DATADIR}|g' ${WRKSRC}/Source/Python/wrappers/* do-install: |