| 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 | ||
Responsible Changed From-To: freebsd-ports->gnome Over to maintainers. State Changed From-To: open->closed Fixed, thanks! |
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.