Bug 44855 - Bug in Makefile of port www/galeon: it could not be compiled with mozilla-embedded
Summary: Bug in Makefile of port www/galeon: it could not be compiled with mozilla-emb...
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-gnome (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-11-03 19:20 UTC by lev
Modified: 2002-11-03 19:34 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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!