Re: Out of order line in /usr/ports/MOVED

2007-08-05 Thread Mark Linimon
On Sat, Aug 04, 2007 at 06:01:48PM -0700, Doug Barton wrote:
> The following line was placed first in the file, instead of in
> chronological order. Is there a reason that it needs to be first?

This is a bug.  Fixed.

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


FW: FreeBSD Port: uptimed-0.3.7

2007-08-05 Thread Daniel Dvořák
I have no response, so I try to send to public.

 

  _  

From: Daniel Dvořák [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 03, 2007 11:09 PM
To: '[EMAIL PROTECTED]'
Subject: FreeBSD Port: uptimed-0.3.7

 

Hi Andy,

 

I ask you about updating uptimed to the last release 0.3.11.

 

Radek P. is my friend and I show him what the startting script in fbsd porttree 
is, he was surprised a little bit about older our 0.3.7 release.

 

The main problem is with pid file and uptimed.sh script as whole.

 

See this:

 

# /etc2/rc.d/uptimed.sh stop

# /etc2/rc.d/uptimed.sh start

 uptimeduptimed is already running.

# /etc2/rc.d/uptimed.sh stop

# ps aux | grep "uptimed"

root   91399  0,0  0,8  1564   948  p0  R+   10:04od   0:00,03 grep uptimed

# /etc2/rc.d/uptimed.sh start

 uptimeduptimed is already running.

# ps aux | grep "uptimed"

root   91406  0,0  0,7  1548   872  p0  R+   10:05od   0:00,02 grep uptimed

 

I had to use „killall uptimed“ to really stop it.

 

This is our latest script:

 

#!/bin/sh

case "$1" in

start)

echo -n ' uptimed'

/usr/local/sbin/uptimed

;;

stop)

;;

restart)

;;

*)

echo "Usage: ${0##*/}: { start | stop | restart }" 2>&1

exit 65

;;

esac

 

 

And Radek has in his sources this much newer code with status. To be perfect it 
should have rcvar option.

 

http://hg.podgorny.cz/uptimed/file/ccbad14594ae/etc/rc.uptimed

 

case "$1" in
69  start)
70 start
71 ;;
72  stop)
73 stop
74 ;;
75  restart)
76 stop
77 start
78 ;;
79  createbootid)
80 createbootid
81 ;;
82  status)
83 showstatus
84 ;;
85  *)
86 echo $"Usage: $0 {start|stop|restart|createbootid|status}"
87 RETVAL=1
88esac
89exit $RETVAL

 

 

I think this code above is good point to start and adjust our modern uptimed 
startting script with rc rules for our needs.

 

I ask you more than I could, becuse my contribution is almost none, but at 
least new modern startting script with whole status and rcvar stuff under new 
rc rules would be great.

 

Perhaps I do not bother you more than necessary.

 

Thanks

 

Bye

 

Dan

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


Re: FW: FreeBSD Port: uptimed-0.3.7

2007-08-05 Thread Andy Fawcett
Two days is hardly "no response", especially when my baby daughter had a big 
day today.

I'll look at your submission during this coming week. Please be patient.

Andy


