Re: ports/119000: Update port: sysutils/p5-Unix-Mknod

2007-12-25 Thread az
Synopsis: Update port: sysutils/p5-Unix-Mknod

Responsible-Changed-From-To: freebsd-ports-az
Responsible-Changed-By: az
Responsible-Changed-When: Tue Dec 25 09:50:54 UTC 2007
Responsible-Changed-Why: 
I'll take it.

http://www.freebsd.org/cgi/query-pr.cgi?pr=119000
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: (Very) bogus package dependencies

2007-12-25 Thread Andriy Gapon
on 25/12/2007 03:47 Alexander Nedotsukov said the following:
 Andriy Gapon wrote:
 And a practical thought: it seems that in recent FreeBSD versions system
 tar can work rather well with the ISO CD9660 FS, so it should be enough
 to list directories in an image. What I am trying to say: before adding
 a dependency examine your options and choose the best one.
   
 Sorry to interrupt your interesting discussion guys. Is it okay with you 
 that issue you talking about was resolved more than week ago? :-)

Thank you for rubbing my nose into it - I continued this conversation
after taking a several weeks break and without updating my facts :-)

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


Re: Updating 'mail/freepops' port

2007-12-25 Thread Peter Pentchev
On Sun, Dec 23, 2007 at 07:04:08AM -0500, Gerard wrote:
 On Sun, 23 Dec 2007 22:09:43 +1100
 Edwin Groothuis [EMAIL PROTECTED] wrote:
 
  On Sat, Dec 22, 2007 at 06:47:01PM -0500, Gerard wrote:
   Evidently, the '/mail/freepops/' port does not have a maintainer.
   If I knew more about it, I would attempt to do it myself; however,
   that might well lead to a disaster.  
  
  Just do it, we're here to hold your hand and guide you through it.
  
  Edwin
 
 Well, only if you promise. ;-)

That's one of the purposes of this mailing list :)

 Seriously though, the only thing I have written are a few bash scripts.
 I guess I could attempt to work on this though. I'll download the
 Porters Hand book and start from there. Just a suggestion. It
 occurred to me that having a compressed copy of the Porters Hand book
 for downloading would be a good idea. I just checked, and it is
 something like 150 pages or so to download and print out.

Actually, it is already available in archived form on the FreeBSD FTP
server; check out this directory:

ftp://ftp.FreeBSD.org/pub/FreeBSD/doc/en_US.ISO8859-1/books/porters-handbook/

...and, specifically, the book.html-split.tar.bz2 file there.

It's just that there are no links to this directory on the FreeBSD website.

 BTW, who do I contact if (when) I need assistance?

This list.  That's what it's for :)

G'luck,
Peter

-- 
Peter Pentchev  [EMAIL PROTECTED][EMAIL PROTECTED][EMAIL PROTECTED]
PGP key:http://people.FreeBSD.org/~roam/roam.key.asc
Key fingerprint FDBA FD79 C26F 3C51 C95E  DF9E ED18 B68D 1619 4553
Hey, out there - is it *you* reading me, or is it someone else?


pgpjOpPksEyCO.pgp
Description: PGP signature


Re: portmaster ??

2007-12-25 Thread Wesley Shields
On Mon, Dec 24, 2007 at 10:10:13AM -0600, eculp wrote:
 Quoting Umar [EMAIL PROTECTED]:
 
 
 Dear Stefan!
 
 Thanks for your reply!
 
 touch /var/db/pkg/squid-version/+IGNOREME.
 
 I already done that. But its not working, here is the error message.
 
 === The www/squid25 port has been deleted: Has expired: This version is
 no longer supported by the developers
 === Aborting update
 === Child process 36682:
 === Child process 31343:
 === Child process 37217:
 === Child process 37718:
 === Child process 38414:
 
 so what should i do?
 
 I didn't realize that 2.5 had been deleted so then I would have to suggest 
 that you try the -o option of portmaster maybe something like
 
 portmaster -o www/squid30 [current installed version from /var/db/pkg]
 
 of course you  will then be upgraded to 3.0 that works fine here.

And if you don't want to upgrade, but would rather have portmaster
ignore deleted ports, try the attached patch (relative to
ports-mgmt/portmaster).  I've sent this to Doug a week or so ago but
have not heard a response yet - I imagine he's busy with real life
during the holidays.

I developed this so portmaster would not complain about the deletion of
ion-3 recently (there is no suitable replacement to use with -o for me).

 Have a great Christmas,

You too!

-- WXS
Index: files/portmaster.sh.in
===
RCS file: /home/ncvs/ports/ports-mgmt/portmaster/files/portmaster.sh.in,v
retrieving revision 1.26
diff -u -r1.26 portmaster.sh.in
--- files/portmaster.sh.in  12 Dec 2007 21:50:59 -  1.26
+++ files/portmaster.sh.in  14 Dec 2007 17:34:10 -
@@ -518,7 +518,13 @@
 '
