Re: building koffice

2009-11-19 Thread Cezary Morga

Dnia 2009-11-19 19:39, Chuck Robey napisał:

I looked into ports/editors, to find the port name for koffice, and found a
great number of koffice ports that *seem* to be for foreign language support (I
might be wrong, but there's nothing in the pkg-descr to say one way or another).
 My problem is, I don't really want support for all of those languages in my
koffice, I really want only American English, but I can't figure out how to
remove all of those extra languages, and how to get American English (there's
apparently no koffice_en).  Could I please get some advice on this?


Hmm... How about editors/koffice-kde3 and editors/koffice-i18n-en_GB if 
you fancy?


--
Cezary Morga
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: Which JDK port to use?

2009-08-04 Thread Cezary Morga

Steven Friedrich pisze:
I see 
diablo-jdk-1.5.0.07.01_15
and 
jdk-1.5.0.16p9_2,1


Which should I use?


Diablo can't do all the mumbo jumbo JDK can do. So, if you or your 
developers require more they can get out of Diablo go ahead and try JDK. 
Still, current JDK--or Diablo--installation is required to compile JDK.


--
Cezary Morga
Have you ever observed that we pay much more attention to a wise 
passage when it is quoted than when we read it in the original author? 
(Philip G. Hamerton)

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: net/p5-Net-Twitter broken

2009-07-31 Thread Cezary Morga

andrew clarke pisze:

I'll attempt a PR, but I'm not at all competent enough in Perl to be
confident in providing a patch.


I was not refering to patching Perl code, rather that supplying new port 
and a little modification to net/p5-Net-Twitter/Makefile in a patch 
format (diff).


I filled a PR ports/137305.


I have to wonder - why have these recent versions of this port been
committed but not tested?

If it was tested, presumably it would be flagged as BROKEN.


No. The port builds properly, it's just missing some functionality 
because of missing dependency. This is something automatic checks 
couldn't catch, and this is what a port maintainer should notice. But, 
things like this do happen.



But isn't the rationale of the Ports tree to have buildable, working
software?


Yes, that's why when you have noticed and verified that the problem 
exists you should fill in a PR. Even though you can't supply a patch to 
fix it you would let the maintainer know.


--
Cezary Morga
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: net/p5-Net-Twitter broken

2009-07-30 Thread Cezary Morga

andrew clarke pisze:

- MooseX::MultiInitArg ...missing.
*** Module::AutoInstall configuration finished.
Checking if your kit is complete...
Looks good
Warning: prerequisite MooseX::MultiInitArg 0 not found.
Writing Makefile for Net::Twitter

Is MooseX::MultiInitArg hidden somewhere in the ports tree?


Nope. It's a missing dependency (also visible here 
http://pointyhat.freebsd.org/errorlogs/i386-7-latest-logs/p5-Net-Twitter-3.03000.log).


Please, fill in a PR for this. If you can prepare a proper patch for the 
new port and modification to net/p5-Net-Twitter/Makefile that would be 
even better.


--
Cezary Morga
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: net/p5-Net-Twitter broken

2009-07-14 Thread Cezary Morga

andrew clarke pisze:

I don't think there's anything missing?  My ports tree is up-to-date.


But not neccessarily all ports are up-to-date in regard to upstream. Or, 
maybe even though all the ports are installed the Perl installer for 
given module (Net::Twitter in this case) might not be able to find them.


As it turned out later on (Philip Golluci's mail) not all ports in Ports 
Tree had been updated.



cd /usr/ports/net/p5-Net-Twitter  make clean build
cd work/Net-Twitter-3.01000  make test


Ah, I wasn't aware of the test target.  That should help.


This is Perl's ExtUtils::MakeMaker target.

--
Cezary Morga
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: [Custom LOCALBASE/PREFIX] www/p5-RT-Extension-SLA - fails: mtree

2009-07-14 Thread Cezary Morga

Matthew Seaman pisze:

I think that your patch essentially does that, but see ports/136656 where
I have a simpler solution -- just remove $PREFIX from the environment
during configuration.


I don't think removing PREFIX is a good idea. FreeBSD is supposed to 
support PREFIX for users wishing to install ports elsewhere than 
/usr/local, that's what this QAT tests 'Custom LOCALBASE/PREFIX' are about.


The problem with inc/Module/Install/RTx.pm from www/p5-RT-Extension-SLA 
is that it assumes that PREFIX is always correct:


my @prefixes = (qw(/opt /usr/local /home /usr /sw ));
my $prefix   = $ENV{PREFIX};
...
if ($prefix) {
 $RT::LocalPath = $prefix;
 $INC{'RT.pm'} = $RT::LocalPath/lib/RT.pm;
} else {

and does not even try loading the module, as

( eval { require RT; $RT::LocalPath } )

is located in else{}. Then it goes to using $RT variables

my $local_lib_path = $RT::LocalPath/lib;
...
$RT::LocalVarPath  ||= $RT::VarPath;
$RT::LocalPoPath   ||= $RT::LocalLexiconPath;
$RT::LocalHtmlPath ||= $RT::MasonComponentRoot;
$RT::LocalLibPath  ||= $RT::LocalPath/lib;

which are not set.

Removing PREFIX will skip if ($prefix) {} part and trigger else{} but 
with RT.pm installed elsewhere than locations listed in @prefixes it 
will still fail.


Not to mention the different meanings of environment variable PREFIX 
from FreeBSD ports and RT points of view. For RT PREFIX==LOCALBASE, 
which might not be true in FreeBSD world.


If you really want to fiddle with environment settings, I'd suggest no 
to remove PREFIX from the environment, but set it to RTHOME (if RTHOME 
honors LOCALBASE/PREFIX).


The problem with LOCALBASE!=PREFIX will remain unsolved either way.

--
Cezary Morga
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: [Custom LOCALBASE/PREFIX] www/p5-RT-Extension-SLA - fails: mtree

2009-07-14 Thread Cezary Morga

Matthew Seaman pisze:

You are failing to distinguish between $PREFIX set as an environment variable
and $PREFIX the make variable.


You're right :)

  PREFIX the make variable already controls what

the p5-RT-Extension ports do as variables like SITE_PERL are defined in
terms of it already.


So, if I would cd into www/p5-RT-Extension-SLA and type:

env PREFIX=/home/therek make install

would it install p5-RT-Extension-SLA and all of it's dependencies 
(including rt38) in /home/therek?


--
Cezary Morga
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: Bad INDEX-7 file ?

2009-07-13 Thread Cezary Morga

Fedor Dikarev pisze:

root:net{R}[47] ports$ cd databases/rrdtool; make describe
rrdtool-1.3.8|/usr/ports/databases/rrdtool|...


What output did you expect to receive?

I have not used `make describe` previously so I can't say whether it's 
output had been changed lately or not, but according to bsd.port.mk:


describe - Try to generate a one-line description for each port for
   use in INDEX files and the like.

And the output you get is in the same format as in INDEX file. If you 
check bsd.port.mk line 5392 you'll see it's supposed to look that way.


--
Cezary Morga
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: Bad INDEX-7 file ?

2009-07-13 Thread Cezary Morga

Fedor Dikarev pisze:

By this command I've just explained that this port has version 1.3.8
but in INDEX-7 vesion differ -- it's 1.3.7.
So INDEX file is built on old ports tree or there was some bug during
building process.


Oh, LOL. Didn't notice that :)

--
Cezary Morga
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: net/p5-Net-Twitter broken

2009-07-13 Thread Cezary Morga

andrew clarke pisze:

I've been trying to get Twirssi (http://www.twirssi.com/) running
under Irssi but am encountering an error relating to Net::Twitter.  My
Perl knowledge is very limited, so I'm not too sure what's going on.
The same error (below) occurs when I try to use this module from my
own program.  I suspect the problem is within p5-Moose but I don't
know how to confirm this.


Strange, I had no such problem as you described.
First off, I'd start from something like following an look for any 
'missing' modules, or ones that have wrong (too old) version number.


cd /usr/ports/net/p5-Net-Twitter  make clean configure

Than I'd check if it passes all tests:

cd /usr/ports/net/p5-Net-Twitter  make clean build
cd work/Net-Twitter-3.01000  make test

--
Cezary Morga
The optimist proclaims that we live in the best of all possible worlds; 
and the pessimist fears this is true. (James Branch Cabell)

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: [Custom LOCALBASE/PREFIX] www/p5-RT-Extension-SLA - fails: mtree

2009-07-13 Thread Cezary Morga

Here's your problem:

Installing /usr/wombat/lib/RT/Queue_SLA.pm

...

pkg_info: /usr/wombat/share/rt38/plugins/RT-Extension-SLA/lib/RT/Queue_SLA.pm 
doesn't exist


The port actually installs in ${PREFIX}/lib while pkg-plist expects 
files in ${PREFIX}/rt38/plugins.


It's quite the same problem as with www/p5-RTx-Statistics 
(http://lists.freebsd.org/pipermail/freebsd-perl/2009-July/002242.html).


An ugly assumption that environment variable PREFIX actually points to 
${PREFIX}/rt38. I think letting Perl figure out where RT actually is is 
a better idea.


--
Cezary Morga
The world is a tragedy to those who feel, but a comedy to those who 
think. (Horace Walpole)
--- inc/Module/Install/RTx.pm.orig  2009-04-24 21:01:47.0 +
+++ inc/Module/Install/RTx.pm   2009-07-13 20:18:23.696711396 +
@@ -34,13 +34,10 @@ sub RTx {
 unless $self-abstract;
 
 my @prefixes = (qw(/opt /usr/local /home /usr /sw ));
-my $prefix   = $ENV{PREFIX};
+my $prefix   = $ENV{LOCALBASE};
+push @prefixes, $prefix;
 @ARGV = grep { /PREFIX=(.*)/ ? ( ( $prefix = $1 ), 0 ) : 1 } @ARGV;
 
-if ($prefix) {
-$RT::LocalPath = $prefix;
-$INC{'RT.pm'} = $RT::LocalPath/lib/RT.pm;
-} else {
 local @INC = (
 @INC,
 $ENV{RTHOME} ? ( $ENV{RTHOME}, $ENV{RTHOME}/lib ) : (),
@@ -53,7 +50,6 @@ sub RTx {
 $_ = $self-prompt(Path to your RT.pm:) or exit;
 push @INC, $_, $_/rt3/lib, $_/lib/rt3, $_/lib;
 }
-}
 
 my $lib_path = File::Basename::dirname( $INC{'RT.pm'} );
 my $local_lib_path = $RT::LocalPath/lib;
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org

Re: cvs commit: ports/security/sudoscript Makefile

2009-07-09 Thread Cezary Morga

q...@freebsd.org pisze:

Excerpt from http://QAT.TecNik93.com/logs/7-STABLE-FPT-NPD/sudoscript-2.1.2.log 
:

gzip: can't stat: /usr/local/man/man8/sudoscript.8: No such file or directory
===   Registering installation for sudoscript-2.1.2

phase 7: make package
===  Building package for sudoscript-2.1.2
tar: man/man1/ss.1.gz: Cannot stat: No such file or directory
tar: man/man1/sudoshell.1.gz: Cannot stat: No such file or directory
tar: man/man3/Sudoscript.3pm.gz: Cannot stat: No such file or directory
tar: man/man8/sudoscriptd.8.gz: Cannot stat: No such file or directory
tar: man/man8/sudoscript.8.gz: Cannot stat: No such file or directory
tar: Error exit delayed from previous errors.
pkg_create: make_dist: tar command failed with code 256
Creating package /tmp/packages/All/sudoscript-2.1.2.tbz
Registering depends: perl-5.8.9_3.
Creating bzip'd tar ball in '/tmp/packages/All/sudoscript-2.1.2.tbz'
*** Error code 1


According to the log 
http://QAT.TecNik93.com/logs/7-STABLE-FPT-NPD/sudoscript-2.1.2.log the 
build ended without errors. Had someone fixed that?


BWT, the log same log says:


prefixes: LOCALBASE=usr/local X11BASE=usr/local PREFIX=/usr/local


Shouldn't it be:
LOCALBASE=/usr/local X11BASE=/usr/local PREFIX=/usr/local
(missing leading slash '/' for LOCALBASE and X11BASE)?

--
Cezary Morga
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


[Fwd: Re: ports/135939: net/p5-Net-Amazon-S3 0.51 has unresolved dependency on DateTimeX.pm]

2009-06-23 Thread Cezary Morga
Although I've added myself as a MAINTAINER for newly introduced ports, 
but I doubt I'll be using when anywhere personally, so if anyone would 
like to take over maintainership, go ahead.


--
Cezary Morga
Five exclamation marks, the sure sign of an insane mind. (Terry Pratchett)
---BeginMessage---

Attached is a patch that:
- adds a missing dependency entry in net/p5-Net-Amazon-S3/Makefile
- adds devel/p5-MooseX-Types-DateTimeX and successive dependencies:
  - devel/p5-DateTime-Format-Flexible
  - devel/p5-DateTimeX-Easy
  - devel/p5-MooseX-Types-DateTime-ButMaintained
  - devel/p5-Olson-Abbreviations

--
Cezary Morga
diff -ruN net/p5-Net-Amazon-S3.orig/Makefile net/p5-Net-Amazon-S3/Makefile
--- net/p5-Net-Amazon-S3.orig/Makefile  2009-06-02 09:14:14.404363000 +0200
+++ net/p5-Net-Amazon-S3/Makefile   2009-06-23 23:25:40.477998000 +0200
@@ -7,6 +7,7 @@
 
 PORTNAME=  Net-Amazon-S3
 PORTVERSION=   0.51
+PORTREVISION=  1
 CATEGORIES=net perl5
 MASTER_SITES=  CPAN
 PKGNAMEPREFIX= p5-
@@ -23,6 +24,7 @@

p5-LWP-UserAgent-Determined=0:${PORTSDIR}/www/p5-LWP-UserAgent-Determined \
p5-Moose=0:${PORTSDIR}/devel/p5-Moose \

p5-MooseX-StrictConstructor=0:${PORTSDIR}/devel/p5-MooseX-StrictConstructor \
+   
p5-MooseX-Types-DateTimeX=0:${PORTSDIR}/devel/p5-MooseX-Types-DateTimeX \
p5-Regexp-Common=0:${PORTSDIR}/textproc/p5-Regexp-Common \
p5-URI=0:${PORTSDIR}/net/p5-URI \
p5-XML-LibXML=0:${PORTSDIR}/textproc/p5-XML-LibXML \
diff -ruN devel/p5-DateTime-Format-Flexible.orig/Makefile 
devel/p5-DateTime-Format-Flexible/Makefile
--- devel/p5-DateTime-Format-Flexible.orig/Makefile 1970-01-01 
01:00:00.0 +0100
+++ devel/p5-DateTime-Format-Flexible/Makefile  2009-06-23 23:21:39.898522000 
+0200
@@ -0,0 +1,27 @@
+# New ports collection makefile for:   devel/p5-DateTime-Format-Flexible
+# Date created:23 Jun 2009
+# Whom:Cezary Morga c...@therek.net
+#
+# $FreeBSD$
+#
+
+PORTNAME=  DateTime-Format-Flexible
+PORTVERSION=   0.09
+CATEGORIES=devel perl5
+MASTER_SITES=  CPAN
+PKGNAMEPREFIX= p5-
+
+MAINTAINER=c...@therek.net
+COMMENT=   Flexibly parse strings and turn them into DateTime objects
+
+RUN_DEPENDS=   p5-DateTime=0:${PORTSDIR}/devel/p5-DateTime \
+   
p5-DateTime-Format-Builder=0.74:${PORTSDIR}/devel/p5-DateTime-Format-Builder \
+   p5-DateTime-TimeZone=0:${PORTSDIR}/devel/p5-DateTime-TimeZone \
+   p5-Readonly=0.06:${PORTSDIR}/devel/p5-Readonly
+BUILD_DEPENDS= ${RUN_DEPENDS}
+
+PERL_CONFIGURE=yes
+
+MAN3=  DateTime::Format::Flexible.3
+
+.include bsd.port.mk
diff -ruN devel/p5-DateTime-Format-Flexible.orig/distinfo 
devel/p5-DateTime-Format-Flexible/distinfo
--- devel/p5-DateTime-Format-Flexible.orig/distinfo 1970-01-01 
01:00:00.0 +0100
+++ devel/p5-DateTime-Format-Flexible/distinfo  2009-06-23 23:21:39.894523000 
+0200
@@ -0,0 +1,3 @@
+MD5 (DateTime-Format-Flexible-0.09.tar.gz) = e7b7c8089f3da5c3872ae97028e06390
+SHA256 (DateTime-Format-Flexible-0.09.tar.gz) = 
7b512b5a0f0c00cc95d829addd061f47f27142d39e4e3594391149f97758fc17
+SIZE (DateTime-Format-Flexible-0.09.tar.gz) = 55474
diff -ruN devel/p5-DateTime-Format-Flexible.orig/pkg-descr 
devel/p5-DateTime-Format-Flexible/pkg-descr
--- devel/p5-DateTime-Format-Flexible.orig/pkg-descr1970-01-01 
01:00:00.0 +0100
+++ devel/p5-DateTime-Format-Flexible/pkg-descr 2009-06-23 23:21:39.896522000 
+0200
@@ -0,0 +1,5 @@
+DateTime::Format::Flexible attempts to take any string you give it
+and parse it into a DateTime object. The test file tests 2500+
+variations of date/time strings.
+
+WWW: http://search.cpan.org/dist/DateTime-Format-Flexible/
diff -ruN devel/p5-DateTime-Format-Flexible.orig/pkg-plist 
devel/p5-DateTime-Format-Flexible/pkg-plist
--- devel/p5-DateTime-Format-Flexible.orig/pkg-plist1970-01-01 
01:00:00.0 +0100
+++ devel/p5-DateTime-Format-Flexible/pkg-plist 2009-06-23 23:21:39.897522000 
+0200
@@ -0,0 +1,7 @@
+%%SITE_PERL%%/DateTime/Format/Flexible.pm
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/DateTime/Format/Flexible/.packlist
+...@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/DateTime/Format/Flexible
+...@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/DateTime/Format
+...@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/DateTime
+...@dirrmtry %%SITE_PERL%%/DateTime/Format
+...@dirrmtry %%SITE_PERL%%/DateTime
diff -ruN devel/p5-DateTimeX-Easy.orig/Makefile devel/p5-DateTimeX-Easy/Makefile
--- devel/p5-DateTimeX-Easy.orig/Makefile   1970-01-01 01:00:00.0 
+0100
+++ devel/p5-DateTimeX-Easy/Makefile2009-06-23 23:21:39.971522000 +0200
@@ -0,0 +1,31 @@
+# New ports collection makefile for:   devel/p5-DateTimeX-Easy
+# Date created:23 Jun 2009
+# Whom:Cezary Morga c...@therek.net
+#
+# $FreeBSD$
+#
+
+PORTNAME

tinderbox and kse

2009-05-16 Thread Cezary Morga
Hi.

I have prepared myself a tinderbox environment recently and everything seems 
to work fine so far, except for one thing, that I can't compile 
databases/postgresql82-client without forcing threads. It croaks at:

Fatal error 'kse_create() failed
' at line 469 in file /opt/tinderbox/jails/6-
STABLE/src/lib/libpthread/thread/thr_kern.c (errno = 0)

Relevant part of work/postgresql-8.2.13/config.log in attachement.

Have anyone seen this before?

I'm running Tinderbox 3.2 on FreeBSD 8.0-CURRENT-200905.
-- 
Cezary Morga
Intelligence is the ability to avoid doing work, yet getting the work done. 
(Linus Torvalds)

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


tinderbox and kse

2009-05-16 Thread Cezary Morga
Hi.

I have prepared myself a tinderbox environment recently and everything seems 
to work fine so far, except for one thing, that I can't compile 
databases/postgresql82-client without forcing threads. It croaks at:

Fatal error 'kse_create() failed
' at line 469 in file /opt/tinderbox/jails/6-
STABLE/src/lib/libpthread/thread/thr_kern.c (errno = 0)

Relevant part of work/postgresql-8.2.13/config.log in attachement.

Have anyone seen this before?

I'm running Tinderbox 3.2 on FreeBSD 8.0-CURRENT-200905.
-- 
Cezary Morga
Intelligence is the ability to avoid doing work, yet getting the work done. 
(Linus Torvalds)


___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org

Re: tinderbox and kse

2009-05-16 Thread Cezary Morga
Dnia sobota, 16 maja 2009 o 18:42:27 Martin Wilke napisał(a):
 You need here a hook :-)

 http://marcuscom.com/pipermail/tinderbox-list/2008-March/001036.html

It did the trick. Thanks.

-- 
Cezary Morga
Would those of you in the cheaper seats clap your hands? And the rest of you, 
if you'll just rattle your jewelry. (John Lennon)

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: How do I tell what arguments were given to configure?

2009-04-06 Thread Cezary Morga
Paul Hoffman wrote:
 Greetings again. I am trying to trace down a bug that I think is happening
 in a port. I have captured the output of make, but I don't see in it what
 arguments are being given to the port's configure script. Where do I find
 that?

make -dl configure or
make -n configure
-- 
Cezary Morga
I've wrestled with reality for 35 years, Doctor, and I'm happy to state I 
finally won out over it. (Mary Chase)

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: Help needed: 8-CURRENT

2009-03-24 Thread Cezary Morga
Dnia piątek, 20 marca 2009, Cezary Morga napisał:
 Hi there.

 I've got a build problem with my net/wol port on amd64-8 (though it's
 not architecture specific, so it will most probably appear on i386 as
 well).

 I'm looking for someone running 8-CURRENT who could try building the
 port with patch that I'll supply. If anyone's willing to help, please
 contact my on priv.

 Thanks.

Thanks all for your offers and help. The patch worked and it's going to be 
comitted soon.

Again thanks!

-- 
Pozdrawiam,
Cezary Morga
But the fact that some geniuses were laughed at does not imply that all who 
are laughed at are geniuses. (Carl Sagan)

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: www / p5-HTML-Embperl

2009-03-24 Thread Cezary Morga
Well, I've been slacking a bit lately with this so this is what I've got 
so far.

It build against mod_perl2+Apache2, libxml2 and libxslt. Xalan is not 
supported.

http://therek.net/freebsd/ports/www/p5-Embperl/
-- 
Cezary Morga
If you live to be one hundred, you've got it made. Very few people die 
past that age. (George Burns)
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Help needed: 8-CURRENT

2009-03-20 Thread Cezary Morga
Hi there.

I've got a build problem with my net/wol port on amd64-8 (though it's 
not architecture specific, so it will most probably appear on i386 as 
well).

I'm looking for someone running 8-CURRENT who could try building the 
port with patch that I'll supply. If anyone's willing to help, please 
contact my on priv.

Thanks.
-- 
Cezary Morga
The nice thing about egotists is that they don't talk about other 
people. (Lucille S. Harper)
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: www / p5-HTML-Embperl

2009-03-19 Thread Cezary Morga
Given the fact that Embperl comes from the Apache project is there any point 
in enabling WITHOUT_APACHE knob? Have anyone attempted to use it with non-
Apache http servers?
-- 
Pozdrawiam,
Cezary Morga
Those who believe in telekinetics, raise my hand (Kurt Vonnegut)

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


perl-threaded

2009-03-18 Thread Cezary Morga
I've just noticed in some of the ports a dependency of 
perl-threaded-5.8.9_2 and I'm wondering how is it resolved by the port 
building system?

I've got one port that requires threaded Perl and I worked around it to 
check whether thread support is compiled and if not tell user to 
recompile Perl with threads, but maybe that's unnecessary?

-- 
Cezary Morga
We are inclined to believe those whom we do not know because they have 
never deceived us. (Samuel Johnson)
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: www / p5-HTML-Embperl

2009-03-17 Thread Cezary Morga
hideo wrote:
 Jim Pazarena (Sun 03/15/09 23:22):
  presently p5-HTML-Embperl in the ports is at 1.3.6_2 however it is
  marked as will not compile.
 
  The main website for Embperl shows a much newer stable version
  (2.2.0)
 
  Is there any way someone (more clever than myself) could get this
  newer version to compile in the ports system?
 
  I would very much appreciate it. Thanks!

 I'd be willing to take a look at it if no one else has started. 
 Looks like it's really a new port since it's now Embperl (not
 HTML::Embperl.) Might be a bit before I can get it submitted though.

I was just going to write the same thing :)

I've started working on it, but if you'd really want to do this I can 
send you what I've got so far.

-- 
Cezary Morga
I have left orders to be awakened at any time in case of national 
emergency, even if I'm in a cabinet meeting. (Ronald Reagan)
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: wxPerl

2009-03-05 Thread Cezary Morga
Dnia czwartek, 5 marca 2009, Cezary Morga napisał:
 I'm stuck at actual compilation. While manual compilation[3] (perl
 Makefile.PL; make; make install) throws lots of deprecated conversion from
 string constant to 'char*' warnings Wx seems to work properly. But
 compiling it using port system [4] is a no go. Furthermore when I run build
 command (output of make -n do-build) manually Wx compiles as well.

 Anyone got a idea why is it so?

Nevermind. It turned out that when building using ports infrastructure cc was 
used instead of c++.

-- 
Pozdrawiam,
Cezary Morga
The average, healthy, well-adjusted adult gets up at seven-thirty in the 
morning feeling just plain terrible. (Jean Kerr)

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


xine: div/xvid issues

2009-02-25 Thread Cezary Morga
Hi there.

I've got this strange problem. Out of a sudden xine can't play any 
DivX/XviD movies. It throws this on me:

video_decoder: no plugin available to handle 'DivX 5'

All I've done lately (that is today) was a libxine update from 1.1.15 to 
1.1.16.2. libxine uses ffmpeg for DivX* playback and so does mplayer, 
but mplayer have no problems with divx.

Honestly, I'm a bit stuck with it. Anyone got an idea where to look for 
the source of this problem? 

Best regards,
-- 
Cezary Morga
Middle age is when you've met so many people that every new person you 
meet reminds you of someone else. (Ogden Nash)
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: Follow up to Ports Maintainer Roundup 2009

2009-02-14 Thread Cezary Morga
Thomas Abthorpe wrote:
 Do us all proud, and show us what you are made of!

So, how about me picking up
devel/p5-Config-IniFiles
devel/p5-Config-Record
devel/p5-Config-Simple
devel/p5-Config-Std
devel/p5-ConfigReader
net/wakeonlan
net/wol
net/gspoof
?

-- 
Cezary Morga
Not a shred of evidence exists in favor of the idea that life is 
serious. (Brendan Gill)
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: firefox[2,3] will not start after recent ports upgrade

2009-01-31 Thread Cezary Morga
Alexander Konovalenko wrote:
 Hi,

 after recent port upgrade firefox2 and firefox3 do not work anymore.
 When I start any of them nothing happens, no error message or window
 appears.

Is it only Firefox or maybe other GTK2 apps are also affected?

I've run into similar problem after January 14th Gnome/GTK+ update, 
which was acutally my fault, as I haven't upgraded it properly. 
Recompiling Firefox along with the ports it depends on did the trick:

portupgrade -Rf firefox

-- 
Cezary Morga
Dreams age faster than dreamers (Stephen King)
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: Freebsd 7.2 firefox3

2009-01-30 Thread Cezary Morga
Dnia piątek, 30 stycznia 2009, Maxx napisał:
 Hello,

 I`ve got the problem with installing firefox3:

 checking for DRIGL... gnome-config: not found
 gnome-config: not found
 configure: error: Package requirements (x11 xext xxf86vm xdamage
 xfixes x11-xcb xcb-glx) were not met:

 No package 'x11-xcb' found
 No package 'xcb-glx' found

You need xcb port. I'm wondering if using portinstall -R firefox should 
do the trick. Oh, and check Jan 23th /usr/ports/UPDATING entry for 
libxcb.

-- 
Cezary Morga
There is only one difference between a madman and me. I am not mad. 
(Salvador Dali)
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org