Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 17 Jul 2006 17:19:15 +0100
From:      Alex Zbyslaw <xfb52@dial.pipex.com>
To:        mike <mh983@yahoo.com>
Cc:        freebsd-questions@freebsd.org
Subject:   Re: defining dependencies for ports
Message-ID:  <44BBB883.7090501@dial.pipex.com>
In-Reply-To: <44BBABAD.90600@yahoo.com>
References:  <20060717135455.44183.qmail@web60618.mail.yahoo.com>	<44BB9BA5.5050203@dial.pipex.com> <44BBABAD.90600@yahoo.com>

next in thread | previous in thread | raw e-mail | index | archive | help
mike wrote:

> Thanks for the responses.  This is /exactly/ why I'm using ports 
> instead of packages, because I want to have things compiled with my 
> options.  However, the reason for my original post was that I'm having 
> a hard time customizing this, for java/Eclipse specifically.  I try 
> "make config" but it doesn't show anything.  So how do I go about 
> cutting out or changing some of the dependencies that I don't want if 
> there are no OPTIONS defined?
> And I can't find where these dependencies are even defined in this 
> case.  I grep everything in /usr/ports/java/eclipse and don't see 
> references to most of the dependencies.  Where are they defined if not 
> in the BUILD_DEPENDS, etc. variables of the Makefile?
>
What options you get for any port do depend on what the maintainer chose 
to put in.  If there is some option that eclipse itself has, but the 
port does not, then contacting the maintainer is where I might start.

Looking thought the eclipse Makefile you see things like:

.if defined(WITH_MOTIF)

or

.if !defined(WITHOUT_MOZILLA)

which tell you what is going to be looked for when the port is 
compiled.  Is that what you meant by dependencies?

So if using plain make you say something like "make WITH_MOTIF=1" or 
"make WITHOUT_MOZILLA=1".

Using portupgrade, you can add these to the MAKE_ARGS for java/eclipse 
in pkgtools.conf and have them used automatically every time you recompile.

Or there is

BUILD_DEPENDS=  ant:${PORTSDIR}/devel/apache-ant \
                zip:${PORTSDIR}/archivers/zip

but usually they are not optional for a reason!

What, specifically, were you trying to do?

Not every port supports "make config" unfortunately.  I haven't done 
enough port hacking to know how easy it is to add this to any port, but 
can't believe it's that hard - of course, hard depends on your 
experience!  Comparing to a port which *does* support make config 
(mozilla, samba3, portupgrade) may help you do it for yourself; the 
Porters Handbook on the website may also have helpful info.

hth,

--Alex





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