openbsd-ports/devel/glib2/Makefile
landry aa6f592e02 apply patch from https://bugzilla.gnome.org/attachment.cgi?id=212002,
from gnome bug #669260

gmain: block child sources when blocking the parent

When blocking a source that has child sources, we need to consider the
children blocked as well. Otherwise they will still trigger repeatedly
in an inner loop started from the parent source's callback.

Fixes download dialog not rendered upon certain mimetypes on midori,
see https://bugs.launchpad.net/midori/+bug/780133
2012-04-16 10:04:49 +00:00

118 lines
3.2 KiB
Makefile

# $OpenBSD: Makefile,v 1.169 2012/04/16 10:04:49 landry Exp $
COMMENT-main= general-purpose utility library
COMMENT-docs= glib2 documentation
VERSION= 2.32.1
DISTNAME= glib-${VERSION}
EXTRACT_SUFX= .tar.xz
PKGNAME-main= glib2-${VERSION}
REVISION-main= 0
PKGNAME-docs= glib2-docs-${VERSION}
CATEGORIES= devel
HOMEPAGE= http://www.gtk.org/
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
SHARED_LIBS += glib-2.0 3200.0 # 3200.0
SHARED_LIBS += gmodule-2.0 3200.0 # 3200.0
SHARED_LIBS += gthread-2.0 3200.0 # 3200.0
SHARED_LIBS += gobject-2.0 3200.0 # 3200.0
SHARED_LIBS += gio-2.0 3200.0 # 3200.0
# LGPLv2
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/glib/${VERSION:C/^([0-9]+\.[0-9]+).*/\1/}/}
MULTI_PACKAGES= -main -docs
MODULES= devel/gettext \
lang/python
MODPY_ADJ_FILES= glib/gtester-report \
gio/gdbus-2.0/codegen/gdbus-codegen.in \
gio/tests/gdbus-testserver.py
WANTLIB-main += ${WANTLIB} c elf ffi pcre pthread z
LIB_DEPENDS-main= ${LIB_DEPENDS} \
devel/pcre \
devel/libelf \
devel/libffi
PKG_ARCH-docs= *
WANTLIB-docs=
LIB_DEPENDS-docs=
RUN_DEPENDS-docs=
# need X11 because DBus is used in the GDBus test cases;
# also requires bumped limits (stack >= 24576)
BUILD_DEPENDS += x11/dbus
REGRESS_IS_INTERACTIVE= x11
REGRESS_FLAGS= GTESTER="${WRKBUILD}/glib/gtester -k"
REGRESS_DEPENDS= devel/desktop-file-utils \
devel/py-gobject \
x11/dbus-python
USE_GMAKE= Yes
USE_LIBTOOL= Yes
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
--enable-static \
--with-pcre=system \
--disable-gtk-doc \
--disable-Bsymbolic \
--disable-fam \
--disable-selinux \
--disable-systemtap \
--disable-xattr
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
### kqueue(1) backend ##################################################
AUTOMAKE_VERSION= 1.11
AUTOCONF_VERSION= 2.68
BUILD_DEPENDS+= ${MODGNU_AUTOCONF_DEPENDS} \
${MODGNU_AUTOMAKE_DEPENDS} \
devel/libtool
#MASTER_SITES0= http://dmitrymatveev.co.uk/files/
MASTER_SITES0= http://distfiles.bsdfrog.org/
PATCHFILES= glib-gio-kqueue-2.28.8-v4.patch:0
AUTO_ENV= AUTOMAKE_VERSION=${AUTOMAKE_VERSION} \
AUTOCONF_VERSION=${AUTOCONF_VERSION}
post-patch:
cd ${WRKSRC} && ${AUTO_ENV} autoreconf --force --install
### end of kqueue(1) backend ###########################################
.include <bsd.port.arch.mk>
pre-configure:
perl -pi -e "s,/usr/local,${LOCALBASE},g;" \
-e "s,/usr/share/locale,${LOCALBASE}/share/locale,g;" \
-e "s,/usr/share/applications,${LOCALBASE}/share/applications,g;" \
-e "s,/etc/xdg,${SYSCONFDIR}/xdg,g" \
${WRKSRC}/glib/gutils.c ${WRKSRC}/gio/xdgmime/xdgmime.c \
${WRKSRC}/gio/tests/desktop-app-info.c \
${WRKSRC}/docs/reference/gio/html/glib-compile-schemas.html \
${WRKSRC}/docs/reference/gio/glib-compile-schemas.1
perl -pi -e "s,/var/lib/dbus,/var/db/dbus,g" \
${WRKSRC}/gio/gdbusconnection.c \
${WRKSRC}/gio/gdbusprivate.c \
${WRKSRC}/po/*.po
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/glib2
${INSTALL_DATA} ${FILESDIR}/gio-kqueue.conf \
${PREFIX}/share/examples/glib2
.include <bsd.port.mk>