meson: remove deprecated get_pkgconfig_variable

Since meson 0.56, the `get_pkgconfig_variable` has been deprecated.  In
meson 0.58 the `get_variable` was enhanced to no longer require the
`pkgconfig` keyword argument.  Ensure meson 0.58 is required and update
the usage of all `get_pkgconfig_variable` and `get_variable` to be the
modern variant.

Change-Id: I016ab773ac9cbe09bc4f9489e396f1c4b2082674
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/meson.build b/meson.build
index d7d3456..c1bda04 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
 project('pldm', ['c', 'cpp'],
-        version: '0.1', meson_version: '>=0.57.0',
+        version: '0.1', meson_version: '>=0.58.0',
         default_options: [
           'warning_level=3',
           'default_library=shared',
@@ -188,7 +188,7 @@
 
 if get_option('systemd').enabled()
   systemd_system_unit_dir = dependency('systemd').get_variable(
-          pkgconfig: 'systemdsystemunitdir')
+          'systemdsystemunitdir')
 
   configure_file(
     copy: true,