For testing patches aimed at Darwin. GLib provides the core application building blocks for libraries and applications written in C. It provides the core object system used in GNOME, the main loop implementation, and a large set of utility functions for strings and common data structures. This package contains GLib version 2.
23 lines
752 B
Makefile
23 lines
752 B
Makefile
# $NetBSD: modules.mk,v 1.1 2013/02/08 03:20:54 outpaddling Exp $
|
|
#
|
|
# This Makefile fragment is intended to be included by packages that install
|
|
# GIO modules. It takes care of rebuilding the corresponding databases at
|
|
# (de)installation time.
|
|
#
|
|
|
|
.if !defined(GIO_MODULES_MK)
|
|
GIO_MODULES_MK= # defined
|
|
|
|
GIO_QUERYMODULES= ${BUILDLINK_PREFIX.glib2}/bin/gio-querymodules
|
|
|
|
FILES_SUBST+= GIO_MODULES_DIR=${GIO_MODULES_DIR:Q}
|
|
FILES_SUBST+= GIO_QUERYMODULES=${GIO_QUERYMODULES:Q}
|
|
GIO_MODULES_DIR=${BUILDLINK_PREFIX.glib2}/lib/gio/modules
|
|
INSTALL_TEMPLATES+= ../../devel/glib2/files/modules.tmpl
|
|
DEINSTALL_TEMPLATES+= ../../devel/glib2/files/modules.tmpl
|
|
|
|
TOOLS_NOOP+= gio-querymodules
|
|
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
|
|
.endif # GIO_MODULES_MK
|