1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

misc/sdformat: Fix build with Ruby 3.x

Since Ruby 3.0 rexml is converted to bundled gem. On the other hand
our Ruby ports (lang/rubyXY) don't install bundled gems. So rexml
isn't included in packages of Ruby 3.x and ports that require rexml
need to add textproc/rubygem-rexml to their dependency explicitly.

PR:		262506
Approved by:	maintainer
This commit is contained in:
Yasuhiro Kimura 2022-03-13 03:04:22 +09:00
parent 0c90b30e74
commit 57bb7137aa

View File

@ -10,7 +10,8 @@ COMMENT= Simulation Description Format (SDF) parser and description files
LICENSE= APACHE20
BUILD_DEPENDS= ignition-cmake==2:devel/ignition-cmake \
ignition-tools>0:devel/ignition-tools
ignition-tools>0:devel/ignition-tools \
rubygem-rexml>0:textproc/rubygem-rexml
LIB_DEPENDS= libignition-math6.so:math/ignition-math \
libconsole_bridge.so:devel/ros-console_bridge \
libtinyxml2.so:textproc/tinyxml2 \