aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Knoblich <kai@FreeBSD.org>2023-07-24 03:51:16 +0000
committerKai Knoblich <kai@FreeBSD.org>2023-07-24 04:18:50 +0000
commitf32c92469e425f2c75961db623e1e6e18d095273 (patch)
tree632d1e664f34143a8ad17554af2bf7c4db9bfb6f
parente4be32d9c8a87d8e0689588132d1f7542017922e (diff)
downloadports-f32c92469e425f2c75961db623e1e6e18d095273.tar.gz
ports-f32c92469e425f2c75961db623e1e6e18d095273.zip
devel/plasma: Fix BUILD_DEPENDS after 2619476372c0
* The recently updated devel/py-capstone, which is used as RUN_DEPENDS pulls in devel/capstone which leads to conflicting dependendies with devel/capstone4 which is installed prior during the build phase. Fix the issue by switching the BUILD_DEPENDS to devel/capstone. * Bump PORTREVISION due changed package contents as the shared libs are created from the more recent devel/capstone. Reported by: pkg-fallout
-rw-r--r--devel/plasma/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/plasma/Makefile b/devel/plasma/Makefile
index f232c2f64406..fd01c4ce09c0 100644
--- a/devel/plasma/Makefile
+++ b/devel/plasma/Makefile
@@ -1,6 +1,6 @@
PORTNAME= plasma
DISTVERSION= g20180708
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= devel python
MAINTAINER= kai@FreeBSD.org
@@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= bash:shells/bash \
binutils>=2:devel/binutils \
- capstone4>=3:devel/capstone4
+ capstone>=3:devel/capstone
RUN_DEPENDS= binutils>=2:devel/binutils \
${PYTHON_PKGNAMEPREFIX}capstone>=3:devel/py-capstone@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}future>=0:devel/py-future@${PY_FLAVOR} \