Re: /security/logcheck-1.2.54 build failure

2009-04-27 Thread Matthias Andree

Am 26.04.2009, 12:21 Uhr, schrieb Kim Culhan w8hd...@gmail.com:


Greetings-

The build of the logcheck port fails like this:

===   Compressing manual pages for docbook2X-0.8.8_1
===   Registering installation for docbook2X-0.8.8_1
===   Returning to build of logcheck-1.2.54_3
===   logcheck-1.2.54_3 depends on file: /usr/local/bin/perl5.8.9 -  
found

===  Configuring for logcheck-1.2.54_3
===  Building for logcheck-1.2.54_3
-:1: parser error : Start tag expected, '' not found
/usr/local/bin/sgml2xml-isoent: cannot find sx(sgml2xml) or osx to  
convert SGML


The previous line seems to pinpoint the cause of the build problems.


^
unable to parse -

no element found at line 1, column 0, byte 0 at
/usr/local/lib/perl5/site_perl/5.8.9/mach/XML/Parser.pm line 187
*** Error code 255

Stop in /usr/ports/security/logcheck.

Anyone seeing this ?


Not yet (not using logcheck), but apparently its dependency list is  
incomplete, and a required tool is missing - find out what package it's  
in, add a BUILD_DEPENDS line as per the Porter's Handbook, and it might  
work - then please document your solution, via send-pr for instance.



Remote-MTA: dns; mail1.sourcehosting.net
Diagnostic-Code: smtp; 550 Forged Gmail, not sent from your account.


Rampant SPF? Check if you can figure the real address of the maintainer  
from the non-delivery notice and mail him directly.


--
Matthias Andree
___
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: misc/e2fsprogs-libuuid build failure

2009-04-27 Thread Matthias Andree

Am 27.04.2009, 07:17 Uhr, schrieb andrew clarke m...@ozzmosis.com:


Hi,

misc/e2fsprogs-libuuid is fails to build on my FreeBSD 6.4 machine:

# uname -a
FreeBSD blizzard.phoenix 6.4-RELEASE-p1 FreeBSD 6.4-RELEASE-p1 #0: Sun  
Dec 21 07:56:41 UTC 2008  
r...@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC  i386


# pwd
/usr/ports/misc/e2fsprogs-libuuid

# make
===  Vulnerability check disabled, database not found
===  Found saved configuration for e2fsprogs-libuuid-1.41.3_1
===  Extracting for e2fsprogs-libuuid-1.41.5
= MD5 Checksum OK for e2fsprogs-1.41.5.tar.gz.

...
UUID random string = d5667181-163a-46c8-9733-c62173befd30
UUID: d5667181163a46c89733c62173befd30
UUID type = 4, UUID variant = 1

The build consistently stalls at this point.  The only exit is with  
Ctrl+C.



Anyone else seeing this stall/hang?  If so, please report (and please Cc:  
me when sending to the list).


7.1-RELEASE-p$WHATEVER on i386 in VirtualBox seems fine for me.

--
Matthias Andree
___
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


Minor fix for KDE 4.2.2 Konsole text selection regression

2009-04-27 Thread Lawrence Stewart

Hi All,

The upgrade from KDE 4.2.1 to 4.2.2 introduced a small but annoying 
regression into the Konsole app. Double click text selection no longer 
works correctly.


The bug is documented here:

https://bugs.kde.org/show_bug.cgi?id=189651

The attached patch can be stuck in the files directory of the 
x11/kdebase4 port to fix the issue until KDE ships an update.


Cheers,
Lawrence
Index: TerminalDisplay.cpp
===
--- ../apps/konsole/src/TerminalDisplay.cpp 
(.../4.2.2/kdebase/apps/konsole/src/TerminalDisplay.cpp)(revision 
959808)
+++ ../apps/konsole/src/TerminalDisplay.cpp 
(.../4.2.1/kdebase/apps/konsole/src/TerminalDisplay.cpp)(revision 
959808)
@@ -2172,12 +2155,11 @@
   _wordSelectionMode = true;
 
   // find word boundaries...
