While here, make sure gtk-update-icon-cache is only on run dependency
where added as a dependency
Enforce gtk3 to depend on gtk-update-icon-cache (previously it was
inheriting the dependency)
This regeneration is required as the new gitlab version changed
the address and the directory the source files can be downloaded.
This commit also applies some small fixes to make sure all ports using
gitlab are buildable.
Reviewed by: mat
Approved by: portmgr
Differential Revision: https://reviews.freebsd.org/D29628
* use new sysctlinfo(4) 20210222 and sysctlbyname 20210223 features
* add: sysctlmif_oidextendedbyname()
* add: sysctlmif_hashandler(), sysctlmif_hashandlerbyname()
* add: sysctlmif_nextnodebyname(), sysctlmif_nextleafbyname()
* add: sysctlmif_leavesbyname(), sysctlmif_leavesbyname()
* update: constants/OIDs so delete port path
PR: 253883, 253884
Submitted by: Alfonso S. Siciliano <alfix86 AT gmail DOT com> (maintainer)
Changelog:
https://gitlab.com/alfix/sysctlview/-/blob/master/CHANGELOG
- Update COMMENT, pkg-descr, and DESKTOP_ENTRIES.
Also, while here:
- Pet portclippy & portfmt.
- Simplify do-install.
- Update installation path for manpages.
PR: 244367
Submitted by: Alfonso S. Siciliano <alfix86@gmail.com>
Approved by: Alfonso S. Siciliano (maintainer)
Changelog:
* Update because the CTL_STSCTL constant was introduced in sys/sysctl.h
* add an error dialog if an OID has 23/24 levels and the sysctlinfo kmod is not
loaded (avoiding a segmentation fault)
PR: 241086
Submitted by: Alfonso S. Siciliano (maintainer)
* The sysctlinfo interface (sysutils/sysctlinfo-kmod) is now required as
build/run dependency which relies on the "oid_label" constant that was
introduced in FreeBSD 1200019.
Thus set the port to IGNORE if the above doesn't apply while I'm here. [1]
Changelog:
* Show nodes up to CTL_MAXNAME (24) levels
* Show the right value of the nodes without the last name
* Show a subtree without leaves (the nodes are all CTLTYPE_NODE)
* The sysctlinfo interface is 30% more efficient than the kernel
undocumented interface [1]
PR: 240391
Submitted by: Alfonso S. Siciliano <alfix86@gmail.com> (maintainer)
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