On Sunday 05 August 2007 15:23:16 Daniel Dvořák wrote:
> I have no response, so I try to send to public.
>
>
>
>   _
>
> From: Daniel Dvořák [mailto:[EMAIL PROTECTED]
> Sent: Friday, August 03, 2007 11:09 PM
> To: '[EMAIL PROTECTED]'
> Subject: FreeBSD Port: uptimed-0.3.7
>
>
>
> Hi Andy,
>
>
>
> I ask you about updating uptimed to the last release 0.3.11.
>
>
>
> Radek P. is my friend and I show him what the startting script in fbsd
> porttree is, he was surprised a little bit about older our 0.3.7 release.
>
>
>
> The main problem is with pid file and uptimed.sh script as whole.
>
>
>
> See this:
>
>
>
> # /etc2/rc.d/uptimed.sh stop
>
> # /etc2/rc.d/uptimed.sh start
>
>  uptimeduptimed is already running.
>
> # /etc2/rc.d/uptimed.sh stop
>
> # ps aux | grep "uptimed"
>
> root   91399  0,0  0,8  1564   948  p0  R+   10:04od   0:00,03 grep uptimed
>
> # /etc2/rc.d/uptimed.sh start
>
>  uptimeduptimed is already running.
>
> # ps aux | grep "uptimed"
>
> root   91406  0,0  0,7  1548   872  p0  R+   10:05od   0:00,02 grep uptimed
>
>
>
> I had to use „killall uptimed“ to really stop it.
>
>
>
> This is our latest script:
>
>
>
> #!/bin/sh
>
> case "$1" in
>
> start)
>
> echo -n ' uptimed'
>
> /usr/local/sbin/uptimed
>
> ;;
>
> stop)
>
> ;;
>
> restart)
>
> ;;
>
> *)
>
> echo "Usage: ${0##*/}: { start | stop | restart }" 2>&1
>
> exit 65
>
> ;;
>
> esac
>
>
>
>
>
> And Radek has in his sources this much newer code with status. To be
> perfect it should have rcvar option.
>
>
>
> http://hg.podgorny.cz/uptimed/file/ccbad14594ae/etc/rc.uptimed
>
>
>
> case "$1" in
> 69  start)
> 70 start
> 71 ;;
> 72  stop)
> 73 stop
> 74 ;;
> 75  restart)
> 76 stop
> 77 start
> 78 ;;
> 79  createbootid)
> 80 createbootid
> 81 ;;
> 82  status)
> 83 showstatus
> 84 ;;
> 85  *)
> 86 echo $"Usage: $0 {start|stop|restart|createbootid|status}"
> 87 RETVAL=1
> 88esac
> 89exit $RETVAL
>
>
>
>
>
> I think this code above is good point to start and adjust our modern
> uptimed startting script with rc rules for our needs.
>
>
>
> I ask you more than I could, becuse my contribution is almost none, but at
> least new modern startting script with whole status and rcvar stuff under
> new rc rules would be great.
>
>
>
> Perhaps I do not bother you more than necessary.
>
>
>
> Thanks
>
>
>
> Bye
>
>
>
> Dan
>
> ___
> freebsd-ports@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-ports
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"



-- 
Andy Fawcett | [EMAIL PROTECTED]
 | [EMAIL PROTECTED]
"In an open world without walls and fences,  | [EMAIL PROTECTED]
  we wouldn't need Windows and Gates."  -- anon  | [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: Out of order line in /usr/ports/MOVED

2007-08-05 Thread Mark Linimon
On Sun, Aug 05, 2007 at 09:29:03AM -0700, Doug Barton wrote:
> Thanks! I forgot to include in my original message that this is
> important because some tools (like portmaster)
 and portsmon
> rely on being able to parse the file in chronological order.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Out of order line in /usr/ports/MOVED

2007-08-05 Thread Doug Barton
Mark Linimon wrote:
> On Sat, Aug 04, 2007 at 06:01:48PM -0700, Doug Barton wrote:
>> The following line was placed first in the file, instead of in
>> chronological order. Is there a reason that it needs to be first?
> 
> This is a bug.  Fixed.

Thanks! I forgot to include in my original message that this is
important because some tools (like portmaster) rely on being able to
parse the file in chronological order.

Doug

-- 

This .signature sanitized for your protection

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


Re: PORTSDIR use-before-define fix

2007-08-05 Thread Gabor Kovesdan

Kris Kennaway escribió:

Previous DESTDIR commits introduced dereferences of ${PORTSDIR} before
it was set (via .include), which broke e.g. portmaster.  This diff
shuffles some things around to hopefully restore everything to being
defined before it is used.  It also cleans up some stale cruft.  It
has only been lightly tested.

  
I haven't tested it yet, but it seems good to me. Thanks for working on 
this! I'll test it a bit next
day. What about COMMENTFILE? I see it was removed, but can't see it 
added back. Is it

