reconfiguring a package

2006-04-02 Thread Luiz Eduardo Guida Valmont
I'm sorry if this is one of those rtfm cases, but I've exhausted my options
so far (except asking for help here ^^).

When you make install a package, for some the first thing you get is a
screen where you choose some compile-time options that affect the package's
dependancies (eg. postgresql support when trying to install amarok). The
question is simple: is there a way or a make target that deletes my choices
and / or forces make to ask them again?

I tryed selecting everything for amarok and now both krb5 and heimdal are
indirect dependancies. That wouldn't pose a problem if they did not
conflict, but unfortunately they do.

Any help is appreciated...

--
[]'s,
Luiz Eduardo
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: reconfiguring a package

2006-04-02 Thread Lars Cleary

Luiz Eduardo Guida Valmont wrote:

I'm sorry if this is one of those rtfm cases, but I've exhausted my options
so far (except asking for help here ^^).

When you make install a package, for some the first thing you get is a
screen where you choose some compile-time options that affect the package's
dependancies (eg. postgresql support when trying to install amarok). The
question is simple: is there a way or a make target that deletes my choices
and / or forces make to ask them again?

I tryed selecting everything for amarok and now both krb5 and heimdal are
indirect dependancies. That wouldn't pose a problem if they did not
conflict, but unfortunately they do.

Any help is appreciated...

--
[]'s,
Luiz Eduardo

man ports(7) should have all the info you might need.

HTH
Lars
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: reconfiguring a package

2006-04-02 Thread Erik Trulsson
On Sun, Apr 02, 2006 at 05:23:26PM -0300, Luiz Eduardo Guida Valmont wrote:
 I'm sorry if this is one of those rtfm cases, but I've exhausted my options
 so far (except asking for help here ^^).
 
 When you make install a package, for some the first thing you get is a
 screen where you choose some compile-time options that affect the package's
 dependancies (eg. postgresql support when trying to install amarok). The
 question is simple: is there a way or a make target that deletes my choices
 and / or forces make to ask them again?

'make config' should do the trick.  This (as well as many other make
targets) are described in the ports(7) manpage.

Of course if you already have installed the port you will have to delete
and reinstall it to have it actually use the new settings.


 
 I tryed selecting everything for amarok and now both krb5 and heimdal are
 indirect dependancies. That wouldn't pose a problem if they did not
 conflict, but unfortunately they do.
 
 Any help is appreciated...
 
 --
 []'s,
 Luiz Eduardo

 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]


-- 
Insert your favourite quote here.
Erik Trulsson
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: reconfiguring a package

2006-04-02 Thread Erik Nørgaard

Luiz Eduardo Guida Valmont wrote:

I'm sorry if this is one of those rtfm cases, but I've exhausted my options
so far (except asking for help here ^^).

When you make install a package, for some the first thing you get is a
screen where you choose some compile-time options that affect the package's
dependancies (eg. postgresql support when trying to install amarok). The
question is simple: is there a way or a make target that deletes my choices
and / or forces make to ask them again?


Use the make target, 'config', eg:

   # make config install clean

should do. Alternatively, you can simply delete the config from 
/var/db/ports/package_name that will clear any previous choices.


Erik
--
Ph: +34.666334818  web: www.locolomo.org
S/MIME Certificate: www.daemonsecurity.com/ca/8D03551FFCE04F06.crt
Subject ID:  9E:AA:18:E6:94:7A:91:44:0A:E4:DD:87:73:7F:4E:82:E7:08:9C:72
Fingerprint: 5B:D5:1E:3E:47:E7:EC:1C:4C:C8:3A:19:CC:AE:14:F5:DF:18:0F:B9
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: reconfiguring a package

2006-04-02 Thread Danny Pansters
On Sunday 02 April 2006 22:23, Luiz Eduardo Guida Valmont wrote:
 I'm sorry if this is one of those rtfm cases, but I've exhausted my options
 so far (except asking for help here ^^).

 When you make install a package, for some the first thing you get is a
 screen where you choose some compile-time options that affect the package's
 dependancies (eg. postgresql support when trying to install amarok). The
 question is simple: is there a way or a make target that deletes my choices
 and / or forces make to ask them again?

The proper way is to use 'make rmconfig'. Can also be done recursively.

Dan
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]