From owner-freebsd-gnome@FreeBSD.ORG Tue Feb 3 23:07:05 2004 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 356B016A4CE for ; Tue, 3 Feb 2004 23:07:05 -0800 (PST) Received: from lakemtao08.cox.net (lakemtao08.cox.net [68.1.17.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62B5043D1F for ; Tue, 3 Feb 2004 23:07:03 -0800 (PST) (envelope-from mezz7@cox.net) Received: from mezz.mezzweb.com ([68.103.32.11]) by lakemtao08.cox.net (InterMail vM.5.01.06.05 201-253-122-130-105-20030824) with ESMTP id <20040204070701.GDBM2412.lakemtao08.cox.net@mezz.mezzweb.com> for ; Wed, 4 Feb 2004 02:07:01 -0500 To: freebsd-gnome@freebsd.org From: Jeremy Messenger Content-Type: multipart/mixed; boundary=----------t7nli6maVi92lKuxudZAHx MIME-Version: 1.0 Date: Wed, 04 Feb 2004 01:06:06 -0600 Message-ID: User-Agent: Opera7.23/Linux M2 build 518 Subject: Port patch: glib20 and pango, use the new gettext stuff. X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Feb 2004 07:07:05 -0000 ------------t7nli6maVi92lKuxudZAHx Content-Type: text/plain; format=flowed; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Here's use-gettext.diff, use the new USE_GETTEXT and bump the version too. Oh btw: This is for MarcusCom CVS.. Cheers, Mezz -- bsdforums.org 's moderator, mezz. ------------t7nli6maVi92lKuxudZAHx Content-Disposition: attachment; filename=use-gettext.diff Content-Type: text/plain; name=use-gettext.diff Content-Transfer-Encoding: 8bit diff -ur glib20.orig/Makefile glib20/Makefile --- glib20.orig/Makefile Fri Jan 23 13:41:41 2004 +++ glib20/Makefile Wed Feb 4 00:58:07 2004 @@ -7,6 +7,7 @@ PORTNAME= glib PORTVERSION= 2.3.2 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNOME:S,%SUBDIR%,sources/${PORTNAME}/2.3,} \ ftp://ftp.gtk.org/pub/gtk/v2.3/ \ @@ -20,11 +21,10 @@ MAINTAINER= gnome@FreeBSD.org COMMENT= Some useful routines of C programming (current stable version) -LIB_DEPENDS= intl.5:${PORTSDIR}/devel/gettext-old - NO_LATEST_LINK= yes USE_BZIP2= yes +USE_GETTEXT= yes USE_LIBTOOL= yes USE_REINPLACE= yes INSTALLS_SHLIB= yes diff -ur pango.orig/Makefile pango/Makefile --- pango.orig/Makefile Fri Jan 23 13:41:41 2004 +++ pango/Makefile Wed Feb 4 01:00:23 2004 @@ -7,6 +7,7 @@ PORTNAME= pango PORTVERSION= 1.3.2 +PORTREVISION= 1 CATEGORIES= x11-toolkits MASTER_SITES= ${MASTER_SITE_GNOME:S,%SUBDIR%,sources/${PORTNAME}/1.3,} \ ftp://ftp.gtk.org/pub/gtk/v2.3/ @@ -16,12 +17,12 @@ COMMENT= An open-source framework for the layout and rendering of i18n text BUILD_DEPENDS= freetype-config:${PORTSDIR}/print/freetype2 -LIB_DEPENDS= Xft.2:${PORTSDIR}/x11-fonts/Xft \ - intl.5:${PORTSDIR}/devel/gettext-old +LIB_DEPENDS= Xft.2:${PORTSDIR}/x11-fonts/Xft RUN_DEPENDS= ${FONTSCALE}:${PORTSDIR}/x11-fonts/XFree86-4-fontScalable \ ${FONTENCOD}:${PORTSDIR}/x11-fonts/XFree86-4-fontEncodings USE_BZIP2= yes +USE_GETTEXT= yes USE_X_PREFIX= yes USE_GMAKE= yes USE_REINPLACE= yes ------------t7nli6maVi92lKuxudZAHx--