Re: completly remove (or modify) a port

2007-04-19 Thread Ray
On Wednesday 18 April 2007 12:21 pm, N.J. Mann wrote:
> On Wednesday, 18 April, 2007 at 12:16:28 -0600, Ray wrote:
> > Hello all,
> > I have been trying to work with postfix from the ports collection.
> > I need to rebuild it to include mysql support. I tried
> > #make deinstall
> > but a subsequent
> > #make install
> > doesn't give me the options screen.
>
> make rmconfig
>
> See man ports(7)
>
>
> Cheers,
>Nick.

thank you all for your quick answers (all 9 responses) but I guess I should 
have said what are the _ways_ to  

I also appreciate the responses that told me what part of the documentation to 
look at for future reference. 
Thanks
Ray

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


Re: completly remove (or modify) a port

2007-04-18 Thread N.J. Mann
On Wednesday, 18 April, 2007 at 12:16:28 -0600, Ray wrote:
> Hello all,
> I have been trying to work with postfix from the ports collection.
> I need to rebuild it to include mysql support. I tried 
> #make deinstall
> but a subsequent
> #make install 
> doesn't give me the options screen.

make rmconfig

See man ports(7)


Cheers,
   Nick.
-- 
Please do not CC me on replies, I read the list and don't need the dupes.

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


Re: completly remove (or modify) a port

2007-04-18 Thread John Webster
Look in /var/db/ports.  Removing the postfix directory or
the options file in that directory should do the trick.

jw


--On Wednesday, April 18, 2007 12:16:28 -0600 Ray <[EMAIL PROTECTED]> wrote:

> Hello all,
> I have been trying to work with postfix from the ports collection.
> I need to rebuild it to include mysql support. I tried 
># make deinstall
> but a subsequent
># make install 
> doesn't give me the options screen.
> what is the way to either remove the stored configuration file, or to 
> manually 
> pass the parameters to make.  A look at the Makefile and the other files 
> in /usr/ports/mail/postfix didn't turn up any hints.
> Thanks,
> Ray
> 
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[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: completly remove (or modify) a port

2007-04-18 Thread Gerard
On Wednesday April 18, 2007 at 02:16:28 (PM) Ray wrote:


> Hello all,
> I have been trying to work with postfix from the ports collection.
> I need to rebuild it to include mysql support. I tried 
> #make deinstall
> but a subsequent
> #make install 
> doesn't give me the options screen.
> what is the way to either remove the stored configuration file, or to 
> manually 
> pass the parameters to make.  A look at the Makefile and the other files 
> in /usr/ports/mail/postfix didn't turn up any hints.
> Thanks,
> Ray

cd to the postfix port you want to install  

make rmconfig
make config

If you want to check all of the dependencies:

make config-recursive

make deinstall
make clean
make install && make clean

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


Re: completly remove (or modify) a port

2007-04-18 Thread Josh Carroll

what is the way to either remove the stored configuration file, or to manually
pass the parameters to make.  A look at the Makefile and the other files
in /usr/ports/mail/postfix didn't turn up any hints.


You can either:

make rmconfig

or just:

make config

Then re-build/install it.

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


Re: completly remove (or modify) a port

2007-04-18 Thread Noel Jones

On 4/18/07, Ray <[EMAIL PROTECTED]> wrote:

Hello all,
I have been trying to work with postfix from the ports collection.
I need to rebuild it to include mysql support. I tried
#make deinstall
but a subsequent
#make install
doesn't give me the options screen.


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


Re: completly remove (or modify) a port

2007-04-18 Thread Lowell Gilbert
Ray <[EMAIL PROTECTED]> writes:

> I have been trying to work with postfix from the ports collection.
> I need to rebuild it to include mysql support. I tried 
> #make deinstall
> but a subsequent
> #make install 
> doesn't give me the options screen.

"make config"

> what is the way to either remove the stored configuration file, or to 
> manually 
> pass the parameters to make.  A look at the Makefile and the other files 
> in /usr/ports/mail/postfix didn't turn up any hints.

The hints are in "man ports" or alternatively in the Handbook section
on installing ports.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: completly remove (or modify) a port

2007-04-18 Thread Pietro Cerutti

On 4/18/07, Ray <[EMAIL PROTECTED]> wrote:

Hello all,
I have been trying to work with postfix from the ports collection.
I need to rebuild it to include mysql support. I tried
#make deinstall
but a subsequent
#make install
doesn't give me the options screen.


make rmconfig


Thanks,
Ray



--
Pietro Cerutti

- ASCII Ribbon Campaign -
against HTML e-mail and
proprietary attachments
  www.asciiribbon.org
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: completly remove (or modify) a port

2007-04-18 Thread Dan Nelson
In the last episode (Apr 18), Ray said:
> Hello all,
> I have been trying to work with postfix from the ports collection.
> I need to rebuild it to include mysql support. I tried 
> #make deinstall
> but a subsequent
> #make install 
> doesn't give me the options screen.
> what is the way to either remove the stored configuration file, or to 
> manually 
> pass the parameters to make.  A look at the Makefile and the other files 
> in /usr/ports/mail/postfix didn't turn up any hints.

If you run "make config", it'll bring up the options page again.  You
could also delete the cahed options file at
/var/db/ports/postfix/options and run "make".

-- 
Dan Nelson
[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: completly remove (or modify) a port

2007-04-18 Thread Michael K. Smith - Adhost
Hello:

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:owner-freebsd-
> [EMAIL PROTECTED] On Behalf Of Ray
> Sent: Wednesday, April 18, 2007 11:16 AM
> To: freebsd-questions@freebsd.org
> Subject: completly remove (or modify) a port
> 
> Hello all,
> I have been trying to work with postfix from the ports collection.
> I need to rebuild it to include mysql support. I tried
> #make deinstall
> but a subsequent
> #make install
> doesn't give me the options screen.
> what is the way to either remove the stored configuration file, or to
> manually
> pass the parameters to make.  A look at the Makefile and the other
> files
> in /usr/ports/mail/postfix didn't turn up any hints.
> Thanks,
> Ray
> 
'make config' should do the trick.

Regards,

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


completly remove (or modify) a port

2007-04-18 Thread Ray
Hello all,
I have been trying to work with postfix from the ports collection.
I need to rebuild it to include mysql support. I tried 
#make deinstall
but a subsequent
#make install 
doesn't give me the options screen.
what is the way to either remove the stored configuration file, or to manually 
pass the parameters to make.  A look at the Makefile and the other files 
in /usr/ports/mail/postfix didn't turn up any hints.
Thanks,
Ray

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