completely obsolete?

Regards,

--
Gabor Kovesdan
FreeBSD Volunteer

EMAIL: [EMAIL PROTECTED] .:|:. [EMAIL PROTECTED]
WEB:   http://people.FreeBSD.org/~gabor .:|:. http://kovesdan.org

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


Re: PORTSDIR use-before-define fix

2007-08-05 Thread Kris Kennaway
On Sun, Aug 05, 2007 at 10:48:42PM +0200, Gabor Kovesdan wrote:
> Kris Kennaway escribi?:
> >Previous DESTDIR commits introduced dereferences of ${PORTSDIR} before
> >it was set (via .include), which broke e.g. portmaster.  This diff
> >shuffles some things around to hopefully restore everything to being
> >defined before it is used.  It also cleans up some stale cruft.  It
> >has only been lightly tested.
> >
> >  
> I haven't tested it yet, but it seems good to me. Thanks for working on 
> this! I'll test it a bit next
> day. What about COMMENTFILE? I see it was removed, but can't see it 
> added back. Is it
> completely obsolete?

Yes, for 3 years now :)

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


Kdenlive video non linear editor port

2007-08-05 Thread Chris Billington
Has anyone had any success with producing a port for the Kdenlive
video editor (kdenlive.sourceforge.net)? It looks like a more
sophisticated version of Kino, indeed the Kino main developer is
joining that project.

There don't appear to be source snapshot releases as yet. I tried with
the latest svn version of today, but the configure and make gave
multiple errors like

"Makefile", line 6: Missing dependency operator
"Makefile", line 10: Need an operator
"Makefile", line 14: Need an operator
"Makefile", line 95: Missing dependency operator
"Makefile", line 96: Could not find .depend
etc...

The project doesn't appear to use autotools, so I am guessing these
are due to Linuxisms. The web page does say it should build (minus
V4L, etc) on xBSD.
Has anyone had any success with getting this to build on FreeBSD?

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


Re: Kdenlive video non linear editor port

2007-08-05 Thread Garrett Cooper

Chris Billington wrote:

Has anyone had any success with producing a port for the Kdenlive
video editor (kdenlive.sourceforge.net)? It looks like a more
sophisticated version of Kino, indeed the Kino main developer is
joining that project.

There don't appear to be source snapshot releases as yet. I tried with
the latest svn version of today, but the configure and make gave
multiple errors like

"Makefile", line 6: Missing dependency operator
"Makefile", line 10: Need an operator
"Makefile", line 14: Need an operator
"Makefile", line 95: Missing dependency operator
"Makefile", line 96: Could not find .depend
etc...

The project doesn't appear to use autotools, so I am guessing these
are due to Linuxisms. The web page does say it should build (minus
V4L, etc) on xBSD.
Has anyone had any success with getting this to build on FreeBSD?

regards
Chris

Try gmake instead of make and see if it compiles.
-Garrett
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


for Thomas E. Zander, mplayer maintainer.

2007-08-05 Thread Sergey Matveychuk

Thanks for respecting mail from Russia.

 Original Message 
X-Failed-Recipients: [EMAIL PROTECTED]
Auto-Submitted: auto-replied
From: Mail Delivery System <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Mail delivery failed: returning message to sender
Message-Id: <[EMAIL PROTECTED]>
Date: Mon, 06 Aug 2007 01:49:36 +0400
X-Spam-Score: 0.0 (/)

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  [EMAIL PROTECTED]
SMTP error from remote mail server after MAIL FROM:<[EMAIL PROTECTED]>:
host mail.rrr.de [217.160.178.110]: 550 5.0.0 Sorry,to much spam 
from russia


-- This is a copy of the message, including all the headers. --

