From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 22 10:29:18 2005 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 E430116A4CE for ; Tue, 22 Mar 2005 10:29:18 +0000 (GMT) Received: from sv02.webonaut.com (kirk.webonaut.com [212.41.243.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1689243D54 for ; Tue, 22 Mar 2005 10:29:18 +0000 (GMT) (envelope-from klammer@webonaut.com) Received: from localhost (localhost [127.0.0.1]) by sv02.webonaut.com (Postfix) with ESMTP id EA82D7642E for ; Tue, 22 Mar 2005 11:29:15 +0100 (CET) Received: from sv02.webonaut.com ([127.0.0.1]) by localhost (sv02.webonaut.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 99524-06 for ; Tue, 22 Mar 2005 11:29:03 +0100 (CET) Received: from [192.168.79.227] (unknown [213.147.173.194]) by sv02.webonaut.com (Postfix) with ESMTP id 26A3676421 for ; Tue, 22 Mar 2005 11:29:03 +0100 (CET) Message-ID: <423FF323.8080108@webonaut.com> Date: Tue, 22 Mar 2005 11:27:47 +0100 From: Franz Klammer User-Agent: Mozilla Thunderbird 1.0 (X11/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD GNOME Users Content-Type: multipart/mixed; boundary="------------070609050105090203020105" X-Virus-Scanned: by amavisd-new at webonaut.com Subject: py-gnome-extras and firefox? 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: Tue, 22 Mar 2005 10:29:19 -0000 This is a multi-part message in MIME format. --------------070609050105090203020105 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit the recently added mozilla-dependency at py-gnome-extras re adds the currently deinstalled mozilla port. as my pc is currently mozilla free i don't want to reinstall it unless it is really necessary. attached a patch that adds firefox as possible alternate dependency. Franz if not attached please download here: http://webonaut.com/devel/py-gnome-extras.diff --------------070609050105090203020105 Content-Type: text/plain; name="py-gnome-extras.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="py-gnome-extras.diff" diff -Nur py-gnome-extras.orig/Makefile py-gnome-extras/Makefile --- py-gnome-extras.orig/Makefile Tue Mar 22 10:00:37 2005 +++ py-gnome-extras/Makefile Tue Mar 22 10:55:08 2005 @@ -27,19 +27,25 @@ MOZILLA= mozilla HEADERS_SUFX= +MOZ_BUILD= mozilla .if !defined(WITH_MOZILLA) -MOZILLA= mozilla +MOZILLA= mozilla HEADERS_SUFX= .else +.if ${WITH_MOZILLA}=="firefox" +MOZILLA= firefox +MOZ_BUILD= firefox +.else .if ${WITH_MOZILLA}=="mozilla-devel" || ${WITH_MOZILLA}=="mozilla-devel-gtk2" -MOZILLA= mozilla-devel -HEADERS_SUFX= -devel +MOZILLA= mozilla-devel +HEADERS_SUFX= -devel .else -MOZILLA= mozilla +MOZILLA= mozilla HEADERS_SUFX= .endif .endif +.endif USE_BZIP2= yes USE_GMAKE= yes @@ -82,6 +88,7 @@ @${ECHO_MSG} " By default py-gnome-extras uses www/mozilla for html rendering, but you can" @${ECHO_MSG} " change this by defining WITH_MOZILLA to one of the following values:" @${ECHO_MSG} + @${ECHO_MSG} " firefox " @${ECHO_MSG} " mozilla-devel " @${ECHO_MSG} "" --------------070609050105090203020105--