Bug 44855

Summary: Bug in Makefile of port www/galeon: it could not be compiled with mozilla-embedded
Product: Ports & Packages Reporter: lev <lev>
Component: Individual Port(s)Assignee: freebsd-gnome (Nobody) <gnome>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   

Description lev 2002-11-03 19:20:01 UTC
  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

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.
Comment 1 Joe Marcus Clarke freebsd_committer freebsd_triage 2002-11-03 19:33:52 UTC
Responsible Changed
From-To: freebsd-ports->gnome

Over to maintainers.
Comment 2 Joe Marcus Clarke freebsd_committer freebsd_triage 2002-11-03 19:34:11 UTC
State Changed
From-To: open->closed

Fixed, thanks!