Return-path: <[EMAIL PROTECTED]>
Message-ID: <[EMAIL PROTECTED]>
Date: Mon, 06 Aug 2007 01:49:32 +0400
From: Sergey Matveychuk <[EMAIL PROTECTED]>
User-Agent: Thunderbird 2.0.0.4 (X11/20070708)
MIME-Version: 1.0
To: "Thomas E. Zander" <[EMAIL PROTECTED]>
Subject: Re: ports/115170: [Maintainer-update] multimedia/mplayer
References: <[EMAIL PROTECTED]> 
<[EMAIL PROTECTED]>

In-Reply-To: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=KOI8-R; format=flowed
Content-Transfer-Encoding: 7bit

I've committed mplayer part. But I have problems with extra files with
mencoder port:

=== Checking filesystem state after all packages deleted

list of extra files and directories in / (not present on clean system
but present after everything was deinstalled)
1201964 drwxr-xr-x3 root wheel
512 Aug  5 21:47 share
1202494 drwxr-xr-x3 root wheel
512 Aug  5 21:47 share/mplayer
1202534 drwxr-xr-x2 root wheel
512 Aug  5 21:47 share/mplayer/tools
1202544 -r-xr-xr-x1 root wheel
1433 Aug  5 21:47 share/mplayer/tools/calcbpp.pl
1202564 -r-xr-xr-x1 root wheel
756 Aug  5 21:47 share/mplayer/tools/countquant.pl
120258   16 -r-xr-xr-x1 root wheel
8116 Aug  5 21:47 share/mplayer/tools/dvd2divxscript.pl
1202624 -r-xr-xr-x1 root wheel
861 Aug  5 21:47 share/mplayer/tools/menc2pass
120263   28 -r-xr-xr-x1 root wheel
12398 Aug  5 21:47 share/mplayer/tools/mencvcd
1202764 -r-xr-xr-x1 root wheel
1510 Aug  5 21:47 share/mplayer/tools/mp.pl
120280   28 -r-xr-xr-x1 root wheel
13095 Aug  5 21:47 share/mplayer/tools/subedit.pl
1202874 -r-xr-xr-x1 root wheel
622 Aug  5 21:47 share/mplayer/tools/subsearch.sh
1205084 -r-xr-xr-x1 root wheel
458 Aug  5 21:47 share/mplayer/tools/sws-test
1205108 -r-xr-xr-x1 root wheel
3083 Aug  5 21:47 share/mplayer/tools/w32codec_dl.pl
120516   16 -r-xr-xr-x1 root wheel
7219 Aug  5 21:47 share/mplayer/tools/wma2ogg.pl
1205204 -r-xr-xr-x1 root wheel
408 Aug  5 21:47 share/mplayer/tools/x2mpsub.sh

build of /usr/ports/multimedia/mencoder ended at Sun Aug  5 21:48:21 UTC
2007

Fix it please.

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


Re: Kdenlive video non linear editor port

2007-08-05 Thread Jeremy Chadwick
On Sun, Aug 05, 2007 at 11:43:21PM +0200, Chris Billington wrote:
> There don't appear to be source snapshot releases as yet. I tried with
> the latest svn version of today, but the configure and make gave
> multiple errors like
> 
> "Makefile", line 6: Missing dependency operator
> "Makefile", line 10: Need an operator
> "Makefile", line 14: Need an operator
> "Makefile", line 95: Missing dependency operator
> "Makefile", line 96: Could not find .depend
> etc...

gmake should be able to address that.

-- 
| Jeremy Chadwickjdc at parodius.com |
| Parodius Networking   http://www.parodius.com/ |
| UNIX Systems Administrator  Mountain View, CA, USA |
| Making life hard for others since 1977.  PGP: 4BD6C0CB |

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


Re: for Thomas E. Zander, mplayer maintainer.

