mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 17:46:38 -04:00
* Switch to DISTVERSION * Define LICENSE * Adjust dependencies * Remove INSTALL_TARGET * Replace CONFIGURE_ARGS with MESON_ARGS * Remove GTKDOC_DESC * Fix .pc file install PR: 282509 Reviewed by: novel (maintainer)
20 lines
1,007 B
Text
20 lines
1,007 B
Text
--- meson.build.orig 2024-10-29 17:28:59 UTC
|
|
+++ meson.build
|
|
@@ -25,7 +25,7 @@ libosinfo_mandir = join_paths(libosinfo_prefix, get_op
|
|
libosinfo_libdir = join_paths(libosinfo_prefix, get_option('libdir'))
|
|
libosinfo_licensedir = join_paths(libosinfo_datadir, 'license', meson.project_name())
|
|
libosinfo_mandir = join_paths(libosinfo_prefix, get_option('mandir'))
|
|
-libosinfo_pkgconfdir = join_paths(libosinfo_libdir, 'pkgconfig')
|
|
+libosinfo_pkgconfdir = libosinfo_prefix / 'libdata' / 'pkgconfig'
|
|
|
|
# gobject introspection
|
|
gir = find_program('g-ir-scanner', required: get_option('enable-introspection'))
|
|
@@ -43,7 +43,7 @@ libosinfo_typelibdir = join_paths(libosinfo_libdir, 'g
|
|
|
|
libosinfo_girdir = join_paths(libosinfo_datadir, 'gir-1.0')
|
|
libosinfo_typelibdir = join_paths(libosinfo_libdir, 'girepository-1.0')
|
|
-libosinfo_pkgconfdir = join_paths(libosinfo_libdir, 'pkgconfig')
|
|
+#libosinfo_pkgconfdir = join_paths(libosinfo_libdir, 'pkgconfig')
|
|
|
|
# spec files
|
|
libosinfo_spec_data = configuration_data()
|