Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 25 May 2003 13:31:05 +0200
From:      Roman Neuhauser <neuhauser@bellavista.cz>
To:        Dick Hoogendijk <dick@nagual.st>
Cc:        freebsd-questions <freebsd-questions@freebsd.org>
Subject:   Re: PACKAGESITE ??
Message-ID:  <20030525113105.GK90914@freepuppy.bellavista.cz>
In-Reply-To: <20030525111828.GA353@pooh.nagual.st>
References:  <20030525111828.GA353@pooh.nagual.st>

next in thread | previous in thread | raw e-mail | index | archive | help
# dick@nagual.st / 2003-05-25 13:18:28 +0200:
> I have to set the "PACKAGESITE" for pkg_add or portinstall -PP to work
> properly, but I cannot find where to do this.
> I search the manual/handbook for a location, but alas..
> 
> Does anybody know how and where to set this, so I can do a
> "portupgrade -PPrR kde" and get the latest 3.1.2-packages?

    this is a basic-shell-usage question.

    bourne shell compatible:

    PACKAGESITE=http://example.com/this/that/ portupgrade -PPrR kde

    or

    export PACKAGESITE=http://example.com/this/that/
    portupgrade -PPrR kde

    (t)csh:

    env PACKAGESITE=http://example.com/this/that/ portupgrade -PPrR kde

    or

    setenv PACKAGESITE http://example.com/this/that/
    portupgrade -PPrR kde

-- 
If you cc me or remove the list(s) completely I'll most likely ignore
your message.    see http://www.eyrie.org./~eagle/faqs/questions.html



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