2007-08-05 Thread Kris Kennaway
On Mon, Aug 06, 2007 at 01:58:49AM +0400, Sergey Matveychuk wrote:
> Thanks for respecting mail from Russia.
> 
>  Original Message 
> X-Failed-Recipients: [EMAIL PROTECTED]
> Auto-Submitted: auto-replied
> From: Mail Delivery System <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Mail delivery failed: returning message to sender
> Message-Id: <[EMAIL PROTECTED]>
> Date: Mon, 06 Aug 2007 01:49:36 +0400
> X-Spam-Score: 0.0 (/)
> 
> This message was created automatically by mail delivery software.
> 
> A message that you sent could not be delivered to one or more of its
> recipients. This is a permanent error. The following address(es) failed:
> 
>   [EMAIL PROTECTED]
> SMTP error from remote mail server after MAIL FROM:<[EMAIL PROTECTED]>:
> host mail.rrr.de [217.160.178.110]: 550 5.0.0 Sorry,to much spam 
> from russia

How rude :(

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


Re: HEADS UP for portmaster users: Mandatory upgrade

2007-08-05 Thread Mark Kane
On Sat, Aug 04, 2007, at 22:20:28 -0700, Doug Barton wrote:
> Howdy,
> 
> The short version is that the DESTDIR changes that were made to
> ports/Mk/bsd.port.mk today broke the method that portmaster was using
> to detect variable PORTSDIR and PKG_DBDIR. It's fixed now, but in
> order to keep using portmaster you must upgrade.
> 
> You won't be able to use portmaster to do the upgrade, so you'll have
> to do it the old fashioned way:
> pkg_delete portmaster*
> cd /usr/ports/ports-mgmt/portmaster
> make clean ; make install
> 
> After that you should be fine.
> 
> Regards,
> 
> Doug

Hi.

Unfortunately I didn't see this before trying portmaster on a machine.
I ran portmaster -L and it said that six ports were out of date which
sounded right since I've been working on putting the machine together
recently and I had a recent ports tree. I ran portmaster -a and let it
do it's thing, however afterwards there are a lot of corrupted package
infos (pasted below). 

Only 28 of 450+ come up as corrupted however I'm not sure how to fix
them as I've never had corrupted package data before.
In /var/db/pkg/name on the corrupted ones, some directories are
entirely empty (such as portmaster, intltool, ghostscript-gpl, etc
which portmaster was trying to update) and others such as gimp and vlc
are missing +CONTENTS files even though they weren't being updated.

Are there any quick fixes for this? If not, what's the best way to
proceed? This is on an older slower machine (900MHz) that I've been
compiling on for the last few days and it was just about all ready to
go, so I'd rather not have to recompile a bunch of ports if at all
possible.

Thanks a lot in advance.

-Mark

P.S. Sorry about the paste, some lines wouldn't fit correctly.

---
pkg_info: the package info for package 'Terminal-0.2.6_3' is corrupt
pkg_info: the package info for package 'Thunar-0.8.0_5' is corrupt
pkg_info: the package info for package 'abiword-2.4.6_1' is corrupt
pkg_info: the package info for package 'claws-mail-2.10.0_1' is corrupt
pkg_info: the package info for package 'cups-pstoraster-8.15.4_1' is
corrupt
pkg_info: the package info for package 'gail-1.18.0_1' is
corrupt 
pkg_info: the package info for package 'ghostscript-gpl-8.57_1'
is corrupt 
pkg_info: the package info for package 'gimp-2.2.17,2' is
corrupt 
pkg_info: the package info for package 'gimp-app-2.2.17,1' is
corrupt 
pkg_info: the package info for package 'gimp-gutenprint-5.1.3'
is corrupt 
pkg_info: the package info for package 'gstreamer-0.10.14'
is corrupt 
pkg_info: the package info for package 'gstreamer-plugins-0.10.14,3' is
corrupt 
pkg_info: the package info for package 'gutenprint-cups-5.1.3' is
corrupt 
pkg_info: the package info for package 'intltool-0.36.0' is
corrupt 
pkg_info: the package info for package 'libexo-0.3.2_3' is
corrupt 
pkg_info: the package info for package 'libglade2-2.6.2' is
corrupt 
pkg_info: the package info for package 'libgnomecanvas-2.14.0_3' is
corrupt 
pkg_info: the package info for package 'libgnomeprintui-2.18.0_1' is
corrupt 
pkg_info: the package info for package 'libgtkhtml-2.11.0_3' is
corrupt 
pkg_info: the package info for package 'portmaster-1.19' is
corrupt 
pkg_info: the package info for package 'sane-frontends-1.0.14_3' is
corrupt 
pkg_info: the package info for package 'vlc-0.8.6.c_2,2' is corrupt
pkg_info: the package info for package 'wxgtk2-common-2.8.4' is corrupt
pkg_info: the package info for package 'wxgtk2-unicode-2.8.4' is
corrupt 
pkg_info: the package info for package 'xfce-4.4.1_1' is corrupt
pkg_info: the package info for package 'xfce4-desktop-4.4.1_1' is
corrupt 
pkg_info: the package info for package 'xfce4-session-4.4.1_1' is
corrupt 
pkg_info: the package info for package 'xsane-0.991_3' is corrupt
---


-- 
Internet Radio:
Party107 (Trance/Electronic) - http://www.party107.com
Rock 101.9 The Edge (Rock) - http://www.rock1019.net

IRC:
MIXXnet IRC Network - irc.mixxnet.net (Nick: MIXX941)
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Kdenlive video non linear editor port

2007-08-05 Thread Angelo Turetta

Chris Billington wrote:

Has anyone had any success with producing a port for the Kdenlive
video editor (kdenlive.sourceforge.net)? It looks like a more
sophisticated version of Kino, indeed the Kino main developer is
joining that project.


It's indeed a totally different project from kino, based on much better 
design (multitrack timeline, ecc..).


It's fun you ask today: I've been thinking for 6+ months about writing a 
port for kdenlive, and yesterday I decided I'd give a try.
Not that hard, but the resulting binary has problems playing audio: I 
guess it's a device name problem. All other KDE applications can 
playback audio files, kdenlive not.


If you want to try, or help me iron out the last issues, you can 
download the following files:


  http://www.commit.it/kdenlive-ports.tgz
(ports for kdenlive/mlt/mlt++, untar in /usr/ports/multimedia)

  http://www.commit.it/kdenlive-20070804.tar.bz2
  http://www.commit.it/mlt-20070804.tar.bz2
  http://www.commit.it/mltpp-20070804.tar.bz2
(source tarballs extracted form SVN on 2007-08-04, save them in folder 
/usr/ports/distfiles)


Then, to install:

 #cd /usr/ports/multimedia/kdenlive
 #make install

I'm not yet sure what to do about tarball hosting, so the ports doesn't 
fetch automatically by now.
Please beware that some dependencies may be missing (i.e.: it just 
occurred to me that I've not put multimedia/ffmpeg among the 
RUN/BUILD_DEPENDS, please install it before trying).

I only tested on RELENG_6/AMD64.

Let me know how it works for you

Angelo Turetta.

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


Would someone please look at ports/114994?

2007-08-05 Thread Darren Pilgrim
The PR is regarding sysutils/3dm, a port for which I'm the maintainer. 
After working with Craig (the PR submitter), I've submitted a follow-up 
to the PR containing a commitable version of the suggested changes plus 
a few of my own.  If someone with a commit bit would be so kind, that 
would be great, thanks.

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


FreeBSD Port: p5-Authen-PluggableCaptcha-0.05

2007-08-05 Thread Seth Hieronymus
Hello,

I am having problems getting the p5-Authen-PluggableCaptcha-0.05 port to
work, which lists you as maintainer.  When I try to use it, I get an include
path error:

 [Mon Aug 06 02:18:54 2007] [error] Can't locate Imager.pm in @INC (@INC
contains: /usr/local/hiertec/symtrust/www/perlmod
/usr/local/hiertec/symtrust/conf /usr/local/lib/perl5/5.8.8/BSDPAN
/usr/local/lib/perl5/site_perl/5.8.8/mach
/usr/local/lib/perl5/site_perl/5.8.8 /usr/local/lib/perl5/site_perl
/usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 /usr/local) at
/usr/local/lib/perl5/site_perl/5.8.8/Authen/PluggableCaptcha/Render/Image/Im
ager.pm line 17.\nBEGIN failed--compilation aborted at
/usr/local/lib/perl5/site_perl/5.8.8/Authen/PluggableCaptcha/Render/Image/Im
ager.pm line 17.\nCompilation failed in require at
/usr/local/hiertec/symtrust/www/perl/admin/CaptchaTest.pl line 22.\nBEGIN
failed--compilation aborted at
/usr/local/hiertec/symtrust/www/perl/admin/CaptchaTest.pl line 22.\n

