summaryrefslogtreecommitdiff
path: root/misc/sdformat/Makefile (follow)
Commit message (Collapse)AuthorAgeFilesLines
* misc/sdformat: Unbreak by patching the portYuri Victorovich2025-12-051-2/+0
|
* Mk/bsd.default-versions.mk: Change default version of Ruby to 3.3Yasuhiro Kimura2025-05-091-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | With the release of 3.2.8 Ruby 3.2 series switched to security fix only phase and will be reach its EoL on March 2026. So change defult version of Ruby to 3.3. Following changes are made to pass exp-run. * Fix build of audio/rubygem-ruby-shout by adding '--with-cflags="-Wno-error=int-conversion"' to CONFIGURE_ARGS. * Build of devel/rubygem-mmap2 fails with Ruby 3.3 and later because of internal API change of Ruby. So mark BROKEN with them. * devel/rubygem-xdg7, sysutils/vagrant and www/redmine51 don't support Ruby 3.3 and later. So mark BROKEN with them. * misc/sdformat and textproc/ruby-rdtool are already marked BROKEN with Ruby 3.2 and build with all other Ruby versions also fails with same error. So mark just BROKEN. * Fix plist error of sysutils/puppet8. * Fix RUN_DEPENDS of textproc/quarto. PR: 286217 Approved by: self (with hat of ruby) Exp-run by: antoine
* textproc/tinyxml2: Update to 11.0.0Po-Chuan Hsieh2025-03-191-1/+1
| | | | | | - Bump PORTREVISION of dependent ports for shlib change Changes: https://github.com/leethomason/tinyxml2/releases
* textproc/tinyxml2: Revert 450aafcba559f95c94c5f195d83b5fe4fdc3748aJoel Bodenmann2024-02-231-1/+1
| | | | Approved by: tcberner (portmgr)
* textproc/tinyxml2: Update to 10.0.0Po-Chuan Hsieh2024-02-211-1/+1
| | | | | | | | | | | - Convert to meson - Fix 0c022f0fc854184d95ff3303049a063a39b1f551 - Bump PORTREVISION for package change - Bump PORTREVISION of dependent ports for shlib change - Remove duplicate PORTREVISION from math/linbox Changes: https://github.com/leethomason/tinyxml2/releases https://github.com/leethomason/tinyxml2/commits/master
* misc/sdformat: Marked BROKEN with ruby32Muhammad Moinur Rahman2024-01-211-1/+2
| | | | | PR: 276466 Approved by: portmgr (blanket)
* misc/sdformat: unbreakAdriaan de Groot2023-03-261-2/+0
| | | | | | Because we have separate directories with urdf (libraries and headers) the consumer that assumes they live in one place falls over because the headers are not found.
* Add WWW entries to port MakefilesStefan Eßer2022-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
* misc/sdformat: mark BROKENDmitry Marakasov2022-06-071-0/+2
| | | | Approved by: portmgr blanket
* misc/sdformat: Fix build with Ruby 3.xYasuhiro Kimura2022-03-141-1/+2
| | | | | | | | | | 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
* textproc/tinyxml2: Update to 9.0.0Po-Chuan Hsieh2021-06-151-1/+1
| | | | | | - Bump PORTREVISION of dependent ports for shlib change Changes: https://github.com/leethomason/tinyxml2/commits/master
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Bump PORTREVISION for textproc/tinyxml2 shlib changeSunpoet Po-Chuan Hsieh2020-04-041-1/+1
| | | | Notes: svn path=/head/; revision=530670
* Unbreak INDEXAntoine Brodin2019-11-241-2/+2
| | | | Notes: svn path=/head/; revision=518360
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-1/+1
| | | | | | | | | | | | | | | | | | as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330 Notes: svn path=/head/; revision=507372
* Change cmake default behaviour to outsource.Tobias C. Berner2018-12-251-1/+1
| | | | | | | | | | | | | | Ports that build out of source now simply can use "USES=cmake" instead of "USES=cmake:outsource". Ports that fail to build out of source now need to specify "USES=cmake:insource". I tried to only set insource where explictely needed. PR: 232038 Exp-run by: antoine Notes: svn path=/head/; revision=488341
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-0/+1
| | | | | | | | | | | | | | | | | | defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590 Notes: svn path=/head/; revision=487272
* New port: misc/sdformat: Simulation Description Format (SDF) parser and ↵Yuri Victorovich2018-11-211-0/+40
description files Notes: svn path=/head/; revision=485493