3680f27ebf
release can be found at http://library.gnome.org/misc/release-notes/2.32/ This will be the last release of the GNOME 2.x series, mainly a bugfix and bridge release to the first release of the GNOME 3.x series. This release features commits by avl, marcus, mezz and myself. The FreeBSD GNOME Team would like to thank the following contributors and testers for there help with this release: Zane C.B. <vvelox@vvelox.net> romain@ Olaf Seibert <O.Seibert@cs.ru.nl> DomiX Bapt <baptiste.daroussin@gmail.com> jsa@ miwi@ Sergio de Almeida Lenzi <lenzi.sergio@gmail.com> Maxim Samsonov <xors@mne.ru> Kris Moore And pav@ for 2 exp-runs PR: ports/152255 ports/143260 ports/141033 ports/149629 ports/150350 ports/151523 With hat: gnome@
91 lines
2.6 KiB
Makefile
91 lines
2.6 KiB
Makefile
# New ports collection makefile for: glib13
|
|
# Date Created: 28 July 1998
|
|
# Whom: Vanilla I. Shu <vanilla@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/devel/glib20/Makefile,v 1.188 2010/11/15 02:01:55 kwm Exp $
|
|
#
|
|
# !! DON'T FORGET ABOUT devel/gio-fam-backend !!
|
|
|
|
PORTNAME= glib
|
|
PORTVERSION= 2.26.1
|
|
PORTREVISION?= 0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNOME:S,%SUBDIR%,sources/glib/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/},} \
|
|
ftp://ftp.gtk.org/pub/glib/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}/ \
|
|
ftp://ftp.gimp.org/pub/%SUBDIR%/ \
|
|
ftp://ftp.cs.umn.edu/pub/gimp/%SUBDIR%/ \
|
|
http://www.ameth.org/gimp/%SUBDIR%/ \
|
|
${MASTER_SITE_RINGSERVER:S,%SUBDIR%,graphics/gimp/%SUBDIR%,}
|
|
MASTER_SITE_SUBDIR= gtk/v${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Some useful routines of C programming (current stable version)
|
|
|
|
LATEST_LINK= glib20
|
|
|
|
USE_BZIP2= yes
|
|
LICENSE= LGPL20
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
.if !defined(REFERENCE_PORT)
|
|
|
|
LIB_DEPENDS+= pcre.0:${PORTSDIR}/devel/pcre \
|
|
dbus-1.3:${PORTSDIR}/devel/dbus
|
|
|
|
USE_GETTEXT= yes
|
|
USE_AUTOTOOLS= libtool:22
|
|
USE_LDCONFIG= yes
|
|
USE_GNOME= gnomehack pkgconfig ltverhack
|
|
USE_GMAKE= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
USE_PYTHON= yes
|
|
USE_PERL5= yes
|
|
CONFIGURE_ARGS= --enable-static --with-libiconv=gnu \
|
|
--disable-gtk-doc --with-html-dir=${PREFIX}/share/doc \
|
|
--disable-man --without-xml-catalog \
|
|
--disable-dtrace \
|
|
--with-pcre=system \
|
|
--disable-fam
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -lintl" \
|
|
PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \
|
|
PTHREAD_LIBS="${PTHREAD_LIBS}"
|
|
|
|
OPTIONS= COLLATION_FIX "fix string collation" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# Let glib use asm code for implementing atomic ops on i386 and amd64.
|
|
.if ${ARCH} == "i386"
|
|
GLIB_ARCH= i486
|
|
.elif ${ARCH} == "amd64"
|
|
GLIB_ARCH= x86_64
|
|
.else
|
|
GLIB_ARCH= ${ARCH}
|
|
.endif
|
|
CONFIGURE_TARGET=${GLIB_ARCH}-portbld-freebsd${OSREL}
|
|
|
|
.if defined(WITH_COLLATION_FIX)
|
|
LIB_DEPENDS+= icui18n:${PORTSDIR}/devel/icu
|
|
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-glib_Makefile.in \
|
|
${FILESDIR}/extra-patch-glib_gunicollate.c
|
|
# Disable it until someone can figure why it causes net-im/pidgin crashed.
|
|
#CONFIGURE_ENV+= CFLAGS="-D__STDC_ISO_10646__"
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
|
|
${WRKSRC}/glib/gutils.c
|
|
@${REINPLACE_CMD} -e 's|/lib/dbus/machine-id|/db/dbus/machine-id|g' \
|
|
${WRKSRC}/gio/gdbusaddress.c ${WRKSRC}/gio/gdbusprivate.c \
|
|
${WRKSRC}/po/*.po
|
|
|
|
post-install:
|
|
@${MKDIR} ${PREFIX}/share/GConf/gsettings
|
|
-${PREFIX}/bin/gio-querymodules ${PREFIX}/lib/gio/modules
|
|
|
|
.include <bsd.port.post.mk>
|
|
|
|
.endif
|