I am using Apache 2.2.4_2 and mod_perl2 2.0.3_2,3.  The Perl that triggers
this error is (specifically the last line):

use Authen::PluggableCaptcha;
use Authen::PluggableCaptcha::Challenge::TypeString;
use Authen::PluggableCaptcha::Render::Image::Imager;

Is this likely pilot error?

Thanks,
Seth Hieronymus



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


Re: HEADS UP for portmaster users: Mandatory upgrade

2007-08-05 Thread Doug Barton
Mark Kane wrote:

> Unfortunately I didn't see this before trying portmaster on a machine.

I'm sorry to hear that. :-/

> I ran portmaster -L and it said that six ports were out of date which
> sounded right since I've been working on putting the machine together
> recently and I had a recent ports tree. I ran portmaster -a and let it
> do it's thing, however afterwards there are a lot of corrupted package
> infos (pasted below). 
> 
> Only 28 of 450+ come up as corrupted however I'm not sure how to fix
> them as I've never had corrupted package data before.

For the ones where there are still files in the pkg directory,
"corrupted" usually means that the permissions are wrong on those
files. Try this:
chown -R root:wheel /var/db/pkg
find /var/db/pkg -type d -exec chmod 755 {} \;
find /var/db/pkg -type f -exec chmod 644 {} \;

