ftp.hanse.de unavailable, use www.hanse.de instead

2006-08-30 Thread Stefan Bethke

Hi,

ftp.hanse.de has become unavailable due to a hardware migration.  The  
following ports are affected by this:

mail/cyrus-imapd2
mail/cyrus-imapd22
mail/cyrus-imapd23
security/cyrus-sasl
security/cyrus-sasl2
security/cyrus-sasl2-ldapdb
security/cyrus-sasl2-saslauthd

I made the files available on the web server instead.  Would you  
please change the MASTER_SITES entries from

ftp://ftp.hanse.de/sites/transit/mirror/
to
http://www.transit.hanse.de/mirror/

The remainder of the path should be identical.


Thanks,
Stefan

--
Stefan Bethke <[EMAIL PROTECTED]>   Fon +49 170 346 0140


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


Re: [EMAIL PROTECTED]: psgconf-3.2.1 pkg-plist errors on i386 6-exp]

2006-08-30 Thread Jim Pirzyk

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Yes, I see that.  But once you install a package via make install,
the pkg-plist is going to have the extra values that TMP_PLIST
had.  Then when you do make package, that will also have those
values (as I understand make package, it will read the 'installed'
version, not the one in /usr/ports/sysutils/psgconf).

I need to do something special before the pkg_delete is done, and
only in the case of 'make install', not in the case of pkg_delete.

- - JimP

On Aug 29, 2006, at 4:59 PM, Gábor Kövesdán wrote:

No, actually it is the same. If you type make deinstall in the port  
directory, pkg_delete is called. Look at bsd.port.mk, about line 4300.


Cheers,

Gabor

Jim Pirzyk wrote:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hmm, this is not quite the same.  I need to know if I am deinstalling
from a port install or a package install.  The install/deinstall
behavior is different.

- - JimP

On Aug 29, 2006, at 4:28 PM, Stanislav Sedov wrote:


On Tue, 29 Aug 2006 16:16:40 -0500
Jim Pirzyk <[EMAIL PROTECTED]> mentioned:


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I do not see any

pre-deinstall:

target available in bsd.ports.mk  Is there a way I can have a
custom action before the main deinstall script or do I have to
reimplement the deinstall: target itself?



You should not tweak any deinstall targets, just add custom entries
into TMP_PLIST. You can schedule any actions by using @unexec PLIST
entry. Just put them in approriate order.

--
Stanislav Sedov MBSD labs, Inc. <[EMAIL PROTECTED]>
Россия, Москва http://mbsd.msk.ru


If the facts don't fit the theory, change the facts.  -- A. Einstein

PGP fingerprint:  F21E D6CC 5626 9609 6CE2  A385 2BF5 5993 EB26 9581


- --- @(#) $Id: dot.signature,v 1.14 2004/02/03 02:46:26 pirzyk Exp $
__o  [EMAIL PROTECTED] --- [EMAIL PROTECTED]
 _'\<,_  Systems Management Group, CITES
(*)/ (*) University of Illinois at Urbana-Champaign


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.2 (Darwin)

iD8DBQFE9Ldt2EYx0U4j2soRAqOuAKCvKD+CRApzfeqKBKY8eiGg5z4c4ACeIvPr
dW1Ds53PO5/ErgY3khMcTVA=
=cU/H
-END PGP SIGNATURE-
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports- 
[EMAIL PROTECTED]"


- --- @(#) $Id: dot.signature,v 1.14 2004/02/03 02:46:26 pirzyk Exp $
__o  [EMAIL PROTECTED] --- [EMAIL PROTECTED]
 _'\<,_  Systems Management Group, CITES
(*)/ (*) University of Illinois at Urbana-Champaign


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.2 (Darwin)

iD8DBQFE9aEI2EYx0U4j2soRAkcIAJ9sn43WYIiacTmcdo8Epjb5n70DQgCdEaV5
eIxiuRSjZw4ZTcaSQ0e2lkQ=
=yIVL
-END PGP SIGNATURE-
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: [EMAIL PROTECTED]: psgconf-3.2.1 pkg-plist errors on i386 6-exp]

2006-08-30 Thread Emanuel Haupt
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> I do not see any
> 
> pre-deinstall:
> 
> target available in bsd.ports.mk  Is there a way I can have a
> custom action before the main deinstall script or do I have to
> reimplement the deinstall: target itself?

You can write a pkg-deinstall script.

See `find /usr/ports -name pkg-deinstall` for examples.

Emanuel


pgp1Dj7PKlprn.pgp
Description: PGP signature


Re: [EMAIL PROTECTED]: psgconf-3.2.1 pkg-plist errors on i386 6-exp]

