diff options
Diffstat (limited to 'media-video/pipewire/files/pipewire-0.3.25-fix-docdir-path.patch')
-rw-r--r-- | media-video/pipewire/files/pipewire-0.3.25-fix-docdir-path.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/media-video/pipewire/files/pipewire-0.3.25-fix-docdir-path.patch b/media-video/pipewire/files/pipewire-0.3.25-fix-docdir-path.patch deleted file mode 100644 index 9c7a55c95e26..000000000000 --- a/media-video/pipewire/files/pipewire-0.3.25-fix-docdir-path.patch +++ /dev/null @@ -1,32 +0,0 @@ -diff --git a/doc/meson.build b/doc/meson.build -index 05c7ed35..ce9b52ea 100644 ---- a/doc/meson.build -+++ b/doc/meson.build -@@ -24,11 +24,14 @@ doxyfile = configure_file(input: 'Doxyfile.in', - output: 'Doxyfile', - configuration: doxyfile_conf) - --docdir = join_paths(pipewire_datadir, 'doc') -+docdir = get_option('docdir') -+if docdir == '' -+ docdir = join_paths(pipewire_datadir, 'doc', meson.project_name()) -+endif - - html_target = custom_target('pipewire-docs', - input: [ doxyfile ], - output: [ 'html' ], - command: [ doxygen, doxyfile ], - install: true, -- install_dir: join_paths(docdir, 'pipewire')) -+ install_dir: docdir) -diff --git a/meson_options.txt b/meson_options.txt -index 858283f2..d51e693f 100644 ---- a/meson_options.txt -+++ b/meson_options.txt -@@ -1,3 +1,6 @@ -+option('docdir', -+ type : 'string', -+ description : 'Directory for installing documentation to (defaults to pipewire_datadir/doc/meson.project_name() )') - option('docs', - description: 'Build documentation', - type: 'feature', |