58449aebe0
Overview of Changes from GLib 2.6.3 to GLib 2.6.4 ================================================= * Fix compilation with gcc 4.0 [Matthias Clasen] * Fix g_date_get_iso8601_week_of_year [Jon-Kare Hellan] * Win32: - use more precise times in gtimer.c [Tor Lillqvist] - bug fixes [Tor, Daniel Atallah] * Other bug fixes [Tim Janik, Matthias, Manish Singh, Dave Benson, Jeff Franks] * Documentation improvements [Tim-Philipp Müller, Matthias, Stefan Kost, Tor, Jared Lash, Morten Welinder] * New and updated translations (el,fa,hu,id,ne,ro,rw)
83 lines
2.5 KiB
Makefile
83 lines
2.5 KiB
Makefile
# $NetBSD: Makefile,v 1.70 2005/04/15 12:54:38 wiz Exp $
|
|
|
|
DISTNAME= glib-2.6.4
|
|
PKGNAME= ${DISTNAME:S/glib/glib2/}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://ftp.gtk.org/pub/gtk/v2.6/ \
|
|
ftp://ftp.cs.umn.edu/pub/gimp/gtk/v2.6/ \
|
|
${MASTER_SITE_GNOME:=sources/glib/2.6/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= jmmv@NetBSD.org
|
|
HOMEPAGE= http://www.gtk.org/docs/glib_toc.html
|
|
COMMENT= Some useful routines for C programming (glib2)
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
BUILD_USES_MSGFMT= yes
|
|
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_GNU_TOOLS+= make
|
|
USE_PERL5= yes
|
|
USE_LIBTOOL= yes
|
|
TEST_TARGET= check
|
|
|
|
PKGCONFIG_OVERRIDE= glib-2.0-uninstalled.pc.in
|
|
PKGCONFIG_OVERRIDE+= glib-2.0.pc.in
|
|
PKGCONFIG_OVERRIDE+= gmodule-2.0-uninstalled.pc.in
|
|
PKGCONFIG_OVERRIDE+= gmodule-2.0.pc.in
|
|
PKGCONFIG_OVERRIDE+= gmodule-export-2.0.pc.in
|
|
PKGCONFIG_OVERRIDE+= gmodule-no-export-2.0.pc.in
|
|
PKGCONFIG_OVERRIDE+= gobject-2.0-uninstalled.pc.in
|
|
PKGCONFIG_OVERRIDE+= gobject-2.0.pc.in
|
|
PKGCONFIG_OVERRIDE+= gthread-2.0-uninstalled.pc.in
|
|
PKGCONFIG_OVERRIDE+= gthread-2.0.pc.in
|
|
|
|
GNU_CONFIGURE= # defined
|
|
CONFIGURE_ENV+= PKGLOCALEDIR=${PKGLOCALEDIR}
|
|
CONFIGURE_ARGS+= --enable-gtk-doc=no
|
|
CONFIGURE_ARGS+= --includedir=${PREFIX}/include/glib
|
|
CONFIGURE_ARGS+= --with-html-dir=${PREFIX}/share/doc
|
|
CONFIGURE_ARGS+= ${CONFIGURE_ARGS.${ICONV_TYPE}-iconv}
|
|
|
|
CONFIGURE_ARGS.gnu-iconv= --with-libiconv=gnu
|
|
|
|
# Avoid an ICE in gcc2 on sparc64
|
|
CONFIGURE_ENV+= F77=${FALSE}
|
|
|
|
CONFIGURE_ENV+= PERL=${PERL5}
|
|
CONFIGURE_ENV+= PERL_PATH=${PERL5}
|
|
|
|
CPPFLAGS+= -DPREFIX="\"${PREFIX}\""
|
|
CPPFLAGS+= -DPKGLOCALEDIR="\"${PKGLOCALEDIR}\""
|
|
CPPFLAGS+= -DPKG_SYSCONFDIR="\"${PKG_SYSCONFDIR}\""
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# FreeBSD fix for libgthread:
|
|
# Be sure libgthread is linked to the threaded library (libc_r), otherwise
|
|
# -pthread is added and this won't work with libraries, only executable
|
|
# binaries.
|
|
|
|
.if ${OPSYS} == "FreeBSD"
|
|
|
|
SUBST_CLASSES= thr
|
|
SUBST_STAGE.thr= post-patch
|
|
SUBST_FILES.thr= gthread/Makefile.in
|
|
SUBST_SED.thr= -e "s|@G_THREAD_LIBS_FOR_GTHREAD@|-Wc,-lc_r|g"
|
|
SUBST_MESSAGE.thr= "Fixing libgthread."
|
|
|
|
.endif
|
|
|
|
# Handle directories shared with devel/glib.
|
|
PRINT_PLIST_AWK+= /^@dirrm include\/glib$$/ \
|
|
{ print "@unexec $${RMDIR} %D/" $$2 \
|
|
" 2>/dev/null || $${TRUE}"; next; }
|
|
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../devel/pkgconfig/buildlink3.mk"
|
|
.include "../../mk/dlopen.buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|