libgnt/libgnt

When someone uses our pc file they shouldn't need to explicitly add gobject to compile

Testing Done:
Ran configure and verified that `${builddir}/meson-private/gnt.pc` properly had `gobject-2.0` in `Required`

```
Requires: glib-2.0 >= 2.16.0, gobject-2.0
```

Reviewed at https://reviews.imfreedom.org/r/1478/
if get_option('doc')
DOC_MODULE = 'libgnt'
# Header files or dirs to ignore when scanning. Use base file/dir names
ignore_hfiles = [
'test',
'wms',
'gntinternal.h',
'gnt-skel.h'
]
# Extra options to supply to gtkdoc-scan.
scan_args = [
'--deprecated-guards=GNT_DISABLE_DEPRECATED',
'--rebuild-types',
'--rebuild-sections',
'--ignore-headers=' + ' '.join(ignore_hfiles),
]
# Extra options to supply to gtkdoc-mkdb.
mkdb_args = [
'--ignore-files=' + ' '.join(ignore_hfiles),
]
configure_file(
input : 'version.xml.in',
output : 'version.xml',
configuration : gnt_config)
gnome.gtkdoc(DOC_MODULE,
main_xml : DOC_MODULE + '-docs.xml',
namespace : 'gnt',
src_dir : libgnt_inc,
dependencies : libgnt_dep,
install : true,
scan_args : scan_args,
mkdb_args : mkdb_args,
gobject_typesfile : DOC_MODULE + '.types')
endif # get_option('doc')