That should fix you up.

> In /var/db/pkg/name on the corrupted ones, some directories are
> entirely empty (such as portmaster, intltool, ghostscript-gpl, etc
> which portmaster was trying to update) and others such as gimp and vlc
> are missing +CONTENTS files even though they weren't being updated.

For those ports I'm afraid the only way to reliably reproduce the pkg
data is to rebuild and reinstall. If you don't use too many weird
options you could probably get away with downloading the packages and
using the pkg data from those. Then the next time you use portmaster
to update those ports it will properly rebuild the pkgdep and
+REQUIRED_BY stuff.

hope this helps,

Doug

-- 

This .signature sanitized for your protection

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


new reports added to portsmon

2007-08-05 Thread Mark Linimon
These reports deal with package failures, adding together all packages
that are intentionally not made, packages that fail, and all the packages
that depend on them.

Initially I generated these as graphs via GraphViz.  However, the
resulting images are so large that they take minutes to display on a
browser such as firefox.  This is useless.

Now I have added a version of the reports in list form.  Just see the
"List of package failures (direct and indirect) by buildenv" on the charts
and graphs page: http://portsmon.freebsd.org/chartsandgraphs/index.html .
Each package that was not built is listed in the left column; the center
column gives the explanation; and the third column lists the ports, if any,
that depend on the non-built package.

If you are interested in helping to get the packages in better shape,
I think you will find these reports of help.  (I am continuing to work
on them, so the format may change.)

Note: these reports show the state of the packages as of the last full
runs.  Some errors may have been fixed in the meantime; you will need to
check the commit logs.

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