Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 3 Nov 2002 22:16:08 +0300 (MSK)
From:      "Lev A. Serebryakov" <lev@serebryakov.spb.ru>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/44855: Bug in Makefile of port www/galeon: it could not be compiled with mozilla-embedded
Message-ID:  <200211031916.gA3JG8uh030961@ftp.translate.ru>

next in thread | raw e-mail | index | archive | help

>Number:         44855
>Category:       ports
>Synopsis:       Bug in Makefile of port www/galeon: it could not be compiled with mozilla-embedded
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Sun Nov 03 11:20:01 PST 2002
>Closed-Date:
>Last-Modified:
>Originator:     Lev A. Serebryakov <lev@serebryakov.spb.ru>
>Release:        FreeBSD 4.6-STABLE i386
>Organization:
>Environment:
System: FreeBSD freebsd.sereb.net 4.6-STABLE FreeBSD 4.6-STABLE #0: Thu Aug 8 20:06:13 MSD 2002 root@freebsd.sereb.net:/usr/obj/usr/src/sys/LEVMAIL i386
Ports collection: 3 Nov 2002

>Description:

  Makefile for `www/galeon' didn't check `WITH_MOZILLA=mozilla-embedded' variant.
  So, if user trys:

  cd /usr/ports/www/galeon && make WITH_MOZILLA=mozilla-embedded

  port system try to build galeon with `www/mozilla', not `www/mozilla-embedded'

  Here is log:

freebsd# make WITH_MOZILLA=mozilla-embedded
===>  Extracting for galeon-1.2.6
>How-To-Repeat:

>Fix:

  I don't know what is right: replace

.else
MOZILLA=        mozilla
HEADERS_SUFX=
.endif

  with 

.else
MOZILLA=        ${WITH_MOZILLA}
HEADERS_SUFX=
.endif

  Or add additional .if's to be sure, that WITH_MOZILLA is valid.
>Release-Note:
>Audit-Trail:
>Unformatted:
 >> Checksum OK for galeon-1.2.6.tar.gz.
 ===>   galeon-1.2.6 depends on file: /usr/X11R6/include/mozilla/gtkembedmoz/gtkmozembed.h - found
 ===>   galeon-1.2.6 depends on file: /usr/X11R6/lib/mozilla/libgtkembedmoz.so - not found
 ===>    Verifying install for /usr/X11R6/lib/mozilla/libgtkembedmoz.so in /usr/ports/www/mozilla
 ===>  Extracting for mozilla-1.1_1,2
 ^C
 freebsd# ll /usr/X11R6/lib/mozilla-embedded/libgtkembedmoz.so
 -rwxr-xr-x  1 root  wheel  95368 Nov  3 21:39 /usr/X11R6/lib/mozilla-embedded/libgtkembedmoz.so
 freebsd#
 
 

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200211031916.gA3JG8uh030961>