Files
macports-ports/net/libproxy/files/patch-tools-man.diff
efa377d825 libproxy: update to 0.5.9; add new option variants (#26855)
The libproxy implementation was rewritten with 0.5.0 and switched to
meson as build system. The new build options do not match 1-to-1 to the
old options and all language bindings were removed in favor of
gobject-introspection.

* Update to libproxy 0.5.9
* Use meson instead of CMake
* Add variants for new options
* Refactor vapi support to subport (CNielsen)

Closes: https://trac.macports.org/ticket/67730
Closes: https://trac.macports.org/ticket/71389

Co-authored-by: Christopher Nielsen <mascguy@github.com>
2024-12-06 11:10:21 -05:00

12 lines
299 B
Diff

--- src/tools/meson.build.orig 2024-12-06 10:22:01.000000000 -0500
+++ src/tools/meson.build 2024-12-06 10:23:39.000000000 -0500
@@ -10,4 +10,6 @@
include_directories: libproxy_inc
)
-install_man('proxy.8')
\ No newline at end of file
+if get_option('docs')
+ install_man('proxy.8')
+endif