b3eac05dc4
============================================== This change addresses a major issue: despite assurances in the documentation for the ext4 filesystem, it is still unsafe to omit a call to fsync() when doing atomic replaces, as per g_file_set_contents(). Some patches have gone into the kernel already, but we are putting the fsync() back for safety reasons. There have also been win32 improvements and a fix where GNetworkMonitor failed to detect the connection with some VPN configurations. Translation updates: Assamese Brazilian Portuguese Catalan Czech Galician German Indonesian Kannada Lithuanian Marathi Polish Punjabi Russian Serbian Slovenian Spanish
96 lines
2.7 KiB
Text
96 lines
2.7 KiB
Text
# $NetBSD: Makefile.common,v 1.31 2013/08/17 11:52:36 richard Exp $
|
|
#
|
|
# used by devel/glib2/Makefile
|
|
# used by devel/gdbus-codegen/Makefile
|
|
# used by sysutils/gio-fam/Makefile
|
|
|
|
# When updating this package, please apply patch-ak to configure.in and
|
|
# then run a matching version of autoconf to regen patch-aa.
|
|
DISTNAME= glib-2.36.4
|
|
PKGNAME= ${DISTNAME:S/glib/glib2/}
|
|
CATEGORIES= # empty; redefined in Makefile
|
|
MASTER_SITES= ftp://ftp.gtk.org/pub/glib/${PKGVERSION_NOREV:R}/ \
|
|
${MASTER_SITE_GNOME:=sources/glib/${PKGVERSION_NOREV:R}/}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://developer.gnome.org/glib/
|
|
COMMENT= # empty; redefined in Makefile
|
|
LICENSE= gnu-lgpl-v2
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_TOOLS+= gmake pkg-config
|
|
USE_LANGUAGES= c c++ c99
|
|
USE_LIBTOOL= yes
|
|
TEST_TARGET= check
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../../devel/glib2/distinfo
|
|
PATCHDIR= ${.CURDIR}/../../devel/glib2/patches
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV+= PKGLOCALEDIR=${PKGLOCALEDIR}
|
|
CONFIGURE_ARGS+= --disable-fam # See sysutils/gio-fam.
|
|
CONFIGURE_ARGS+= --includedir=${PREFIX}/include/glib
|
|
CONFIGURE_ARGS+= ${CONFIGURE_ARGS.${ICONV_TYPE}-iconv}
|
|
CONFIGURE_ARGS+= --with-pcre=system
|
|
CONFIGURE_ARGS+= --disable-dtrace
|
|
CONFIGURE_ARGS+= --disable-man # Requires xsltproc and Docbook.
|
|
CONFIGURE_ARGS+= --disable-modular-tests
|
|
|
|
CONFIGURE_ARGS.gnu-iconv+= --with-libiconv=gnu
|
|
|
|
CONFIGURE_ENV+= PERL_PATH=${PERL5:Q}
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
|
|
CPPFLAGS+= -DPREFIX="\"${PREFIX}\""
|
|
CPPFLAGS+= -DPKGLOCALEDIR="\"${PKGLOCALEDIR}\""
|
|
CPPFLAGS+= -DPKG_SYSCONFDIR="\"${PKG_SYSCONFDIR}\""
|
|
|
|
.if ${OPSYS} == "FreeBSD"
|
|
SUBST_CLASSES+= thr
|
|
SUBST_STAGE.thr= post-patch
|
|
SUBST_FILES.thr= gthread/Makefile.in
|
|
. if ${OS_VERSION:R} >= 5
|
|
SUBST_SED.thr+= -e "s|@G_THREAD_LIBS_FOR_GTHREAD@|-lpthread|g"
|
|
. else
|
|
SUBST_SED.thr+= -e "s|@G_THREAD_LIBS_FOR_GTHREAD@|-Wc,-lc_r|g"
|
|
. endif
|
|
SUBST_MESSAGE.thr= Fixing libgthread.
|
|
|
|
.endif
|
|
|
|
.if !empty(MACHINE_PLATFORM:MDarwin-[56].*-*)
|
|
CONFIGURE_ENV+= gt_cv_c_wchar_t=no
|
|
.endif
|
|
|
|
.if ${OPSYS} == "Darwin"
|
|
BUILDLINK_TRANSFORM+= rm:-Werror=missing-prototypes
|
|
.endif
|
|
|
|
.if ${OPSYS} == "HPUX"
|
|
CONFIGURE_ENV+= ac_cv_func_mmap_fixed_mapped=yes
|
|
.endif
|
|
|
|
.include "../../mk/dlopen.buildlink3.mk"
|
|
|
|
.if !empty(MACHINE_PLATFORM:MIRIX-5*)
|
|
CONFIGURE_ARGS+= --disable-threads
|
|
.else
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.endif
|
|
|
|
SUBST_CLASSES+= dbusdb
|
|
SUBST_MESSAGE.dbusdb= Adjust dbus machine uuid path to dbus package
|
|
SUBST_STAGE.dbusdb= post-patch
|
|
SUBST_FILES.dbusdb= gio/gdbusconnection.c
|
|
SUBST_FILES.dbusdb+= gio/gdbusprivate.c
|
|
SUBST_FILES.dbusdb+= po/glib20.pot
|
|
SUBST_FILES.dbusdb+= po/*.po
|
|
SUBST_SED.dbusdb= -e 's,/var/lib/dbus,${VARBASE}/db/dbus,g'
|
|
|
|
pre-configure:
|
|
${TOUCH} ${WRKSRC}/configure ${WRKSRC}/aclocal.m4 ${WRKSRC}/config.h.in
|