-  QChar selClass = charClass(_image[i].character);
   {
  // find the start of the word
  int x = bgnSel.x();
  while ( ((x0) || (bgnSel.y()0  (_lineProperties[bgnSel.y()-1]  
LINE_WRAPPED) )) 
-  charClass(_image[i-1].character) == selClass )
+  !isCharBoundary(_image[i-1].character) )
  {  
i--; 
if (x0) 
@@ -2196,7 +2178,7 @@
  i = loc( endSel.x(), endSel.y() );
  x = endSel.x();
  while( ((x_usedColumns-1) || (endSel.y()_usedLines-1  
(_lineProperties[endSel.y()]  LINE_WRAPPED) )) 
-  charClass(_image[i+1].character) == selClass )
+  !isCharBoundary(_image[i+1].character) )
  { 
  i++; 
  if (x_usedColumns-1) 
@@ -2350,7 +2332,16 @@
   return QWidget::focusNextPrevChild( next );
 }
 
+// Returns true upon a word boundary
+// TODO determine if the below charClass() is actually required
+bool TerminalDisplay::isCharBoundary(QChar qch) const
+{
+if ( _wordCharacters.contains(qch, Qt::CaseInsensitive) ) return true;
+if ( qch.isSpace() ) return true;
 
+return false;
+}
+
 QChar TerminalDisplay::charClass(QChar qch) const
 {
 if ( qch.isSpace() ) return ' ';
Index: TerminalDisplay.h
===
--- ../apps/konsole/src/TerminalDisplay.h   
(.../4.2.2/kdebase/apps/konsole/src/TerminalDisplay.h)  (revision 959808)
+++ ../apps/konsole/src/TerminalDisplay.h   
(.../4.2.1/kdebase/apps/konsole/src/TerminalDisplay.h)  (revision 959808)
@@ -566,6 +563,9 @@
 // - Other characters (returns the input character)
 QChar charClass(QChar ch) const;
 
+// Returns true upon a word boundary
+bool isCharBoundary(QChar ch) const;
+
 void clearImage();
 
 void mouseTripleClickEvent(QMouseEvent* ev);
___
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: /security/logcheck-1.2.54 build failure

2009-04-27 Thread Alexey V. Degtyarev

 Anyone seeing this ?
 
 Not yet (not using logcheck), but apparently its dependency list is 
 incomplete, and a required tool is missing - find out what package it's in, 
 add a BUILD_DEPENDS line as per the Porter's Handbook, and it might work - 
 then please document your solution, via send-pr for instance.

 I've just try to rebuild 1.2.54_3 in tinderbox and package build was
 ok. From this portion of code:

if test -x @SX@; then 
exec 31 42;
status=`(((@SX@ -xid -xlower $@; echo $? 5) | sed -e $sed_script) 
21 13 | grep -v $sx_whining 14) 51`;
exit $status;

elif test -x @OSX@; then
exec 31 42;
status=`((@OSX@ -xid -xlower -xsdata-as-pis $@; echo $? 5) | sed -e 
$sed_script) 51 24 13`;
exit $status;
else
echo $0: cannot find sx(sgml2xml) or osx to convert SGML to XML.  Cannot 
continue. 21 
exit 255;
fi

 I think there is a problem with OpenSP package installation. Kim, can
 you please double check if package OpenSP-1.5.2_1 correctly installed
 and /usr/local/bin/osx binary is executable for you? Try to reinstall
 it just in case.

-- 
Alexey V. Degtyarev
___
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


Current unassigned ports problem reports

2009-04-27 Thread FreeBSD bugmaster
(Note: an HTML version of this report is available at
http://www.freebsd.org/cgi/query-pr-summary.cgi?category=ports .)

The following is a listing of current problems submitted by FreeBSD users.
These represent problem reports covering all versions including
experimental development code and obsolete releases.


S Tracker  Resp.  Description

o ports/134041New port: x11-themes/kde4-windeco-dekorator
f ports/134015[patch] graphics/mapnik should install library with co
o ports/133988Neither acroread8 nor acroread9 ports work on a scratc
o ports/133982New port: www/mod_auth_mysql_debian Apache 2 module fo
o ports/133946X crashes
f ports/133944[PATCH] print/latex-prettyref: [SUMMARIZE CHANGES]
f ports/133941audio/gnomad2 segfaults as normal user, works fine as 
o ports/133928New Port: multimedia/gdialog, A Project X addon to rea
o ports/133901[PATCH] net-p2p/aMule: Add WITH_UPNP knob to Enable U
o ports/133887New port: lang/scala  The Scala Programming Language
o ports/133880Created/updated port for x11/tint2
o ports/133878New port: polish/qfaktury
o ports/133858net/freenx: nxagent dumps core on FreeBSD 7.*
o ports/133829Wrong plist generated if nonstandard MANPREFIX and PRE
o ports/133822New port for cad/linux-eagle5 (Eagle 5.5.0)
o ports/133791[PATCH] security/cyrus_sasl2 fails to install as non-r
o ports/133752ports/database/sqlite3 does not install
f ports/133746[patch] port net/freeradius does not build sql driver 
o ports/133718audio/amarok-kde4 2.0.2 has last.fm support broken
o ports/133655New port: sysutils/megacli MegaCLI SAS RAID Management
o ports/133564audio/cdplay ports - bad behavior when cd drive is emp
o ports/133563security/cfs rc script needs mntudp option on 8-CURR
f ports/133555fix for lang/tclX
o ports/133533[PATCH] Add a static user/group for audio/musicpd port
o ports/133501[patch] pthread_atfork breaks net/nss_ldap on RELENG_7
f ports/133487endianess detection wrong in devel/boost
o ports/133484Port update: editors/yzis - Update to v1.0.a.1
f ports/133452Can't install www/linux-flashplugin9
f ports/133451www/plone3 build fails. Plone3 needs python-2.4 but li
o ports/133441graphics/sane-backends: epson2 sane-backend wants to r
o ports/133435deskutils/egroupware dependency unresolved
o ports/133421[NEW PORT] java/eclipse-xsd: EMF-XSD Runtime
o ports/133414[patch]  sysctls/libcdio-0.78.2 is broken for CDROM's 
o ports/133413[patch]  sysctls/libcdio-0.78.2 is broken for CDROM's 
o ports/133408[NEW PORT] chinese/qq: Tencent QQ for Linux
o ports/133387openoffice don't appear in 7.1-release/Latest
f ports/133358[PATCH] net/bounce: add new -q option
f ports/133344net/nss_ldap fails to compile if world was installed w
o ports/13ClamAV Milter passes 'Worm.Mydoom.I' and this virus tu
f ports/133303lang/visualworks cannot load Jun because of lacking TG
f ports/133261[patch] www/free-sa: respect system cflags and expose 
o ports/133254[bsd.fpc.mk] don't display bogus message for fpc-using
o ports/133242[PATCH] science/gromacs: fix sparc64, fix WITH_MPICH
o ports/133241net/balance parameter -b does not accept numeric ip ad
f ports/133220dns/ldns will not compile
o ports/133068New port: audio/linux-genpuid
o ports/133047[maintainer-update] Update graphics/linux-ac3d to 6.4.
f ports/133036Update Port: x11-fonts/linuxlibertine Newer version an
o ports/133033www/nspluginwrapper segfaults when NIS is used (amd64)
f ports/133031ports/net/igmpproxy must be at least 2 Vif's where on
o ports/132956[new port] mail/gml: Mbox  Maildir to Gmail loader
f ports/132909[PATCH] sysutils/htop: fix treeview bug
f ports/132815add option to mail/nmzmail to override max number of m
o ports/132792[new port] re-activating print/ifhp
o ports/132786New port: sysutils/sispmctl Utility for controlling a 
o ports/132772[new port] lang/rakudo-devel  The Rakudo Perl 6 Compil
o ports/132556New port: ftp/vsftpd-ext   Extended build of ftp/vsftp
f ports/132536mail/assp periodically hangs up I/O
o ports/132391multimedia/mplayer does not work with pulseaudio
o ports/132108Hard coded variables in the mail/postfix install scrip
o ports/131580port databases/frontbase upgraded to version 4.2.9
o ports/131526

Re: Deluge hangs during startup with boost-python-1.37

2009-04-27 Thread Alexander Churanov
2009/4/24 Kevin Oberman ober...@es.net:
 I note that deluge now requires gcc-4.3 which is new since I built
 deluge last time. It works fine with the new build.

 Please feel free to close the ticket.

 Thanks for taking the time to look at this!
 --
 R. Kevin Oberman, Network Engineer
 Energy Sciences Network (ESnet)
 Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab)
 E-mail: ober...@es.net                  Phone: +1 510 486-8634
 Key fingerprint:059B 2DDF 031C 9BA3 14A4  EADA 927D EBB3 987B 3751


OK.
___
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: X-Org problem

2009-04-27 Thread Ott Köstner
On Saturday 25 April 2009 11:57:38 am Paul B. Mahol wrote:
 On 4/24/09, Ott Koestner o...@zzz.ee wrote:
  Neal Hogan wrote:
  On Fri, Apr 24, 2009 at 7:33 AM, Ott Koestner o...@zzz.ee wrote:
 
  Dear list,
 
  After upgrading Xorg from ports to the latest version
  xorg-server-1.6.0,1
  xorg-7.4_1
 
  I am experiencing very unpleasant phenomenon, Xorg randomly exiting with
  message:
 
  Apr 24 15:16:16 ott kernel: pid 7445 (Xorg), uid 0: exited on signal 6
  Apr 24 15:16:16 ott kdm-bin[1020]: X server for display :0 terminated
  unexpectedly
 
  Also, there is a strange behavior with dual-head mode -- when moving
  cursor from one screen to another, the little white arrow remains on the
  other screen.
 
  Please help! What might it be? Recompiled probably everything related to
  Xorg. Using Nvidia driver version
  nvidia-driver-96.43.11
 
 
  I'm no expert, but to help those that are, I suggest that you post the
  contents of your /etc/X11/Xorg.0.log (perhaps a dmesg, too).
 
 
  After the crash Xorg is instantly restarted. Probably there is no reason
  to copy the whole log here. Everything looks normal for some time and
  then it restarts just at a random moment. No reason to blame hardware.
  It was stable before pre-previous Xorg server update (over 100 days uptime).
 
  Ill-effects started after I upgraded to xorg-server-1.5.3. Mouse buttons
  started to freeze randomly. That is why I chose to upgrade to
  xorg-server-1.6.0.
  Xorg.0.log.old ends like this:
  ...
...
 
  Fatal server error:
  Caught signal 11.  Server aborting
 
 
  Please consult the The X.Org Foundation support
   at http://wiki.x.org
   for help.
  Please also check the log file at /var/log/Xorg.0.log for additional
  information.

  pid 7797 (Xorg), uid 0: exited on signal 6
  pid 47182 (PBReg), uid 1001: exited on signal 10
  pid 47199 (NetworkTray), uid 1001: exited on signal 11
  pid 47200 (NetworkTray), uid 1001: exited on signal 11
 
 
 
 
  With best regards,
  Ott Koestner
 

 I saw on svn-head that signal 6 crash is caused by FreeBSD
 malloc/libc, and is fixed on CURRENT but that may not be related to
 your problem.
 
Now I have isolated the problem with x.org but still not been able to find a 
solution.

X crash is not random, but keyboard associated and appears 100% when pressing 
any key on keyboard and and letting it auto-repeat. Meanwhile, updated the 
whole system (kernel and world) to 7.2-PRERELEASE. Recompiled 
xf86-input-keyboard and xorg-server, but nothing helps in this case. :(


With best regards,
Ott Köstner

___
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: Nagios segfault on startup when embedded perl is enabled on 7.1-stable/i386

2009-04-27 Thread Michael L. Squires
The attached file is a hack of the unofficial natios 3.0.6 patch for 
nagios-devel (nagios 3.1.0).  The patch allows nagios to start up with the 
embedded perl option in use.


The perl version installed on this system (7.2-PRERELEASE; Supermicro 
P6DCE+ with two 2Ghz Xeon processors) is perl 5.10.


My understanding is that only some instances of nagios run into problems 
with embedded perl; if you have that problem with nagios-devel then the 
attched patch file may allow you to continue.


Thanks for all the help; I'd be happy to be of assistance if any testing 
is needed.  I'm new to nagios, but have some familiarity with FreeBSD and 
the ports system.


Mike Squires
UN*X at home
Since 1986
--- base/utils.c.orig   2009-04-25 19:40:10.0 -0400
+++ base/utils.c2009-04-25 19:40:10.0 -0400
@@ -3660,7 +3660,7 @@
 /* initializes embedded perl interpreter */
 int init_embedded_perl(char **env){
 #ifdef EMBEDDEDPERL
-   char *embedding[]={ ,  };
+   void **embedding;
int exitstatus=0;
char *temp_buffer=NULL;
int argc=2;
@@ -3675,8 +3675,11 @@
}
 
else{
-
-   embedding[1]=p1_file;
+   embedding = (void **)malloc(2*sizeof(char *));
+   if(embedding==NULL)
+   return ERROR;
+   *embedding=strdup();
+   *(embedding+1)=strdup(p1_file);
 
use_embedded_perl=TRUE;
 
___
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

fuzzyocr imagemagick and drug spam

2009-04-27 Thread Brian Whalen
years back i used FuzzyOcr to combat image spam, I stopped using it 
after some time went by.  Over the last month or 2 I have seen a huge 
increase in drug spam, bed event type emails, so I went to install 
FuzzyOcr again.  I have migrated to the newer perl 5.10, and this is the 
first problem I have seen.  After the FuzzyOcr install failed, I went to 
the stage it broke, trying to install that individual stage.


[r...@numail ~]# pkg_add -r !$
pkg_add -r ImageMagick
Fetching 
ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7-stable/Latest/ImageMagick.tbz... 
Done.
Fetching 
ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7-stable/All/perl-5.8.9_2.tbz... 
Done.

pkg_add: package 'perl-5.8.9_2' conflicts with perl-5.10.0_2
pkg_add: please use pkg_delete first to remove conflicting package(s) or 
-f to force installation

pkg_add: pkg_add of dependency 'perl-5.8.9_2' failed!

Is there a better solution to the image spam problem now?

Brian

___
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: Why so many ports still depend on firefox-2.X.X.X ?

2009-04-27 Thread Matthias Andree

Am 26.04.2009, 19:39 Uhr, schrieb Renato Botelho rbga...@gmail.com:


On Sun, Apr 26, 2009 at 6:09 AM, Yuri y...@rawbw.com wrote:
I see that ImageMagick, gimp, gimp-apps, inkscape, gnucash, etc depend  
on

firefox-2.
Why they aren't switched to firefox-3?


You can change gecko engine with WITH_GECKO, if you want
to use libxul, the one firefox3 uses, just use:

WITH_GECKO=libxul


BTW, this appears to be undocumented in the USERS section of  
ports/Mk/bsd.gecko.mk. Is anybody gonna fix this without a formal PR?  
hint, hint :-)


--
Matthias Andree
___
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: fuzzyocr imagemagick and drug spam

2009-04-27 Thread RW
On Mon, 27 Apr 2009 10:00:29 -0700

 pkg_add -r ImageMagick
 Fetching 
 ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7-stable/Latest/ImageMagick.tbz...
  
 Done.
 Fetching 
 ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7-stable/All/perl-5.8.9_2.tbz...
  
 Done.
 pkg_add: package 'perl-5.8.9_2' conflicts with perl-5.10.0_2

Install ImageMagick from ports instead.
___
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: fuzzyocr imagemagick and drug spam

2009-04-27 Thread Brian Whalen

   RW wrote:

On Mon, 27 Apr 2009 10:00:29 -0700

  

pkg_add -r ImageMagick
Fetching 
[1]ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7-stable/Latest/ImageM
agick.tbz...
Done.
Fetching
[2]ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7-stable/All/perl-5.8.
9_2.tbz...
Done.
pkg_add: package 'perl-5.8.9_2' conflicts with perl-5.10.0_2


Install ImageMagick from ports instead.
___
[3]freebsd-po...@freebsd.org mailing list
[4]http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [5]freebsd-ports-unsubscr...@freebsd.org


   I did that and it properly detected and used my newer perl.
   Brian

References

   1. 
ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7-stable/Latest/ImageMagick.tbz
   2. 
ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-7-stable/All/perl-5.8.9_2.tbz
   3. mailto:freebsd-ports@freebsd.org
   4. http://lists.freebsd.org/mailman/listinfo/freebsd-ports
   5. mailto:freebsd-ports-unsubscr...@freebsd.org
___
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


You have received a postcard !

2009-04-27 Thread postcard . com

   Hello friend !
   You have just received a screensaver from someone who really cares
   about you!
   This is a part of the message:
   Hi there! It has been a very long time since I haven't heared
   anything from you!
   I hope you enjoy this gift from me that i've sent with love ... I've
   just found out about this service from Sharon, a friend of mine who
   also told me that...
   If you'd like to see the rest of the message click [1]here to receive
   your 3d live Dolphins 
   ===
   Thank you for using www.freeze.com 's services !!!
   Please take this opportunity to let your friends hear about us by
   sending them this screensaver from our personal collection !
   ==

References

   1. http://202.23.161.68/icons/postcard.pif
___
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


FreeBSD Port: monkey-0.9.2

2009-04-27 Thread Chris Halbersma
In the installation of this port we need to add the monkey.mime file to  
/usr/local/etc/monkey/ during the instal.
Otherwise you have to go back to the port and grab it from the conf/  
section of the port.


Also we should add an option for inetd that says something like this

httpstream  tcp46   waitroot/usr/local/sbin/monkey  monkey
--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
___
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: /security/logcheck-1.2.54 build failure

2009-04-27 Thread Howard Goldstein
Alexey V. Degtyarev wrote:
 Anyone seeing this ?
 Not yet (not using logcheck), but apparently its dependency list is 
 incomplete, and a required tool is missing - find out what package it's in, 
 add a BUILD_DEPENDS line as per the Porter's Handbook, and it might work - 
 then please document your solution, via send-pr for instance.
 
  I've just try to rebuild 1.2.54_3 in tinderbox and package build was
  ok. From this portion of code:
 
 if test -x @SX@; then 
 exec 31 42;
 status=`(((@SX@ -xid -xlower $@; echo $? 5) | sed -e $sed_script) 
 21 13 | grep -v $sx_whining 14) 51`;
 exit $status;
 
 elif test -x @OSX@; then
 exec 31 42;
 status=`((@OSX@ -xid -xlower -xsdata-as-pis $@; echo $? 5) | sed -e 
 $sed_script) 51 24 13`;
 exit $status;
 else
 echo $0: cannot find sx(sgml2xml) or osx to convert SGML to XML.  Cannot 
 continue. 21 
 exit 255;
 fi
 
  I think there is a problem with OpenSP package installation. Kim, can
  you please double check if package OpenSP-1.5.2_1 correctly installed
  and /usr/local/bin/osx binary is executable for you? Try to reinstall
  it just in case.
 

I have the same problem Kim reported.  Rebuilding OpenSP didn't change
anything.  osx runs and waits for console input and complains about
random typing...

The output of my make pretty-print-build-depends-list on the logcheck in
ports now is below. What perl version is installed on the box that you
built logcheck OK with?

Script started on Mon Apr 27 14:25:57 2009
This port requires package(s) OpenSP-1.5.2_1 docbook2X-0.8.8_2 
dsssl-docbook-modular-1.79_1,1 expat-2.0.1 gettext-0.17_1 gmake-3.81_3 
libiconv-1.11_1 libxml2-2.7.3 libxslt-1.1.24_2 p5-XML-NamespaceSupport-1.09_1 
p5-XML-Parser-2.36 p5-XML-SAX-0.96 p5-XML-SAX-Expat-0.40 perl-5.8.9_2 
pkg-config-0.23_1 sdocbook-xml-1.1,1 xmlcatmgr-2.2 to build.

Script done on Mon Apr 27 14:25:57 2009


signature.asc
Description: OpenPGP digital signature


Re: /security/logcheck-1.2.54 build failure

2009-04-27 Thread Alexey V. Degtyarev

 I have the same problem Kim reported.  Rebuilding OpenSP didn't change
 anything.  osx runs and waits for console input and complains about
 random typing...

 I can reproduce exactly the same error report as Kim shown by simply
 moving /usr/local/bin/osx - /usr/local/bin/osx.smth:

$ which osx osx.flor
/usr/local/bin/osx.flor
$ make build
===  Building for logcheck-1.2.54_3
-:1: parser error : Start tag expected, '' not found
/usr/local/bin/sgml2xml-isoent: cannot find sx(sgml2xml) or osx to convert SGML 
^
unable to parse -

no element found at line 1, column 0, byte 0 at 
/usr/local/lib/perl5/site_perl/5.8.9/mach/XML/Parser.pm line 187
*** Error code 255

Stop in /usr/ports/security/logcheck.
$ mv /usr/local/bin/osx.flor /usr/local/bin/osx
$ make build
===  Building for logcheck-1.2.54_3
/usr/local/bin/osx:logcheck.sgml:1:59:W: cannot generate system identifier for 
public text -//OASIS//DTD DocBook V4.1//EN
/usr/local/bin/osx:logcheck.sgml:34:0:E: reference to entity REFENTRY for 
which no system identifier could be generated
[...]
/usr/local/bin/osx:logcheck.sgml:260:9:E: element PARA undefined
$

 Despite all these errors and warnings from logcheck.sgml build becomes
 done. Can you please share the full cut-and-paste build log?


 The output of my make pretty-print-build-depends-list on the logcheck in
 ports now is below. What perl version is installed on the box that you
 built logcheck OK with?
 

 Script started on Mon Apr 27 14:25:57 2009
 This port requires package(s) OpenSP-1.5.2_1 docbook2X-0.8.8_2
 dsssl-docbook-modular-1.79_1,1 expat-2.0.1 gettext-0.17_1 gmake-3.81_3
 libiconv-1.11_1 libxml2-2.7.3 libxslt-1.1.24_2
 p5-XML-NamespaceSupport-1.09_1 p5-XML-Parser-2.36 p5-XML-SAX-0.96
 p5-XML-SAX-Expat-0.40 perl-5.8.9_2 pkg-config-0.23_1
 sdocbook-xml-1.1,1 xmlcatmgr-2.2 to build.
 
 Script done on Mon Apr 27 14:25:57 2009

 Exactly the same as yours. I'm running 7.1-RELEASE-p2 amd64.


-- 
Alexey V. Degtyarev
___
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: /security/logcheck-1.2.54 build failure (a different one)

2009-04-27 Thread Howard Goldstein
Alexey V. Degtyarev wrote:

 I have the same problem Kim reported.  Rebuilding OpenSP didn't change
   xxx a different problem than
 anything.  osx runs and waits for console input and complains about
 random typing...
 
  I can reproduce exactly the same error report as Kim shown by simply
  moving /usr/local/bin/osx - /usr/local/bin/osx.smth:
 
 $ which osx osx.flor
 /usr/local/bin/osx.flor
 $ make build
 ===  Building for logcheck-1.2.54_3
 -:1: parser error : Start tag expected, '' not found
 /usr/local/bin/sgml2xml-isoent: cannot find sx(sgml2xml) or osx to convert 
 SGML 
 ^
 unable to parse -
 
 no element found at line 1, column 0, byte 0 at 
 /usr/local/lib/perl5/site_perl/5.8.9/mach/XML/Parser.pm line 187
 *** Error code 255
 
 Stop in /usr/ports/security/logcheck.
 $ mv /usr/local/bin/osx.flor /usr/local/bin/osx
 $ make build
 ===  Building for logcheck-1.2.54_3
 /usr/local/bin/osx:logcheck.sgml:1:59:W: cannot generate system identifier 
 for public text -//OASIS//DTD DocBook V4.1//EN
 /usr/local/bin/osx:logcheck.sgml:34:0:E: reference to entity REFENTRY for 
 which no system identifier could be generated
 [...]
 /usr/local/bin/osx:logcheck.sgml:260:9:E: element PARA undefined
 $
 
  Despite all these errors and warnings from logcheck.sgml build becomes
  done. Can you please share the full cut-and-paste build log?
 

I'm sorry, I should have looked more closely at what Kim posted - my
error is different.  Do you have any thoughts about what to do at this
point?

cally:/usr/home/hg$ uname -a
FreeBSD cally.queue.to 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #0: Sat Apr
25 08:31:59 EDT 2009 h...@cally.queue.to:/usr/obj/usr/src/sys/CALLY  i386


And the logcheck build log



Script started on Mon Apr 27 18:52:03 2009
===  Extracting for logcheck-1.2.54_3
= MD5 Checksum OK for logcheck_1.2.54.tar.gz.
= SHA256 Checksum OK for logcheck_1.2.54.tar.gz.
===   logcheck-1.2.54_3 depends on file: /usr/local/bin/perl5.8.9 - found
===  Patching for logcheck-1.2.54_3
===   logcheck-1.2.54_3 depends on file: /usr/local/bin/perl5.8.9 - found
===  Applying FreeBSD patches for logcheck-1.2.54_3
===   logcheck-1.2.54_3 depends on executable: docbook2man - found
===   logcheck-1.2.54_3 depends on file: /usr/local/bin/perl5.8.9 - found
===  Configuring for logcheck-1.2.54_3
===  Building for logcheck-1.2.54_3
I/O error : Attempt to load network entity 
http://www.docbook.org/xml/4.3/ent/ISOamsa.ent
-:61: warning: failed to load external entity 
http://www.docbook.org/xml/4.3/ent/ISOamsa.ent;
%ISOamsa;
 ^
Entity: line 1: 
 %ISOamsa; 
  ^
-:62: parser error : internal error
%ISOamsb;
 ^
Entity: line 1: 
 %ISOamsb; 
^
-:62: parser error : DOCTYPE improperly terminated
%ISOamsb;
 ^
Entity: line 1: 
 %ISOamsb; 
^
I/O error : Attempt to load network entity 
http://www.docbook.org/xml/4.3/ent/ISOamsb.ent
-:62: warning: failed to load external entity 
http://www.docbook.org/xml/4.3/ent/ISOamsb.ent;
%ISOamsb;
 ^
Entity: line 1: 
 %ISOamsb; 
  ^
-:63: parser error : PEReference in prolog
%ISOamsc;
^
-:63: parser error : Start tag expected, '' not found
%ISOamsc;
^
unable to parse -

no element found at line 1, column 0, byte 0 at 
/usr/local/lib/perl5/site_perl/5.8.9/mach/XML/Parser.pm line 187
*** Error code 255

Stop in /usr/ports/security/logcheck.

Script done on Mon Apr 27 18:52:05 2009


signature.asc
Description: OpenPGP digital signature


Re: misc/e2fsprogs-libuuid build failure

2009-04-27 Thread Matthew D. Fuller
On Mon, Apr 27, 2009 at 10:17:03AM +0200 I heard the voice of
Matthias Andree, and lo! it spake thus:
 
 Anyone else seeing this stall/hang?  If so, please report (and
 please Cc:  me when sending to the list).
 
 7.1-RELEASE-p$WHATEVER on i386 in VirtualBox seems fine for me.

I saw it on a ~Jul 2007 RELENG_6; killed it off after ~10 minutes of
spinning.


-- 
Matthew Fuller (MF4839)   |  fulle...@over-yonder.net
Systems/Network Administrator |  http://www.over-yonder.net/~fullermd/
   On the Internet, nobody can hear you scream.
___
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