2006-08-30 Thread Jim Pirzyk

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I have one written but I need to know if I am deinstalling a port
or a package.  The pkg-install script will install a file if it
does not exist, the pkg-deinstall script will need to know if that
file has changed before it just blindly removes it.  The file gets
written out differently if you do 'pkg_add' vs 'make install'

To solve this, I was going to do this:

pre-deinstall:
 PKG_PREFIX=${PREFIX} PKG_MGR=FreeBSD::Ports ${SH} $ 
{PKGDEINSTALL} ${PKGNAME} DEINSTALL


So the pkg-deinstall script looks at PKG_MGR and if it is not set,
then it assumes the string "FreeBSD::Packages".  That string winds
up in a file that is not being removed from the tinderbox, because
the old code sees they are different.

- - JimP

On Aug 30, 2006, at 10:47 AM, Emanuel Haupt wrote:


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I do not see any

pre-deinstall:

target available in bsd.ports.mk  Is there a way I can have a
custom action before the main deinstall script or do I have to
reimplement the deinstall: target itself?


You can write a pkg-deinstall script.

See `find /usr/ports -name pkg-deinstall` for examples.

Emanuel


- --- @(#) $Id: dot.signature,v 1.14 2004/02/03 02:46:26 pirzyk Exp $
__o  [EMAIL PROTECTED] --- [EMAIL PROTECTED]
 _'\<,_  Systems Management Group, CITES
(*)/ (*) University of Illinois at Urbana-Champaign


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2.2 (Darwin)

iD8DBQFE9bho2EYx0U4j2soRAnVxAJ9nb5SvqPt9X/1fx7PEMR8KbpBpIgCgkqq2
gV4hfPloxGJMYkJtrBQ4go4=
=fjnX
-END PGP SIGNATURE-
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: ftp/curl

2006-08-30 Thread Stefan Walter
Hi,

Chris, 26.08.06, 16:56h CEST:

> Hi can someone update this port please its stuck on 7.15.4 for many
> weeks since 7.15.5 release and the ports maintainer email address
> bounces.

The fastest/easiest way to get it updated would be to prepare a patch for
the port and use send-pr(1) to submit it. This would also implicitly
reveal problems with a maintainer's reachability when a committer tries to
contact him/her for approval of the patch.

See the Porter's Handbook [1] for more on porting and updates.

Regards,
Stefan

[1]: 
http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/index.html


pgpOIEBRO91F1.pgp
Description: PGP signature


lang/smarteiffel is not broken anymore

2006-08-30 Thread Patrick Lamaizière
Hello,

The port lang/smarteiffel 1.2r7 is marked BROKEN : does not fetch.
It is ok now, the file is online (same URL).

Shall i fill a PR for this ? Contact the maintainer or something else ?

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


Re: INDEX build failed for 4.x

2006-08-30 Thread Kris Kennaway
On Mon, Aug 28, 2006 at 10:16:57AM -0500, Donald J. O'Neill wrote:
> On Monday 28 August 2006 09:06, Erwin Lansing wrote:
> > INDEX build failed with errors:
> > Generating INDEX - please wait.. Done.
> > make_index: htdig-3.2.0.b6_2: no entry for /usr/ports
> >

> Hello Irwin,

Dear Donold :-)

> > Committers on the hook:
> > clsung dougb jylefort krion miwi pav sat skv sumikawa

^^^ this indicates the short list of who is likely to blame for the
error.

> I'm curious. Do you have a purpose in sending all these messages to the list? 

It's reporting errors that will be seen by users in various situations
(e.g. trying to build a certain port, or trying to build the index),
as a reminder to whoever broke it (or their collaborators) that it
needs fixing, and a warning to users who monitor the list and may
encounter the same error.

Kris


pgp0TQTj8tibC.pgp
Description: PGP signature


Re: Hunspell 1.1.4 port

2006-08-30 Thread Mohacsi Janos

hi,
I am on holiday now and sparse e-mail access. I will answer after 10th 
September. Regards,


Janos Mohacsi
Network Engineer, Research Associate, Head of Network Planning
NIIF/HUNGARNET, HUNGARY
Key 00F9AF98: 8645 1312 D249 471B DBAE  21A2 9F52 0D1F 00F9 AF98


On Tue, 29 Aug 2006, Andrew Pantyukhin wrote:


A new hunspell port is available here:
http://people.freebsd.org/~sat/abc/hunspell-114.tbz

The plan is to ask for a repomove from 
hungarian/

Would you like to maintain it?

Thanks!


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