for l in `grep ^$sf $pd/MOVED`; do
case $l in
-   ${sf}\|\|*) fail The $sf port has been deleted: ${l##*|}
+   ${sf}\|\|*) 
+   if [ -z $IGNORE_DELETED ]; then
+   fail The $sf port has been deleted: 
${l##*|}
+   else
+   echo === The $sf port has been 
deleted: ${l##*|}
+   echo === Ignoring deleted port.
+   fi
;;
${sf}\|*)   newportdir=${l#*\|}
newportdir=${newportdir%%\|*}
@@ -997,7 +1003,7 @@
 fi
 
 # Save switches for potential child processes
-while getopts 'BCDGLRabde:fghilm:nop:r:stuvwx:' COMMAND_LINE_ARGUMENT ; do
+while getopts 'BCDGLRabde:fghiIlm:nop:r:stuvwx:' COMMAND_LINE_ARGUMENT ; do
case ${COMMAND_LINE_ARGUMENT} in
B)  NO_BACKUP=yes; ARGS=-B $ARGS ;;
C)  DONT_PRE_CLEAN=yes; ARGS=-C $ARGS ;;
@@ -1016,6 +1022,7 @@
g)  MAKE_PACKAGE=yes; ARGS=-g $ARGS ;;
h)  usage 0 ;;
i)  INTERACTIVE_UPDATE=yes; ARGS=-i $ARGS ;;
+   I)  IGNORE_DELETED=yes ;;
l)  LIST=yes ;;
m)  PM_MAKE_ARGS=$OPTARG
export PM_MAKE_ARGS # For 'make checksum'
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]

Asterisk add ons

2007-12-25 Thread Guido Falsi

Hello,

I don't write often to the lists, so I take the chance to thank all the 
ports committers who work hard to keep everything up to date. Thank you 
a lot.


Having noticed that the asterisk port has been updated I'd like to call 
attention to PR ports/117270, which I found when installing a little 
home asterisk system.


I have a system working well since mid November with that patch applied 
so I'd like to know if it is planned to be committed or not.


I'm not asking for any priority for it, just to know.

Good Christmas to everyone!

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


Re: adding enigmail to seamonkey

2007-12-25 Thread Chuck Robey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Alex Dupre wrote:
 Chuck Robey ha scritto:
 I'm lost.  Anyone gotten the enigmail-seamonkey port to work?
 
 Well, I suppose you never manually installed (or googled about
 installing) an xpi with seamonkey. Simply File-Open the xpi, how
 could it be simpler?
 

Maybe by having the menu say Open addons or at least having some doc that
says that.  I would normally assume an open function in a browser would
open URL's, but you wouldn't?
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.4 (FreeBSD)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHcWDnz62J6PPcoOkRArTDAJ0Ujoh5/ld/LmWdreRWo3F2eIxu2gCcCi5U
i27kXPMf9sG6MpTU7McUk+M=
=3xai
-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: who is the portsmgr? Re Linux hier

2007-12-25 Thread Chuck Robey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Mark Linimon wrote:
 On Thu, Dec 20, 2007 at 08:36:32PM -0500, Chuck Robey wrote:
 Back last time I was last active,Satoshi Asami was the Portsmeister.  I
 dunno if that term is used anymore, but I need to find out if one person is 
 in
 charge of ports, or if it's a group of folks, and whichever it is, what their
 name(s) are?
 
 Most of your questions are probably answered on 
 http://www.freebsd.org/portmgr/.
 
 With the addition of another 10,000 or so ports, things have gotten more
 formalized over time :-)
 
 mcl

You're maybe just a touch late answering this, but it seems obvious to me
that if you knew the url of this, then you already knew the name.  I don't
know if I'm the only one that finds the setup the web pages have moved to,
these last few years, to be far more difficult to traverse than the older
one, which I felt right at home with.  The current one leave me pretty
cold, which is part of the reason, I guess, that I never found this link.
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.4 (FreeBSD)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHcWBAz62J6PPcoOkRAkxDAJwIXBJOCkMV7h5QUyQR9jsTZjuO0wCgl5WN
gH7bcnqESsdA+kOtNZXBfio=
=Gv0r
-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: who is the portsmgr? Re Linux hier

2007-12-25 Thread Chuck Robey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Edwin Groothuis wrote:
 On Thu, Dec 20, 2007 at 08:36:32PM -0500, Chuck Robey wrote:
 Back last time I was last active,Satoshi Asami was the Portsmeister.  I
 dunno if that term is used anymore, but I need to find out if one person is 
 in
 charge of ports, or if it's a group of folks, and whichever it is, what their
 name(s) are?
 
 [EMAIL PROTECTED] is the right email address.
 
 Or try #bsdports of the Efnet IRC network, three of them are hanging
 out there during various times of the day.
 
 Edwin
 

Ahh, thanks, that channel might be very useful, thanks!
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.4 (FreeBSD)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHcWBvz62J6PPcoOkRAu5IAJ9dvomfrTm7sApjrarDT8r3jVQjzwCeMx55
vfLjCX6EhysFtMf3uWi3GY8=
=iTt5
-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: portmaster ??

2007-12-25 Thread RW
On Mon, 24 Dec 2007 10:10:13 -0600
eculp [EMAIL PROTECTED] wrote:

 Quoting Umar [EMAIL PROTECTED]:
 
 
  Dear Stefan!
 
  Thanks for your reply!
 
  touch /var/db/pkg/squid-version/+IGNOREME.
 
  I already done that. But its not working, here is the error message.
 
  === The www/squid25 port has been deleted: Has expired: This
  version is no longer supported by the developers
  === Aborting update
  === Child process 36682:
  === Child process 31343:
  === Child process 37217:
  === Child process 37718:
  === Child process 38414:
 
  so what should i do?
 
 I didn't realize that 2.5 had been deleted so then I would have to  
 suggest that you try the -o option of portmaster maybe something like
 
 portmaster -o www/squid30 [current installed version from /var/db/pkg]
 
 of course you  will then be upgraded to 3.0 that works fine here.

or www/squid  (squid-2.6.17)

www/squid30 is a rewrite of squid in C++ - it's still a development
version.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]