From owner-freebsd-ports@FreeBSD.ORG Thu Apr 15 13:50:37 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6090416A4F9; Thu, 15 Apr 2004 13:50:37 -0700 (PDT) Received: from lakermmtao10.cox.net (lakermmtao10.cox.net [68.230.240.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5C8743D41; Thu, 15 Apr 2004 13:50:36 -0700 (PDT) (envelope-from mezz7@cox.net) Received: from mezz.mezzweb.com ([68.103.32.11]) by lakermmtao03.cox.net (InterMail vM.6.01.03.02 201-2131-111-104-20040324) with ESMTP id <20040415171254.UXKD2958.lakermmtao03.cox.net@mezz.mezzweb.com>; Thu, 15 Apr 2004 13:12:54 -0400 Date: Thu, 15 Apr 2004 12:13:50 -0500 To: Adam McLaurin References: <20040414230740.375bc89c.adam.mclaurin@gmx.net> <20040415065032.0e77eb8d.adam.mclaurin@gmx.net> From: Jeremy Messenger Content-Type: multipart/mixed; boundary=----------ZMM0LTAWtNjAhe0Jsythsb MIME-Version: 1.0 Message-ID: In-Reply-To: <20040415065032.0e77eb8d.adam.mclaurin@gmx.net> User-Agent: Opera7.23/Linux M2 build 518 cc: ports@freebsd.org cc: anders@freebsd.org Subject: Re: security/gringotts won't recompile after GNOME 2.6 upgrade X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 20:50:37 -0000 ------------ZMM0LTAWtNjAhe0Jsythsb Content-Type: text/plain; format=flowed; charset=iso-8859-1 Content-Transfer-Encoding: 8bit On Thu, 15 Apr 2004 06:50:32 -0400, Adam McLaurin wrote: > On Wed, 14 Apr 2004 23:07:40 -0400 > Adam McLaurin wrote: > >> I've had no luck getting security/gringotts to recompile since the >> GNOME >> 2.6 upgrade. Using portupgrade, it tried reinstalling GTK, which >> already >> existed, so it failed. So I tried deinstalling it and reinstalling >> from >> scratch, and now I get this error: > >> From the gringott's author: > From: Germano Rizzo > To: Adam McLaurin > Subject: Re: gringotts 1.2.7 will not recompile after GNOME 2.6 upgrade > Date: Thu, 15 Apr 2004 10:06:11 +0200 > Organization: Progetto PLUTO > User-Agent: Mozilla Thunderbird 0.5a (Windows/20040120) > > Hi, > actually, the problem is that gtk+ 2.6 has removed GTK_OPTION_MENU. There's no GTK 2.6, which it's GTK 2.4 and it doesn't remove GTK_OPTION_MENU. Check in the /usr/ports/CHANGE under the '20040404'. Attaching gringotts.diff to allow it builds. Cheers, Mezz > I'll release a fixed version as soon as I can (which is, I don't know > exactly when :[ but soon). 1.2.8 won't fix the problem, at the time that > wasn't present. > Thanks, > Germano -- bsdforums.org 's moderator, mezz. ------------ZMM0LTAWtNjAhe0Jsythsb Content-Disposition: attachment; filename=gringotts.diff Content-Type: text/plain; name=gringotts.diff Content-Transfer-Encoding: 8bit diff -ur gringotts.orig/Makefile gringotts/Makefile --- gringotts.orig/Makefile Wed Apr 14 00:36:23 2004 +++ gringotts/Makefile Thu Apr 15 12:04:29 2004 @@ -38,6 +38,8 @@ post-patch: ${REINPLACE_CMD} -E -e "s|^(gringottsdocdir =).*|\1 $$\(datadir\)/doc/gringotts|;s|md5sum|md5|g" ${WRKSRC}/Makefile.in + @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \ + 's|-D.*_DISABLE_DEPRECATED||g' .if defined(NOPORTDOCS) ${REINPLACE_CMD} -E -e "s|^(install-data-am:.*)install-gringottsdocDATA|\1|" ${WRKSRC}/Makefile.in .endif ------------ZMM0LTAWtNjAhe0Jsythsb--