Re: ssl=base

2018-11-25 Thread Sergio de Almeida Lenzi
I had this problem in the past, the solution I found was to build a
"port"  of libfetch using /usr/src/lib/libfetch  link libfetchagainst
security/openssl and than net/mpd5 against the libfetch in
/usr/local/lib
It was some time ago..

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


Re: Dropping maintainership, finally the Politically correctness hit the FreeBSD team

2018-02-22 Thread Sergio de Almeida Lenzi
Em Qui, 2018-02-22 às 13:55 +0100, Tobias Kortkamp escreveu:
> On Thu, Feb 22, 2018, at 11:12, Oleg Ginzburg wrote:
> > Hello,
> > 
> > I stop participating in FreeBSD project because of such stupid things as
> > https://www.freebsd.org/internal/code-of-conduct.html

Dont  you realize that PC kills innovation???  HIGH IQ people are NOT PC.


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


some fix needed still

2017-12-20 Thread Sergio de Almeida Lenzi
Version portmaster-3.17.11_9
when you are in the port directory, the portmaster build wrong path
/usr/ports/ports instead of /usr/ports
=



[root@VMS /usr/ports/x11-themes/kf5-oxygen-icons5]# portmaster 

===>>> No /usr/ports/ports/Mk exists, and no information
===>>> about ports/Mk can be found in /usr/ports/MOVED

===>>> No valid installed port, or port directory given
===>>> Try portmaster --help

[root@VMS /usr/ports/x11-themes/kf5-oxygen-icons5]# 

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


Re: cups, and hplip too, fail to recognize printer when I try to print

2015-06-08 Thread sergio de Almeida Lenzi
I am very satisfyed with an EPSON L355
it prints fast, and at very cheap  $/page...

about US$40 for 5000 pages color in CYMK...

I use a driver ESC/P-R in FreeBSD10 
the printer shows as /dev/ulpt0 
I defined it in cups, using the driver PPD.

I compiled the driver from the epson website
and woks  at once...

I built a port  if someone is interested in
I have binaries for 32 and 64 bits


___
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


Webcam not working

2015-05-20 Thread sergio de Almeida Lenzi
For me the solution is in the PR
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194345

an explanation is there and a patch that solved for me...


___
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


Mono does not build on freeBSD 10.1 (i386)

2015-05-19 Thread sergio de Almeida Lenzi
Hello I try to build mono on freeBSD 10.1 (i386) in the
ports, mono version 4.0.1.28 
it stops the build with the message that cannot execute mcs

if I try to execute mcs (from the wrapper)

/usr/ports/lang/mono]# work/mono-4.0.1/runtime/_tmpinst/bin/mcs

result in errorn (cannot find mscorlib.dll)

The assembly mscorlib.dll was not found or could not be loaded.
It should have been installed in the
`/usr/local/lib/mono/4.5/mscorlib.dll' directory.

there exists... 
find work -name mscorlib.dll
work/mono-4.0.1/mcs/class/lib/monolite/mscorlib.dll
work/mono-4.0.1/external/binary-reference-assemblies/v4.0/mscorlib.dll
work/mono-4.0.1/external/binary-reference-assemblies/v2.0/mscorlib.dll

But does not build version 4.5 of mscorlib.dll





   2502 cp mono-wrapper _tmpinst/bin/mono
   2503 echo '#! /bin/sh'  _tmpinst/bin/ilasm ; \
   2504 r=`pwd`; m=`cd /usr/ports/lang/mono/work/mono-4.0.1/mcs  pwd`;
\
   2505 echo 'exec '$r/_tmpinst/bin/mono' '$m/ilasm/ilasm.exe'
$@'  _tmpinst/bin/ilasm ; \
   2506 chmod +x _tmpinst/bin/ilasm
   2507 echo '#! /bin/sh'  _tmpinst/bin/mcs ; \
   2508 r=`pwd`; m=`cd /usr/ports/lang/mono/work/mono-4.0.1/mcs  pwd`;
\
   2509 echo 'exec '$r/_tmpinst/bin/mono'
'$m/class/lib/build/mcs.exe' $@'  _tmpinst/bin/mcs ; \
   2510 chmod +x _tmpinst/bin/mcs
   2511 echo '#! /bin/sh'  _tmpinst/bin/dmcs ; \
   2512 r=`pwd`; m=`cd /usr/ports/lang/mono/work/mono-4.0.1/mcs  pwd`;
\
   2513 echo 'exec '$r/_tmpinst/bin/mono'
'$m/class/lib/build/mcs.exe -sdk:4' $@'  _tmpinst/bin/dmcs ; \
   2514 chmod +x _tmpinst/bin/dmcs
   2515 echo '#! /bin/sh'  _tmpinst/bin/al2 ; \
   2516 r=`pwd`; m=`cd /usr/ports/lang/mono/work/mono-4.0.1/mcs  pwd`;
\
   2517 echo 'exec '$r/_tmpinst/bin/mono'
'$m/class/lib/net_2_0/al.exe' $@'  _tmpinst/bin/al2 ; \
   2518 chmod +x _tmpinst/bin/al2
   2519 echo '#! /bin/sh'  _tmpinst/bin/al ; \
   2520 r=`pwd`; m=`cd /usr/ports/lang/mono/work/mono-4.0.1/mcs  pwd`;
\
   2521 echo 'exec '$r/_tmpinst/bin/mono'
'$m/class/lib/net_4_5/al.exe' $@'  _tmpinst/bin/al ; \
   2522 chmod +x _tmpinst/bin/al
   2523 if test -w /usr/ports/lang/mono/work/mono-4.0.1/mcs; then :;
else chmod -R +w /usr/ports/lang/mono/work/mono-4.0
.1/mcs; fi
   2524 cd /usr/ports/lang/mono/work/mono-4.0.1/mcs  gmake
--no-print-directory -s NO_DIR_CHECK=1 PROFILES='binary_ref
erence_assemblies net_4_5 xbuild_12 xbuild_14   ' CC='cc' all-profiles
   2525 mkdir -p -- build/deps
   2526 gmake[7]: mcs: Command not found
   2527 build/profiles/basic.make:93: recipe for target
'build/deps/basic-profile-check.exe' failed
   2528 gmake[7]: *** [build/deps/basic-profile-check.exe] Error 127
   2529 *** The compiler 'mcs' doesn't appear to be usable.

___
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


xephyr does not build after last xorg-server update

2015-05-19 Thread sergio de Almeida Lenzi
The build does not enter in the xephyr makefile located at
${WRKSRC}/hw/kdrive/ephyr
and in this directory the Makefile.in are missing libs from
x11 ...pkg-config --libs x11 gl xv xext


___
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: Cannot build latest Chromium, Here builds and works

2015-04-28 Thread sergio de Almeida Lenzi
Here it builds...
---
FreeBSD freebsd10.lenzicasa 10.1-STABLE FreeBSD 10.1-STABLE #40
r282049M: Sun Apr 26 23:17:30 BRT 2015 amd64
---
portmaster www/chomium returns=== 
Upgrade of chromium-40.0.2214.115_1 to chromium-42.0.2311.90
---

No need to patch, just the portmaster command


System have been built aroung mate (http://www.mate.org) version 1.8.1

Just works...
___
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


dvdstyler does not work on making dvd

2014-10-23 Thread sergio de Almeida Lenzi
it does not build thumbnails in the menus when te buttom is a video mpeg

That happens because dvdstyler is linked against wxsvg3.0 and wx-3.0
that needs a fix in dvdstyler


If dvdstyle is buit with wxsvg and wxgtk, everythig works..

I am submitting a PR.. 
___
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


libxul is still broken

2014-10-21 Thread sergio de Almeida Lenzi
Hello,


Does anybody have an idea how to compile libxul (it is marked broken)..


Thanks for any help
___
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


inkscape does not build on 10 stable after ImageMagick update

2014-06-18 Thread Sergio de Almeida Lenzi
it does not links

If I deinstall Inkscape  remove the dependency, it works...




  AR 2geom/lib2geom.a
  CXXLD  inkscape
  CXXLD  inkview
libinkscape.a(imagemagick.o): In function
`Inkscape::Extension::Internal::Bitmap::ImageMagickDocCache::readImage(char 
const*, Magick::Image*)':
extension/internal/bitmap/imagemagick.cpp:(.text+0x30f): undefined
reference to `Magick::Blob::base64(std::__1::basic_stringchar,
std::__1::char_traitschar, std::__1::allocatorchar )'
extension/internal/bitmap/imagemagick.cpp:(.text+0x3a8): undefined
reference to `Magick::Image::read(std::__1::basic_stringchar,
std::__1::char_traitschar, std::__1::allocatorchar  const)'
libinkscape.a(imagemagick.o): In function
`Inkscape::Extension::Internal::Bitmap::ImageMagickDocCache::readImage(char 
const*, Magick::Image*)':
extension/internal/bitmap/imagemagick.cpp:(.text+0x30f): undefined
reference to `Magick::Blob::base64(std::__1::basic_stringchar,
std::__1::char_traitschar, std::__1::allocatorchar )'
extension/internal/bitmap/imagemagick.cpp:(.text+0x3a8): undefined
reference to `Magick::Image::read(std::__1::basic_stringchar,
std::__1::char_traitschar, std::__1::allocatorchar  const)'
c++: error: linker command failed with exit code 1 (use -v to see
invocation)

___
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


Libreoffice does not builds with parallell make

2014-06-11 Thread Sergio de Almeida Lenzi
It stops with


   3991 [build ECH] CustomTarget/instsetoo_native/setup/versionrc^M
   3992 fatal: Not a git repository (or any of the parent
directories): .git^M


If I set PARALELL=1
it builds... but takes hours and hours
___
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: Libreoffice does not builds with parallell make

2014-06-11 Thread Sergio de Almeida Lenzi
Em Qua, 2014-06-11 às 23:25 +0200, Baptiste Daroussin escreveu:

 On Wed, Jun 11, 2014 at 06:22:41PM -0300, Sergio de Almeida Lenzi wrote:
  It stops with
  
  
 3991 [build ECH] CustomTarget/instsetoo_native/setup/versionrc^M
 3992 fatal: Not a git repository (or any of the parent
  directories): .git^M
  
  
  If I set PARALELL=1
  it builds... but takes hours and hours
 
 I do not understand what you are asking for?
 
 the build system of libreoffice is using the job process from the ports
 framework and build in parallel
 
 regards,
 Bapt


Hello Bapt.

On any FreeBSD I have here (9.2 and 10.0 current) the libreoffice
(editors/libreoffice)
does not build with jobs greater than 1.
in my case jobs=8 
it stops and gives a fatal error im module ECH that cannot find a git
repository
=
3991 [build ECH] CustomTarget/instsetoo_native/setup/versionrc^M
3992 fatal: Not a git repository (or any of the parent
directories): .git^M
===

If I patch the Makefile in
the /usr/ports/editors/libreoffice/work/libreoffice-4.2.4.2 directory
and include PARALLELISM=1 at line 13, 
it does not give that error and builds, but takes 6 hours...

It used to work in previous version of Libreoffce = 4,1,6_1

is there any patch to make it work again with JOBS  1???


Thank you for your patience,

Sergio

___
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: Who was the mental genius

2014-06-05 Thread Sergio de Almeida Lenzi
For me, I had to upgrade an 8.2 FreeBSD to 10.0 current.
and got the same issue...

What I did was:
1) copy the make program from the 10.0 series to replace
the /usr/bin/make
2) copy via tar /usr/src /usr/obj from the 10.0 to the 8.2

cd /usr/src
export KERNCONF to the config in /usr/src/sys/amd64/conf

make installworld
make installkernel
save old /etc .
make distribution
this install the new rc.d and /etc/files
than copy
back /etc/profile, /etc/master.passwd, /etc/group, /etc/rc.conf...
to /etc
fix the /boot/loader.conf
Than boot the system in 10.0 stable...

After that... the ports and portmaster started working again...
so I took a list of the packages...
pkg info -qo  /tmp/pkglist
than delete all packages.
pkg delete -fay
than pkg install $(cat /tmp/pkglist), this will install all the packages
direct from freebsd.org
some will not install as they do not exists.. in freebsd.org
so...  using portmaster --no-confirm $(cat /tmp/pkglist)  builds the
system  in complete order
that is now running on 10.0 stable...
the hole process took about 6 hours..  I did it remote during the
night...


Hope it can help
___
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


evolution does not build with latest libxml2

2014-05-14 Thread Sergio de Almeida Lenzi
FreeBSD 10  and 9.2 does not build
evolution with latest libxml2


e-cal-backend-caldav.c:1533:28: error: incomplete definition of type
'struct _xmlBuf'
  (gchar *) buf-buffer-content,
~~~^
/usr/local/include/libxml2/libxml/tree.h:104:16: note: forward
declaration of 'struct _xmlBuf'
typedef struct _xmlBuf xmlBuf;
   ^
e-cal-backend-caldav.c:1583:28: error: incomplete definition of type
'struct _xmlBuf'
  (gchar *) buf-buffer-content,
~~~^
/usr/local/include/libxml2/libxml/tree.h:104:16: note: forward
declaration of 'struct _xmlBuf'
typedef struct _xmlBuf xmlBuf;
==



___
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: evolution does not build with latest libxml2

2014-05-14 Thread Sergio de Almeida Lenzi
Em Qua, 2014-05-14 às 13:56 -0700, Don Lewis escreveu:

 On 14 May, Sergio de Almeida Lenzi wrote:
  FreeBSD 10  and 9.2 does not build
  evolution with latest libxml2
  
  
  e-cal-backend-caldav.c:1533:28: error: incomplete definition of type
  'struct _xmlBuf'
(gchar *) buf-buffer-content,
  ~~~^
  /usr/local/include/libxml2/libxml/tree.h:104:16: note: forward
  declaration of 'struct _xmlBuf'
  typedef struct _xmlBuf xmlBuf;
 ^
  e-cal-backend-caldav.c:1583:28: error: incomplete definition of type
  'struct _xmlBuf'
(gchar *) buf-buffer-content,
  ~~~^
  /usr/local/include/libxml2/libxml/tree.h:104:16: note: forward
  declaration of 'struct _xmlBuf'
  typedef struct _xmlBuf xmlBuf;
  ==
 
 I ran into the same problem and came up with this patch that at least
 allows the port to build.  I'm unable to actually test it, so it might
 destroy all of your files or do something else that's evil.
 
 --- plugins/caldav/caldav-browse-server.c.orig2010-09-21 
 00:26:29.0 -0700
 +++ plugins/caldav/caldav-browse-server.c 2014-05-14 12:55:29.0 
 -0700
 @@ -979,7 +979,7 @@
  
   soup_message_headers_append (message-request_headers, User-Agent, 
 Evolution/ VERSION);
   soup_message_headers_append (message-request_headers, Depth, depth_1 
 ? 1 : 0);
 - soup_message_set_request (message, application/xml, SOUP_MEMORY_COPY, 
 (const gchar *) buf-buffer-content, buf-buffer-use);
 + soup_message_set_request (message, application/xml, SOUP_MEMORY_COPY, 
 (const gchar *) xmlBufContent(buf-buffer), xmlBufUse(buf-buffer));
  
   /* Clean up the memory */
   xmlOutputBufferClose (buf);
 

It worked, also to patch databases/evolution-data-server too

Thanks


___
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: make build error: virtualbox-ose-4.3.10

2014-04-07 Thread Sergio de Almeida Lenzi
Em Seg, 2014-04-07 às 19:02 +0400, Mikhail Tsatsenko escreveu:

  uname -a
  FreeBSD wangq.texacker.org 9.2-STABLE FreeBSD 9.2-STABLE #0 r264030:
 Thu Apr
  3 01:56:48 CST 2014
 r...@wangq.texacker.org:/usr/obj/usr/src/sys/GENERIC
  i386
 
  cd /usr/ports/emulators/virtualbox-ose/ ; make build
 Hi,
 which options are you using for virtualbox-ose port?
  ... 

Here it builds and works FreeBSD 9.2 STABLE, 10.0 RELEASE, 10.0
STABLE...
___
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

Few reasons to stay with BSD

2014-03-24 Thread Sergio de Almeida Lenzi
FreeBSD is still much better,

until 7.X there was pkg_*  for a system with few
packages ( less than 100) it worked. but
as the system goes beyound 1000 packages, pkg_* becomes
very slow, and broken.

pkg, solved the problem, of working with freebsd if you work
WITH pkg, and not against.

See my case, for example, I have hundreds of users, that runs
8.X, 9.X and now 10.X. all of them uses gnome 2.32 and software
written from gtk2, glade2, python2  The system have more than
1000 packages, last count shows 1032.. and are updated once a 
week, everything works..   Some of them uses windows software
that now runs on Virtualbox under FreeBSD.

I have my OWN server (indeed, 2) for 9.X and 10.X, and all the other
servers
do is pkg upgrade -y  sometimes they update about 1GB (in the case of
libconv, for example)
and everything works as expected.. 

If I used pkg_*  plus portupgrade or portmaster in each server, that
woud be 
impossible to mantain..  pkg really made FreeBSD usable  for hundreds of
servers. 

I have some linux on notebooks, that now the FreeBSD have KMS, are
being 
moved to FreeBSD too.
On the notebooks (using archlinux), kernel 3.12.3 the notebooks must
have a
cold start  from time to time (once a day), if not, the disk access
becomes too slow
to the point it is useless.. so a cold start resolv the problem..
besides, the software layout
that is now all in /usr/bin, the inittab is now systemd, the syslog is
journal... and the
file system is still ext4, as zfs for inux is not for production yet.. 

Today, as the machines are powerfull,  you can buy an 32 core system
with
1TB of memory, 12TB of disk for less than US$10,000.  What you will
do???
Install windows 8??  no way, windows 2012??? microsoft says it is
unstable,
2008??? perhaps, 2003?? phased out..

how many users will you put in an Microsoft OS??  at what price???

A FreeBSD server running several windows 2008, can handle 200 users (20
users per OS)
using Virtualbox and ISCSI.  Never stops, never breaks, you can buy ONE
windows 2008 and
install the other 99 by cloning the machine.  Here the EULA says I must
use ONE windows 2008
licence in ONE machine,  does not mention what to do if I  Activate 100
time the SAME image of  an OVA.  or VHD.
(the same for windows 2012). 


Linux is good???  for sure!!, but FreeBSD+ZFS is better..


___
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: Libiconv confusion on 10.0-RELEASE

2014-03-21 Thread Sergio de Almeida Lenzi
For me, I built libc WITHOUT iconv by setting
WITHOUT_ICONV=yes 
in /etc/src.conf
than...  make buildworld;make installworld.
and than rebuild all packages that depends on it (about 200)
now all the packages, ports are all working again
I will wait for FreeBSD11, that perhaps have a full functional iconv,
and does not needs any from the ports..

Just my oppinion... 
___
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


docbook again (almost there)

2014-02-20 Thread Sergio de Almeida Lenzi
Hello

can someone tell me what package creates the files:
/usr/local/share/xml/catalog
/usr/local/share/xml/catalog.ports

After the upgrade those files are missing and I could not find
what package or does create those files.


Thanks in advance,

Sergio
___
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/186883: last update of docbook broke building kdelibs

2014-02-19 Thread Sergio de Almeida Lenzi
Em Qua, 2014-02-19 às 13:58 +0100, Antoine Brodin escreveu:

 Please try patch below
 Kdelibs expects to find docbookx.dtd in
 share/xml/docbook/${DOCBOOKXML_CURRENTDTD_VERSION} , not in a subdir
 
 Index: textproc/docbook-xml/Makefile
 ===
 --- textproc/docbook-xml/Makefile   (revision 345083)
 +++ textproc/docbook-xml/Makefile   (working copy)
 @@ -3,7 +3,7 @@
 
  PORTNAME=  docbook-xml
  PORTVERSION=   4.2
 -PORTREVISION=  3
 +PORTREVISION=  4
  MASTER_SITES=  http://www.docbook.org/xml/${PORTVERSION}/ \
 
 http://www.oasis-open.org/committees/docbook/xml/${PORTVERSION}/
 
 @@ -13,6 +13,7 @@
  NO_ISOCAT= yes
  XML_DTD=   yes
  HAS_MANUAL_CATALOG_FILE=   yes
 +NO_DTD_SUBDIR= yes
 
  DTD_NAME?= ${PORTNAME:S/-xml//}


YES!!!
it fix for me here...

I think we can close the PR

Waiting for more tests (9.X, 8.X)

For me it is done...

Thanks
___
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

last update of docbook broke KDE4

2014-02-18 Thread Sergio de Almeida Lenzi





FreeBSD freebsd10.toontown 10.0-RELEASE FreeBSD 10.0-RELEASE #0
r261076M: Thu Jan 23 21:21:09 BRST 2014 











-- The following REQUIRED packages have not been found:

 * DocBookXML , DocBook XML ,
http://www.oasis-open.org/docbook/xml/4.2
   Required by the KDE help system to process DocBook XML

CMake Error at /usr/local/share/cmake/Modules/FeatureSummary.cmake:430
(message):
  feature_summary() Error: REQUIRED package(s) are missing, aborting
CMake
  run.
Call Stack (most recent call first):
  CMakeLists.txt:397 (feature_summary)


-- Configuring incomplete, errors occurred!

___
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


net/avahi-app dumps core signal 11 on Freebsd 10 release or freebsd 10 stable SOLVED

2014-01-31 Thread Sergio de Almeida Lenzi
Em Sex, 2014-01-31 às 17:14 +, k...@freebsd.org escreveu:

 Synopsis: net/avahi-app dumps core signal 11 on Freebsd 10 release or freebsd 
 10 stable
 
 State-Changed-From-To: open-closed
 State-Changed-By: kwm
 State-Changed-When: Fri Jan 31 17:14:17 UTC 2014
 State-Changed-Why: 
 Committed the disable stack protector, thanks for reporting.
 
 http://www.freebsd.org/cgi/query-pr.cgi?pr=186097


Thank you all for the fixed

FreeBSD rocks
___
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/avahi-app core dumps signal 11

2014-01-31 Thread Sergio de Almeida Lenzi
Em Sex, 2014-01-31 às 22:57 +0100, Dimitry Andric escreveu:

 On 31 Jan 2014, at 21:35, Dimitry Andric d...@freebsd.org wrote:
 ...
  Hmm, at least I can reproduce it, but the stack trace does not tell me that 
  much:
  
  (gdb) run
  Starting program: 
  /usr/work/share/dim/ports/net/avahi-app/work/avahi-0.6.31/./avahi-utils/.libs/avahi-browse
  [New LWP 101263]
  
  Program received signal SIGSEGV, Segmentation fault.
  [Switching to LWP 101263]
  _thr_cancel_enter (curthread=0x0) at 
  /share/dim/src/freebsd/head-clang34/lib/libthr/thread/thr_cancel.c:141
  141 curthread-cancel_point = 1;
  (gdb) bt
  #0  _thr_cancel_enter (curthread=0x0) at 
  /share/dim/src/freebsd/head-clang34/lib/libthr/thread/thr_cancel.c:141
  #1  0x280d0f2d in __open (path=optimized out, flags=optimized out)
 at 
  /share/dim/src/freebsd/head-clang34/lib/libthr/thread/thr_syscalls.c:390
  #2  0x280fef46 in __guard_setup () at 
  /share/dim/src/freebsd/head-clang34/gnu/lib/libssp/../../../contrib/gcclibs/libssp/ssp.c:72
  #3  0x280ff182 in ?? () from /lib/libssp.so.0
  #4  0x280fe749 in _init () from /lib/libssp.so.0
  #5  0x in ?? ()
  (gdb) up
  #1  0x280d0f2d in __open (path=optimized out, flags=optimized out)
 at 
  /share/dim/src/freebsd/head-clang34/lib/libthr/thread/thr_syscalls.c:390
  390 _thr_cancel_enter(curthread);
  (gdb) up
  #2  0x280fef46 in __guard_setup () at 
  /share/dim/src/freebsd/head-clang34/gnu/lib/libssp/../../../contrib/gcclibs/libssp/ssp.c:72
  72fd = open (/dev/urandom, O_RDONLY);
  
  E.g., __guard_setup() tries to get some random bytes from /dev/urandom
  (probably for the stack canaries), libthr considers this to be a thread
  cancellation point, but for some reason the current thread is zeroed
  out?  I don't think this is ever supposed to happen... :-)
 
 So avahi-browse gets linked as follows (wrapped a little for clarity): 
 
 cc -I.. -DDEBUG_TRAP=__asm__(\int \$3\)
 -DDATABASE_FILE=\/usr/local/lib/avahi/service-types.db\ -O2 -pipe
 -march=corei7 -g -fno-strict-aliasing -fstack-protector -std=c99 -Wall
 -W -Wextra -pedantic -pipe -Wformat -Wold-style-definition
 -Wdeclaration-after-statement -Wfloat-equal -Wmissing-declarations
 -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls
 -Wmissing-noreturn -Wshadow -Wendif-labels -Wpointer-arith
 -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings
 -fdiagnostics-show-option -Wno-cast-qual -fno-strict-aliasing
 -o .libs/avahi-browse avahi_browse-avahi-browse.o avahi_browse-sigint.o
 avahi_browse-stdb.o -L/usr/local/lib
 ../avahi-client/.libs/libavahi-client.so /usr/local/lib/libdbus-1.so
 -lpthread
 /usr/work/share/dim/ports/net/avahi-app/work/avahi-0.6.31/avahi-common/.libs/libavahi-common.so
 ../avahi-common/.libs/libavahi-common.so /usr/local/lib/libgdbm.so -lssp
 /usr/local/lib/libintl.so -pthread -Wl,-rpath -Wl,/usr/local/lib
 
 This executable segfaults, and has the NEEDED libs in the following
 order:
 
 .libs/avahi-browse:
 libavahi-client.so.3 = /usr/local/lib/libavahi-client.so.3 
 (0x28076000)
 libdbus-1.so.3 = /usr/local/lib/libdbus-1.so.3 (0x28085000)
 libthr.so.3 = /lib/libthr.so.3 (0x280cf000)
 libavahi-common.so.3 = /usr/local/lib/libavahi-common.so.3 
 (0x280f1000)
 libgdbm.so.4 = /usr/local/lib/libgdbm.so.4 (0x280fc000)
 libssp.so.0 = /lib/libssp.so.0 (0x28106000)
 libintl.so.9 = /usr/local/lib/libintl.so.9 (0x28109000)
 libc.so.7 = /lib/libc.so.7 (0x28112000)
 
 When I remove the -lssp from the above linking command line, it is
 automatically induced anyway, but the executable then gets the following
 NEEDED libs order:
 
 .libs/avahi-browse:
 libavahi-client.so.3 = /usr/local/lib/libavahi-client.so.3 
 (0x28076000)
 libdbus-1.so.3 = /usr/local/lib/libdbus-1.so.3 (0x28085000)
 libthr.so.3 = /lib/libthr.so.3 (0x280cf000)
 libavahi-common.so.3 = /usr/local/lib/libavahi-common.so.3 
 (0x280f1000)
 libgdbm.so.4 = /usr/local/lib/libgdbm.so.4 (0x280fc000)
 libintl.so.9 = /usr/local/lib/libintl.so.9 (0x28106000)
 libc.so.7 = /lib/libc.so.7 (0x2810f000)
 libssp.so.0 = /lib/libssp.so.0 (0x28263000)
 
 E.g. libssp.so.0 is now located at the end of the list.  And _this_
 executable runs fine...!
 
 If anyone has a good explanation for this, I would be dying to know. :-)
 
 -Dimitry
 


Nice catch!!!  

I am too waiting for the explanation
___
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/avahi-app core dumps signal 11

2014-01-30 Thread Sergio de Almeida Lenzi
Em Qua, 2014-01-29 às 11:54 +0100, Thomas Mueller escreveu:

 On Tue, 21 Jan 2014 23:37:08 -0200, Sergio de Almeida Lenzi wrote:
  avahi-daemon dumps core, and I am unable
  to determinw why because it aborts core just before reaching
  the main()  procedure..
  =
  
  #0  0x000801304604 in pthread_testcancel () from /lib/libthr.so.3
  #1  0x0008012fc706 in open () from /lib/libthr.so.3
  #2  0x000801517227 in __gets_chk () from /lib/libssp.so.0
  #3  0x0008015173d2 in __chk_fail () from /lib/libssp.so.0
  #4  0x000801516ace in .init () from /lib/libssp.so.0
  #5  0x7fffd130 in ?? ()
  #6  0x00080061e6d1 in r_debug_state () from /libexec/ld-elf.so.1
  #7  0x00080061dd57 in __tls_get_addr () from /libexec/ld-elf.so.1
  #8  0x00080061c099 in .text () from /libexec/ld-elf.so.1
  #9  0x in ?? ()
  =
  
  any ideas???
 
 Seems like a bad interaction with stack protector (libssp).
 
 I managed to get working binaries (10.0-STABLE, amd64) by adding
 --disable-stack-protector to CONFIGURE_ARGS
 

Ok... thank you for the tip   I will check ASAP...


___
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/avahi-app core dumps signal 11

2014-01-24 Thread Sergio de Almeida Lenzi
Em Sex, 2014-01-24 às 18:19 +0200, Yevgen Lasman escreveu:
 Have the same problem… BUT on test machine (updated from 9.2-REL) it
 works perfectly but when updated working machine (from 9.2-REL too) to
 10.0 it started to segfault!
 
 
 
 Now I end up with test machine with working avahi and production
 server which is can't run it 

Thank you...  You notice that if you compile it on the 9.2 move it with
tar to 10.0  it works!!!

But if you compile on the 10.0 it segfaults, in a way that gdb is
useless as 
it aborts BEFORE reaching the main() function...

IS there a GURU that can resolve this issue??? I need it working and
compiled on the version 10 of FreeBSD...

___
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

net/avahi-app core dumps signal 11

2014-01-22 Thread Sergio de Almeida Lenzi

=gdb avahi-daemon==
#0  0x000801304604 in pthread_testcancel () from /lib/libthr.so.3
#1  0x0008012fc706 in open () from /lib/libthr.so.3
#2  0x000801517227 in __gets_chk () from /lib/libssp.so.0
#3  0x0008015173d2 in __chk_fail () from /lib/libssp.so.0
#4  0x000801516ace in .init () from /lib/libssp.so.0
#5  0x7fffd130 in ?? ()
#6  0x00080061e6d1 in r_debug_state () from /libexec/ld-elf.so.1
#7  0x00080061dd57 in __tls_get_addr () from /libexec/ld-elf.so.1
#8  0x00080061c099 in .text () from /libexec/ld-elf.so.1
#9  0x in ?? ()
===


it is a fresh system  tested both on FreeBSD  10.0-STABLE FreeBSD
10.0-STABLE #2 r260986
and than on FreeBSD10 RELEASE.

file /etc/make.conf
===
FORCE_PKG_REGISTER=y

SENDMAIL_MC=/etc/mail/sendmail.mc
SENDMAIL_CFLAGS=-I/usr/local/include/sasl -I/usr/local/include -DSASL
SENDMAIL_LDFLAGS=-L/usr/local/lib
SENDMAIL_LDADD=-lsasl2
SENDMAIL_CFLAGS+=-D_FFR_SMTP_SSL

WITH_OPENSSL_BASE=yes

MAKE_JOBS_SAFE=yes
FORCE_MAKE_JOBS=yes

WITH_NEW_XORG=  yes
WITH_GALLIUM=   yes

WITH_GTK2=yes
WITH_PKGNG=yes
WX_UNICODE=YES

WARNS=2
NO_WERROR=yes
DEFAULT_VERSIONS=python=2.7 python2=2.7
===
how to reproduce:

remove avahi (pkg delete -fyx avahi)
svn the ports  (cd /usr/ports;svn up)
cd /usr/ports/net/avahi-app
make install
than when you try: avahi-daemon, the program aborts core
in an previous build of ports (On another system (that ports was built
before dec, 2013, it works) 
think that the problem is in the port itsself
I now will try to rollback the net/avahi-app port from a month ago, ant
try.

Can someone confirm that please??


___
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


net/avahi-app core dumps signal 11

2014-01-21 Thread Sergio de Almeida Lenzi
Hello,

avahi-daemon dumps core, and I am unable
to determinw why because it aborts core just before reaching
the main()  procedure..
=

#0  0x000801304604 in pthread_testcancel () from /lib/libthr.so.3
#1  0x0008012fc706 in open () from /lib/libthr.so.3
#2  0x000801517227 in __gets_chk () from /lib/libssp.so.0
#3  0x0008015173d2 in __chk_fail () from /lib/libssp.so.0
#4  0x000801516ace in .init () from /lib/libssp.so.0
#5  0x7fffd130 in ?? ()
#6  0x00080061e6d1 in r_debug_state () from /libexec/ld-elf.so.1
#7  0x00080061dd57 in __tls_get_addr () from /libexec/ld-elf.so.1
#8  0x00080061c099 in .text () from /libexec/ld-elf.so.1
#9  0x in ?? ()
=

any ideas???



___
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


XBMC port needs help

2014-01-13 Thread Sergio de Almeida Lenzi
I am having a problem with the xmbc port,
The system is freebsd10 prerelease version 260597

The ports builds, installs, 
but when I try to run
it opens the screen but the menus are all empy
(no letters inside), it works, as I can point to the
menus and choose, clicks and so one
the only problem is the letters do not show...
I tried to change the LC_ALL and LANG to C
but id did not hep.

Can someone please tell me what is happening???

Thanks
___
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 Port: emulators/virtualbox-ose

2013-12-12 Thread Sergio de Almeida Lenzi
Em Qua, 2013-12-11 às 16:16 -0500, Mike Jakubik escreveu:

 On 12/11/13 15:51, Bernhard Fröhlich wrote:
 
  That definitely is the libstdc++ from our ancient gcc 4.2 in base. 
  Could you try to temporary rename the so and try to start vbix again? 
  Don't forget to rename it afterwards if there are any binaries that 
  still need it.
 
 
 Renaming /usr/lib/libstdc++.so.6 addresses the problem. Do you know a 
 way to check if anything else might need this?
 
 Thank you.


in my system the problem was the compat9x package,
indeed Virtualbox refuses to build with a conflict about compat9x (last
svn ports)

I tracked who needs compat9x, and it came from the java bootstrap
find the ports that depend on compat9x
pkg info -qr compat9x
gives me about 8 ports, 
buildiing again the 8 ports,  the command pkg info -qr compat9x, results
nothing,
so I could delete compat9x with the command: pkg delete -R compat9x,
it removed compat9x and compat8x

virtualbox now works 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: pkg repo dumps core

2013-12-07 Thread Sergio de Almeida Lenzi


 Have you tried removing digests.txz, repo.txz and packagesite.txz?
 

This happens to me too in 9.2 stable and 10.0 BETA4

the strange thing is that if I build the pkg (ports-mgmt/pkg) with
option WITH_DEBUG=yes, in the makefile,
it works and does not dumps core any more...

9.2 uses gcc
10.0 uses clang...


Hope it helps...


___
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: iconv in base breaks multiple ports

2013-10-23 Thread Sergio de Almeida Lenzi


 
 ... and the verdict is in. Building src w/o iconv, then re-installing
 converters/libiconv and rebuilding the ports fixes at least
 newsbeuter, I'll now let multimedia/xbmc (and requirements) rebuild
 over night and then prepare a patch to allow -CURRENT + libiconv for
 those people that like a working system.
 
 I'm also looping re@ in, as they might want to hear about showstoppers
 for the 10.0 release.
 
 Cheers,
 Uli
 ___
 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


I have built a system from scratch freeBSD11 all without libiconv
because I need to test the radeonkm (everything works as expected with
accelerated video)
and than full gnome2 (about 980 packages) including libreoffice,
firefox, vlc, 
mono, monodevelop, gnome-subtilles... and everything works 
in the libiconv port there is a trap that prevents it from building in a
system  freeBSD10...
the only problem was: inkscape and net-snmp... but the last version of
svn works...


Hope clarify things for you  if you need the packages I can give
access in the internet...



___
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 Port: net-p2p/transmission

2013-08-31 Thread Sergio de Almeida Lenzi
Em Sex, 2013-08-30 às 14:37 -0400, Mike Jakubik escreveu:

 Hello,
 
 I updated transmission from 2.80 to 2.82 today, it now dumps core. Could 
 this be somehow related to the glib / gio-fam change?
 
 $ transmission-qt
 QDBusConnection: session D-Bus connection created before 
 QCoreApplication. Application may misbehave.
 Segmentation fault: 11 (core dumped)
 
 Compiled using Clang 3.3 on 9.2-PRERELEASE #0: Tue Aug 20 18:42:26 EDT 2013.
 
 Thanks.
 _

transmission-gtk for me works, FreeBSD 9.2-PRERELEASE #19 r254677M

seems a qt thing...
___
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: usr/ports/java/eclipse-cdt

2013-07-11 Thread Sergio de Almeida Lenzi
Em Qui, 2013-07-11 às 09:51 +0200, kron escreveu:

 On 2013/07/10 20:33, Brad Keifenheim wrote:
  Hi Oli,
  
  Thanks for the quick reply. I have tried the eclipse-devel port as 
  you suggested and, unfortunately, still do not have a functional 
  setup.

Hello,

I use FreeBSD 9.1 and 10.0, 64 bit version.

Eclipse, and so the plugins, does not compile with the openjdk6 for me,
so I changed the Makefile of the ports, to openjdk7 (JAVA_VERSION=1.7)
I deleted the java 1.6 (openjdk6) and all packages that depends on it,
including apache-ant, libreoffice.

Next I build FreeBSD with openjdk7, and than 
eclipse, and a lot fof plugins, including CDT and here it works...
no complains..




___
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: VirtualBox 4.2.14 unusable

2013-07-08 Thread Sergio de Almeida Lenzi
Yes it is broken,

the logic that finds how much real memory is there in the FreeBSD
is broken, reports ZERO..

There is a Problem Report and a person that
says will fix it, 2 weeks ago...

I am using the last version 4.2.12 that works

I am still waiting for the fix...


Sergio

___
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: GNOME 3 and MATE

2013-06-10 Thread Sergio de Almeida Lenzi
Wow!!

I did not switched to gnome3 even on laptop linux
because of a lot of new  things that are uncompatible with gnome2,
indeed, I have built a gnome2 enviroment for linux (archlinux) running
on the
latest kernel (3.9.10). works like a charm.

Now the list points me to the Mate desktop, that is just wat I
was waiting for,...

Even with gnome2.32 I have not found an application that does not runs
on the
2.32 version, 

Congratulations to the Mate team...   I will build a FreeBSD
distribution 
based on Mate this week...


Thank you all for the information

Sergio
___
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


inkscape aborts on FreeBSD 9.1 stable (SOLVED)

2013-06-06 Thread Sergio de Almeida Lenzi
Hello

Iinkscape aborts on FreeBSD 9.1 stable 

It aborts core  Reasons:

1) inkscape 4.8.4 needs boehm-gc 7.2, ports have version 7.1)
2) needs a fix in extensions/extension.cpp (fix in the attach)

Thanks for your attention
___
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

inkscape 0.48.4 does not run

2013-06-05 Thread Sergio de Almeida Lenzi
Hello...

I am finishing a new FreeBSD 9 and 10 CD here for
my clients. using gnome 2.32, FreeBSD 9.1 AMD64

Everything works: gnome, libreoffice, librecad, nautilus, ekiga,mono,
vlc, totem, cups, transmission, openshot,gimp, except inkscape

It compiles from the ports graphics/inkscape  using
boehm-gc 7.1 but aborts with 
=
inkscape

Emergency save activated!
Emergency save completed. Inkscape will close now.
If you can reproduce this crash, please file a bug at www.inkscape.org
with a detailed description of the steps leading to the crash, so we can
fix it.
=
if run inside gdb
-
gdb inkscape
GNU gdb 6.1.1 [FreeBSD]
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you
are
welcome to change it and/or distribute copies of it under certain
conditions.
Type show copying to see the conditions.
There is absolutely no warranty for GDB.  Type show warranty for
details.
This GDB was configured as amd64-marcel-freebsd...
(gdb) run
Starting program: /usr/local/bin/inkscape 
[New LWP 101468]
[New Thread 813807400 (LWP 101468/inkscape)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 813807400 (LWP 101468/inkscape)]
0x00080a0ecbf8 in GC_FreeBSDGetDataStart ()
from /usr/local/lib/libgc.so.1
(gdb) bt
#0  0x00080a0ecbf8 in GC_FreeBSDGetDataStart ()
from /usr/local/lib/libgc.so.1
#1  0x00080a0ecc69 in GC_register_data_segments ()
from /usr/local/lib/libgc.so.1
#2  0x00080a0eb815 in GC_init_inner ()
from /usr/local/lib/libgc.so.1
#3  0x00ae64f7 in do_init () at gc.cpp:35
#4  0x00ae6243 in Inkscape::GC::Core::init () at gc.cpp:269
#5  0x00acb9e9 in Inkscape::GC::init () at gc-core.h:128
#6  0x00ac9173 in main (argc=1, argv=0x7fffda80) at
main.cpp:640
(gdb) 
---
if I compile agains boehm gc-7.2...  the abort occurs inside
inkscape.

(gdb) run
Starting program: /usr/local/bin/inkscape 
[New LWP 101478]
[New Thread 813807400 (LWP 101478/inkscape)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 813807400 (LWP 101478/inkscape)]
0x00cf1393 in Extension (this=0x8140bae00, in_repr=0x200e3a0,
in_imp=0x8140fc1d8) at extension/extension.cpp:94
94 name = g_strdup
(sp_repr_children(child_repr)-content());
(gdb) 
--
if I try to trace it using breakpoints in gdb, does not work, as gc
messes the break function of gdb...





Any help


___
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


inkscape 0.48.4 does not run

2013-06-04 Thread Sergio de Almeida Lenzi
Hello...

I am finishing a new FreeBSD 9 and 10 CD here for
my clients. using gnome 2.32, FreeBSD 9.1 AMD64

Everything works: gnome, libreoffice, librecad, nautilus, ekiga,mono,
vlc, totem, cups, transmission, openshot,gimp, except inkscape

It compiles from the ports graphics/inkscape  using
boehm-gc 7.1 but aborts with 
=
inkscape

Emergency save activated!
Emergency save completed. Inkscape will close now.
If you can reproduce this crash, please file a bug at www.inkscape.org
with a detailed description of the steps leading to the crash, so we can
fix it.
=
if run inside gdb
-
gdb inkscape
GNU gdb 6.1.1 [FreeBSD]
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you
are
welcome to change it and/or distribute copies of it under certain
conditions.
Type show copying to see the conditions.
There is absolutely no warranty for GDB.  Type show warranty for
details.
This GDB was configured as amd64-marcel-freebsd...
(gdb) run
Starting program: /usr/local/bin/inkscape 
[New LWP 101468]
[New Thread 813807400 (LWP 101468/inkscape)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 813807400 (LWP 101468/inkscape)]
0x00080a0ecbf8 in GC_FreeBSDGetDataStart ()
from /usr/local/lib/libgc.so.1
(gdb) bt
#0  0x00080a0ecbf8 in GC_FreeBSDGetDataStart ()
from /usr/local/lib/libgc.so.1
#1  0x00080a0ecc69 in GC_register_data_segments ()
from /usr/local/lib/libgc.so.1
#2  0x00080a0eb815 in GC_init_inner ()
from /usr/local/lib/libgc.so.1
#3  0x00ae64f7 in do_init () at gc.cpp:35
#4  0x00ae6243 in Inkscape::GC::Core::init () at gc.cpp:269
#5  0x00acb9e9 in Inkscape::GC::init () at gc-core.h:128
#6  0x00ac9173 in main (argc=1, argv=0x7fffda80) at
main.cpp:640
(gdb) 
---
if I compile agains boehm gc-7.2...  the abort occurs inside
inkscape.

(gdb) run
Starting program: /usr/local/bin/inkscape 
[New LWP 101478]
[New Thread 813807400 (LWP 101478/inkscape)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 813807400 (LWP 101478/inkscape)]
0x00cf1393 in Extension (this=0x8140bae00, in_repr=0x200e3a0,
in_imp=0x8140fc1d8) at extension/extension.cpp:94
94  name = g_strdup
(sp_repr_children(child_repr)-content());
(gdb) 
--
if I try to trace it using breakpoints in gdb, does not work, as gc
messes the break function of gdb...





Any help

___
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: Another Firefox 21.0 crash, here it does not crashes...

2013-06-01 Thread Sergio de Almeida Lenzi
Interesting... here firefox 21.0 does not crashes
I have been using it for more than a day, on youtube, google, bbc,
terra, wikipedia...and it does not crash

I have setted up 3 accounts=test1, test2, test3
password=test
access is vnc
address is vnctest.k1.com.br

Be nice, upload is only 360Kb/sec

System is 9,1 stable 251224
desktop is gnome 2.34
CPU is atlhon X3 455
Filesystem is ZFS


___
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


Python 3.3 builds with clang 32 on FreeBSd 9.1

2013-05-19 Thread Sergio de Almeida Lenzi
I can say that it builds with FreeBSD 9.1 and clang 3.2
from /usr/bin/clang (native clang)...

Strange...


___
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: Request olvwm

2013-04-07 Thread Sergio de Almeida Lenzi
Em Dom, 2013-04-07 às 10:59 -0400, Lowell Gilbert escreveu:

 Richard Childers fsc...@sbcglobal.net writes:
 
  I'm not sure if olvwm is getting any attention - I know there are
  other projects with more users - but I wanted to say, I love that
  window manager.
 
 Do you have any specific requests? The project hasn't had any releases
 upstream in years, so the fact that the FreeBSD port hasn't changed much
 doesn't seem like a problem...
 ___
 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


Olvwm is a good choice for people that wants a small, fast, easy to
configure, and beautiful
look.  Now the only problem is that it does not compile under 64bits...

I tried to fix it but is beyound my knowledge..

If some X guru is  available, please fix it for 64 bits...  


Thanks for your attention,

Sergio
___
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: Kernel panic CURRENT r248596 at virtualbox-ose-kmod module load

2013-03-25 Thread Sergio de Almeida Lenzi
Em Seg, 2013-03-25 às 04:49 -0700, sean bruno escreveu:

 
  Yes - it is correctly
  http://svnweb.freebsd.org/ports/head/emulators/virtualbox-ose-kmod/files/patch-src-VBox-Runtime-r0drv-freebsd-memobj-r0drv-freebsd_VM_OBJECT_RENAME.c?r1=314797r2=315200
 
 
 Ah, thank you.  My patch definitely was not right and I was wondering
 where the kpanic on load/startup was coming from.  :-)
 ___
 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


Hello, I am running BSD10  svn=248699
and virtualbox runs without problems
___
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

nautilus stop showing thumbnails

2013-03-19 Thread Sergio de Almeida Lenzi
Hello,,

On update ports via svn from 2013-03-10 to today,
after a portmaster -a, the system (gnome2)
stopped to show any thumbnails.. 

The main reason is that it writes the thumbnail
in .thumbnails/normal/xxx.png
but than tries to read it from .cache/thumbnails/normal/x.png 

Can some nautilus guru  tell me how to fix this???

for now I create a liink in the .cache/thumbnails - ./thumbnails  this
works
but is not a solution...


Thanks in advance

Sergio

___
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: VirtualBox patch

2013-03-12 Thread Sergio de Almeida Lenzi
Em Seg, 2013-03-11 às 10:28 +0100, Ferenc Balku escreveu:

 Hi Sergio!
 
 Awfully sorry to disturb You, but I have found this link via Google
 http://lists.freebsd.org/pipermail/freebsd-ports/2013-March/081979.html
 and can not find the patch to download a make VBox work again on our 
 FBSD10 test server.
 
 Can You please send me a link to download the patch.
 
 Thanks in advance,
 
 Best Regards
 
 Ferenc Balku


No problem   I was travel business...
here is the patch,
the list does not allow attach files...

go to the /usr/ports/emulators/virtualbox-ose-kmod,
put the fix in the files directory with a name like ==
patch-the-freebsd-kernel
and do a make clean install
==
--- src/VBox/Runtime/r0drv/freebsd/the-freebsd-kernel.h.orig
2012-12-19 16:27:29.0 -0200
+++ src/VBox/Runtime/r0drv/freebsd/the-freebsd-kernel.h 2013-03-09
14:42:18.924039639 -0300
@@ -50,6 +50,7 @@
 #include sys/unistd.h
 #include sys/kthread.h
 #include sys/lock.h
+#include sys/rwlock.h
 #include sys/mutex.h
 #include sys/sched.h
 #include sys/callout.h
@@ -70,6 +71,12 @@
 #include sys/resourcevar.h
 #include machine/cpu.h
 
+/*
+   fix VM_OBJ_LOCK
+*/
+#defineVM_OBJECT_LOCK(o) VM_OBJECT_RLOCK(o)
+#defineVM_OBJECT_UNLOCK(o) VM_OBJECT_RUNLOCK(o)
+
 /**
  * Wrappers around the sleepq_ KPI.
  */
===
___
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: VirtualBox patch

2013-03-12 Thread Sergio de Almeida Lenzi
Em Ter, 2013-03-12 às 17:17 +0200, Konstantin Belousov escreveu:

 On Tue, Mar 12, 2013 at 09:01:43AM -0300, Sergio de Almeida Lenzi wrote:
  Em Seg, 2013-03-11 ??s 10:28 +0100, Ferenc Balku escreveu:
  
   Hi Sergio!
   
   Awfully sorry to disturb You, but I have found this link via Google
   http://lists.freebsd.org/pipermail/freebsd-ports/2013-March/081979.html
   and can not find the patch to download a make VBox work again on our 
   FBSD10 test server.
   
   Can You please send me a link to download the patch.
   
   Thanks in advance,
   
   Best Regards
   
   Ferenc Balku
  
  
  No problem   I was travel business...
  here is the patch,
  the list does not allow attach files...
  
  go to the /usr/ports/emulators/virtualbox-ose-kmod,
  put the fix in the files directory with a name like ==
  patch-the-freebsd-kernel
  and do a make clean install
  ==
  --- src/VBox/Runtime/r0drv/freebsd/the-freebsd-kernel.h.orig
  2012-12-19 16:27:29.0 -0200
  +++ src/VBox/Runtime/r0drv/freebsd/the-freebsd-kernel.h 2013-03-09
  14:42:18.924039639 -0300
  @@ -50,6 +50,7 @@
   #include sys/unistd.h
   #include sys/kthread.h
   #include sys/lock.h
  +#include sys/rwlock.h
   #include sys/mutex.h
   #include sys/sched.h
   #include sys/callout.h
  @@ -70,6 +71,12 @@
   #include sys/resourcevar.h
   #include machine/cpu.h
   
  +/*
  +   fix VM_OBJ_LOCK
  +*/
  +#defineVM_OBJECT_LOCK(o) VM_OBJECT_RLOCK(o)
  +#defineVM_OBJECT_UNLOCK(o) VM_OBJECT_RUNLOCK(o)
 
 This is definitely wrong. For the blind substitution, you should
 use VM_OBJECT_WLOCK/VM_OBJECT_WUNLOCK.

Ok, you are the guru,   I just wanted the virtualbox to have it work
asap...

I will test this (with WLOCK/WUNLOCK) at once...

Thanks for th information

___
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: VirtualBox patch, defininive???

2013-03-12 Thread Sergio de Almeida Lenzi
Hello
Thanks to Konstantin Belousov kostik...@gmail.com
a substitution from RLOCK with WLOCK is the correct way,
so a new fix is necessary...


go to the /usr/ports/emulators/virtualbox-ose-kmod,
put the fix in the files directory with a name like ==
patch-the-freebsd-kernel
and do a make clean install
==
--- src/VBox/Runtime/r0drv/freebsd/the-freebsd-kernel.h.orig
2012-12-19 16:27:29.0 -0200
+++ src/VBox/Runtime/r0drv/freebsd/the-freebsd-kernel.h 2013-03-09
14:42:18.924039639 -0300
@@ -50,6 +50,7 @@
#include sys/unistd.h
#include sys/kthread.h
#include sys/lock.h
+#include sys/rwlock.h
#include sys/mutex.h
#include sys/sched.h
#include sys/callout.h
@@ -70,6 +71,12 @@
#include sys/resourcevar.h
#include machine/cpu.h

+/*
+   fix VM_OBJ_LOCK
+*/
+#defineVM_OBJECT_LOCK(o) VM_OBJECT_WLOCK(o)
+#defineVM_OBJECT_UNLOCK(o) VM_OBJECT_WUNLOCK(o)
+
/**
  * Wrappers around the sleepq_ KPI.
  */
=== 
___
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


pkgconf is broken?

2013-03-12 Thread Sergio de Almeida Lenzi
Hello,

new pkgconf (0.8.12) does different results
from previos version (0.8.9)

if I have instaled mjpegtools-2.0.0

command: pkgconf --exists --print-errors mjpegtools  1.6.0 mjpegtools
 1.8.0

pkgconf version 0.8.9 returns 1 (correct answer)
pkgconf version 0.8.12 returs 0, and make the package with errors...




___
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: VirtualBox broken by recent commit -248084

2013-03-10 Thread Sergio de Almeida Lenzi
Em Dom, 2013-03-10 às 15:43 +, Chris Rees escreveu:

 On 10 Mar 2013 07:07, AN a...@neu.net wrote:
 
  FreeBSD FBSD10 10.0-CURRENT FreeBSD 10.0-CURRENT #36 r248127: Sun Mar 10
  00:13:59 CST 2013 root@FBSD10:/usr/obj/usr/src/sys/MYKERNEL  amd64
 
  Virtualbox was broken by this commit:
  http://svnweb.freebsd.org/base?view=revisionrevision=248084
 
  ===   Registering installation for virtualbox-ose-kmod-4.2.6_1
  Installing virtualbox-ose-kmod-4.2.6_1... done
  ===  Cleaning for virtualbox-ose-kmod-4.2.6_1
  [root@FBSD10 /usr/ports/emulators/virtualbox-ose-kmod]# kldload vboxdrv.ko
  kldload: can't load vboxdrv.ko: Exec format error
 
 This error isn't helpful;  what went into /var/log/messages as kldload was
 executed?
 
 Chris
 ___
 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


The last 10.0 CURRENT changed the way  lock is handled.
so a fix in the virtualbox-kmod is needed
put this file the files directory 
and do a make clean install
should work...

___
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

Freedesktop.org connection refused

2013-03-08 Thread Sergio de Almeida Lenzi
Hello,

Can someone please inform me about
a mirror for freedesktop.org???

Seems the master site is refusing connections...

TIA,

Sergio
___
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: Dropbox on FreeBSD

2012-12-20 Thread Sergio de Almeida Lenzi
Strange...

there is a source code distribution of dropbox in the
site the file is: nautilus-dropbox-1.4.0.tar.bz2

it compiles as an extention to nautilus (gnome...) 
it needs, nautilus, py-gtk2, gtk-update-icon cache...

it installs and nautilus recognizes it...

attached is a port  of dropbox...  (needs gnome2.32)

I do not have a dropbox account but, one who have, should try...
___
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: New port cad/fritzing

2012-11-07 Thread Sergio de Almeida Lenzi
Em Qua, 2012-11-07 às 21:37 +1000, Robert Backhaus escreveu:

 I had not problems building, but when I run, I get error messages:
 
 Dialog: Sorry, we have a problem with the swapping mechanism. Fritzing
 still works, but you won't be able to change parts properties
 
 While loading bin: core parts, a dialog that says Unable to find
 the following 112 parts, and a list starting with
 '3234DBDC00PotnetionmetModuleId' at parts/core/basic_poti.fzp'
 
 When closing that window (The 'OK' button is unavailable, because it
 is way off the bottom of the screen), we get printed to the console: 
 7 times:
 QPainter::begin: Paint device returned engine == 0, type: 2
 QPainter::end: Painter not active, aborted
 about 42 times:
 libpng error: PNG file corrupted by ASCII conversion
 
 The program then opens, but, as there are no parts, I can't do much.
 
 

Ok..  

I will build a system from ground zero (xorg, qt) and will test 
hope by tomorrow I will have a clue...


___
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

New port cad/fritzing

2012-11-06 Thread Sergio de Almeida Lenzi
it is a PCB cad, now running on FreeBSD


website=http://www.fritzing.org


it is in the redports http://redports.org


svn co https://svn.redports.org/sergiolenzi/fritzing


Can I submit to the FreeBSD community???
___
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: [RFC] LibreOffice build issues

2012-07-26 Thread Sergio de Almeida Lenzi
Em Qui, 2012-07-26 às 15:18 +0300, Andriy Gapon escreveu:

 on 26/07/2012 03:31 Jung-uk Kim said the following:
  I guess you had installed OpenSSL from ports. ;-)
 
 Yes, bingo.
 


for me (amd64,freebsd 8.3 stable, dual Xeon, 12 cpu) run time=90
minutes.
It only builds with:
clang-devel (3.2)
flags (WITH-CLANG)...
and a modified===  patch-testtools__source__bridgetest__makefile.m
that treats BSD like OSX PPC GCC...
the test dumps core (signal 6, 11) in the test...

On FreeBSD 9,10 builds OK..

==
--- testtools/source/bridgetest/makefile.mk.orig2012-07-03
08:01:28.0 -0300
+++ testtools/source/bridgetest/makefile.mk 2012-07-25
21:08:23.0 -0300
@@ -56,6 +56,8 @@
 my_components += testComponent
 .END
 
+CFLAGSCXX += -fPIC
+
 .IF $(GUI)==WNT
 .IF $(compcheck) != 
 CFLAGSCXX += -DCOMPCHECK
@@ -143,16 +145,16 @@
 
 #
 
-runtest : $(DLLDEST)$/uno_types.rdb $(DLLDEST)$/uno_services.rdb
makefile.mk \
-$(SHL1TARGETN) $(SHL2TARGETN) $(SHL3TARGETN)
+runtest:
+   echo RUNTEST
+
+#runtest : $(DLLDEST)$/uno_types.rdb $(DLLDEST)$/uno_services.rdb
makefile.mk \
+#$(SHL1TARGETN) $(SHL2TARGETN) $(SHL3TARGETN)
 .IF $(CROSS_COMPILING)!=YES
 .IF $(COM)$(OS)$(CPU) == GCCMACOSXP
 @echo Mac OSX PPC GCC fails this test!, likely broken UNO bridge.
Fix me.
 .ELSE
-cd $(DLLDEST)  $(AUGMENT_LIBRARY_PATH) $(SOLARBINDIR)/uno \
--ro uno_services.rdb -ro uno_types.rdb \
--s com.sun.star.test.bridge.BridgeTest -- \
-com.sun.star.test.bridge.CppTestObject
+   echo Broken on FreeBSD 8.x 7.x
 .ENDIF
 ==
___
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: libreoffice build solution...

2012-07-05 Thread Sergio de Almeida Lenzi
Em Qui, 2012-07-05 às 01:07 -0400, Robert Huff escreveu:

 
 Attempting to build 3.5.4 on
 
 FreeBSD 10.0-CURRENT #0: Sun Mar 11 08:20:02 EDT 2012 amd64 
 
 has clang-3.1 as a dependency - it even overrides
 USE_GCC=4.6
 Is there any way to make to not require this?
 
 
 Robert Huff
 

As I told in the previous email to the list, 

you must install clang 3.0 using an old  port,
than edit the Makefile (in the libreoffice port...)
to point to the 3.0 clang..

This way, libreoffice builds...


Sergio
___
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: editors/libreoffice : patches for 8.3-STABLE (i386)

2012-07-05 Thread Sergio de Almeida Lenzi
Em Qui, 2012-07-05 às 15:31 +0200, Luca Pizzamiglio escreveu:

 Hi all.
 
 I'm Luca and my system is a 8.3-STABLE system (then with clang derived
 from ports) on a i386 architecture.
 I had problem to build the latest libreoffice (3.5.4), so I tried to
 solve issues I met and I developed this easy patches.
 

for me the patches seems to be already in the system
libreoffice 3.5.4_2  in /usr/ports/editors/libreoffice



Ignoring previously applied (or reversed) patch.
1 out of 1 hunks ignored--saving rejects to
filter/source/graphicfilter/icgm/bitmap.cxx.rej
Ignoring previously applied (or reversed) patch.
3 out of 3 hunks ignored--saving rejects to
sd/source/filter/eppt/pptx-epptbase.cxx.rej
Ignoring previously applied (or reversed) patch.
6 out of 6 hunks ignored--saving rejects to
sd/source/filter/eppt/pptx-epptooxml.cxx.rej
===
___
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: Question about clang 3.0................Re: libreoffice build solution...

2012-07-05 Thread Sergio de Almeida Lenzi


 
 Hi Sergio.
 
 Where do I find the clang 3.0 port? It's no longer in the ports tree.
 
 
 Regards
 
 
 /Leslie


You can fetch the tar with the old  clang ports

and expand it in the /usr/ports, the clang and llvm will than
be installed in the /usr/ports/misc/ directory
Make sure that ther is NO clang installed
than...
cd /usr/ports/misc/clang
make install





http://dist64.k1.com.br:81/Downloads/clang+llvm-ports-3.0.tar.gz



___
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: libreoffice build solution...

2012-07-05 Thread Sergio de Almeida Lenzi
With the help of Luca Pizzamiglio luca.pizzamig...@gmail.com,

I can say that libreoffice now builds with clang 3.1 either with the
base system
or with the ports...

Just add a series of patch instructions in the /etc/make.conf
go to /usr/ports/editors/libreoffice,
verify if it is version 3.5.4
than do a command make clean install
Should build fine now..


.if ${.CURDIR:M/usr/ports/editors/libreoffice}
PATCH_SITES+=http://dist64.k1.com.br:81/Downloads/
PATCHFILES+=patch-libreoffice-3.5.4-clang
.endif


go 
Sergio
___
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: libreoffice build solution...

2012-07-05 Thread Sergio de Almeida Lenzi
With the help of Luca Pizzamiglio luca.pizzamig...@gmail.com,

I can say that libreoffice now builds with clang 3.1 either with the
base system
or with the ports...

Just add a series of patch instructions in the /etc/make.conf
go to /usr/ports/editors/libreoffice,
verify if it is version 3.5.4
than do a command make clean install
Should build fine now..


.if ${.CURDIR:M/usr/ports/editors/libreoffice}
PATCH_SITES+=http://dist64.k1.com.br:81/Downloads/
PATCHFILES+= patch-libreoffice-3.5.4-clang
.endif


Sergio 
___
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


libreoffice build solution...

2012-07-04 Thread Sergio de Almeida Lenzi
Well... 
after poking around with FreeBSD version 8.2, 8,3 and 9.x and 10.X
AMD64 version, I notice that:
1) Libreoffice version 3.5.4 builds ONLY with clang version 3.0
2) When using FreeBSD 9.X and 10.X, libreoffice builds with clang in the
base system 
as they are clang 3.0
3) For FreeBSD 8.X, it builds ONLY with the clang-3.0 that is not in the
ports any more
so I had to install old  ports (clang and llvm) version 3.0

Than libreoffice builds, install and works OK.  It is faster than the
previous
one (3.5.2).

Using clang version 3.1 or clang-devel  does not build, stops somewhere
in
the build process because clang aborts with signal 6.

Time to build is aprox 45 minutes

Hope this will help

___
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: multimedia/linux-realplayer port marked as BROKEN

2012-06-29 Thread Sergio de Almeida Lenzi
I have a copy here, 
I am thinking in upload it to a p2p network (torrent)... 
in piratebay, for example

It is not a mirror...
___
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


freedesktop.org is down....

2012-06-27 Thread Sergio de Almeida Lenzi
Hello,,,


I am trying to update my system, and it needs to build
gstreamer stuff (gstreamer, gstreamer-plugins)
but gstreamer.freedesktop.org seems down...

Someone please can point me to a mirror of freedesktop.org???  

Google does not helped me...

Thanks

___
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


libreoffice, Makefile fix proposal...

2012-06-06 Thread Sergio de Almeida Lenzi
Well, now that libreoffice build is
solved, than  what about insert
a line:
CONFLICTS_BUILD=boost*
near line 63 of Makefile???

this will prevent libreoffice build with boost in the system.


Sergio
___
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: make failed for editors/libreoffice

2012-06-05 Thread Sergio de Almeida Lenzi
Em Ter, 2012-06-05 às 19:35 +0200, Heino Tiedemann escreveu:

 Baptiste Daroussin b...@freebsd.org wrote:
 
  On Tue, Jun 05, 2012 at 10:49:06AM -0400, Robert Huff wrote:
  
 Is it possible to disable parallel make jobs?
 If so, what is the correct way to do so?
  

in the Makefile
near the lines 120..
 --with-num-cpus=1 \
 --with-num-jobs=1 \

then 
rm work/.configu*
make
the system will configure to build libreoffice
configure for ONE cpu and ONE job (dmake)...

but after nnn hours, it does not build
same errors

We for sure need a libreoffice guru  
may be the famous 3.5.4


___
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: make failed for editors/libreoffice SOLVED

2012-06-05 Thread Sergio de Almeida Lenzi
Hello all...
finally I track down the problem with libreoffice,
the problem is with the boost headers and files

You MUST use the boost that comes with libreoffice,
but somehow the makefiles searches /usr/local/include/* 

Solution:

remove (temporary) boost-lib, boost-jam,
then go to the editors/libreoffice ...
and then choose the language: in my case : LOCALIZED_LANG=pt-BR
put it in the Makefile, (or /etc/make.conf)
than..
make install package,
in a 8 cores cpu, with 8 jobs in paralell, libreoffice builds in 2
hours

after that,
reinstall boost-lib and boost-jam either from the ports, or from the
packages..


Works for me

___
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: make failed for editors/libreoffice

2012-05-31 Thread Sergio de Almeida Lenzi
Em Qui, 2012-05-31 às 11:36 +0200, Leslie Jensen escreveu:

 Help Please!
 
 Thanks
 

Seems that clang (and or) gmake running paralell (in my case -P8)
and are not treating dependencies right...

in your code, the error message tells how to restart(or make only the
module that is in error)...

cd /usr/ports/editors/libreoffice/work/libreoffice-core-3.5.2.2
source ./Env.Host.sh
cd vcl
gmake clean # optional
gmake -r

make these commands (as the software tells you to do...)
and than go back to the /usr/ports/editors/libreoffice,
and issue a make package

repeat the process untill there are no more errors...
in my case about 8 times

finally you will have your libreoffice built...

Perhaps some gmake/perl guru can fix the build
process and make it work on only ONE cpu..  (-P1)...
it would last more time, but would build it without breaking.


Sergio
___
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: make failed for editors/libreoffice

2012-05-31 Thread Sergio de Almeida Lenzi
Em Qui, 2012-05-31 às 17:31 +0200, Leslie Jensen escreveu:

 
 2012-05-31 14:24, Robert Huff skrev:
 
  Leslie Jensen writes:
 
---
 Oh dear - something failed during the build - sorry !
   For more help with debugging build errors, please see the section in:
 http://wiki.documentfoundation.org/Development
 
   internal build errors:
 
ERROR: error 65280 occurred while making
/usr/ports/editors/libreoffice/work/libreoffice-core-3.5.2.2/vcl/prj
 
  it seems that the error is inside 'vcl', please re-run build
  inside this module to isolate the error and/or test your fix:
---
 
/usr/local/bin/bash
cd /usr/ports/editors/libreoffice/work/libreoffice-core-3.5.2.2
source ./Env.Host.sh
cd vcl
gmake clean # optional
gmake -r
 
when the problem is isolated and fixed exit and re-run 'make' from the
top-level
 
 
  Did you follow the instructions?
 
 
  Robert Huff
 
  ___
  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
 
 
 
 After four manual procedures I'm getting stuck here.
 
 What can I do?
 
 --
 [ build MOD ] writerperfect
 Bus error (core dumped)
 File tested,Test Result,Execution Time (ms)
 file:///usr/ports/editors/libreoffice/work/libreoffice-core-3.5.2.2/lotuswordpro/qa/cppunit/data/pass/A14.lwp,Signal
  
 11 during cups initialization called, ignoring cups
 
 Error: a unit test failed, please do one of:
 
 export DEBUGCPPUNIT=TRUE# for exception catching
 export GDBCPPUNITTRACE=gdb --args # for interactive debugging
 export VALGRIND=memcheck# for memory checking
 and retry.
 gmake[1]: *** 
 [/usr/ports/editors/libreoffice/work/libreoffice-core-3.5.2.2/workdir/unxfbsd.pro/CppunitTest/lotuswordpro_test_lotuswordpro.test]
  
 Error 1
 gmake[1]: *** Inväntar oavslutade jobb...
 TEMPFILE=/tmp/gbuild.XX.gNM6YJsj   mv ${TEMPFILE} 
 /usr/ports/editors/libreoffice/work/libreoffice-core-3.5.2.2/workdir/unxfbsd.pro/LinkTarget/Library/writerfilter_uno.uno.so.objectlist
 gmake[1]: Lämnar katalogen 
 /usr/ports/editors/libreoffice/work/libreoffice-core-3.5.2.2/tail_build
 gmake: *** [source-env-and-recurse] Error 2
 
 
 ___
 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

there is an error in the lotuswordpro testing...  if you are not going
to use lotuswrordpro
apply these patch at the 
/usr/ports/editors/libreoffice/work/libreoffice-core-3.5.2.2

==
--- lotuswordpro/Module_lotuswordpro.mk.orig2012-05-31
19:34:52.014043605 -0300
+++ lotuswordpro/Module_lotuswordpro.mk 2012-05-31 19:29:29.276164732
-0300
@@ -31,8 +31,8 @@
 Library_lwpft \
 ))
 
-$(eval $(call gb_Module_add_check_targets,lotuswordpro,\
-CppunitTest_lotuswordpro_test_lotuswordpro \
-))
+#$(eval $(call gb_Module_add_check_targets,lotuswordpro,\
+#CppunitTest_lotuswordpro_test_lotuswordpro \
+#))
 
 # vim: set noet sw=4 ts=4:
=
___
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: portsnap problem

2012-03-11 Thread Sergio de Almeida Lenzi
Em Dom, 2012-03-11 às 07:38 -0500, ajtiM escreveu:

 On Sunday 11 March 2012 07:05:35 Herby Vojčík wrote:
  Hello,
  
  for a day already, portsnap fetch seems not to fetch newest changes.
  freshports shows lots of changes, port portsnap fetch says there
  everything is up to date.
  I checked that the ports are really newer in freshports than in my machine.
  I also removed everything in /usr/ports and /var/db/portsnap and issued
  portsnap fetch extract, but it did not help.
  
  Maybe some job that creates patches for portsnap died?
  

Or just that ports system is frozen because of the 8.3 release???

Occam's razor:

when you have two or more competing theories 
that make exactly the same predictions,
the simpler one is the better.


[]
Sergio
___
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: print/ghostscript9 fix

2012-02-13 Thread Sergio de Almeida Lenzi
The error occurs becuse it gets jpeg definitions from
the system libjpeg before the ones from own openjpeg code.

For me, I disable openjpeg code (because it uses system libjpeg
also)

add 
=
CONFIGURE ARGS+=--disable-openjpeg
==

after line 67 in the Makefile
make clean install


and the system works...



 
 laptop:root[207] uname -a
 FreeBSD laptop 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r230975M: Sat Feb  4 
 09:03:27 PST 2012 root@laptop:/usr/obj/usr/src/sys/MOBILE  i386
 
 cc  -DHAVE_MKSTEMP   -DHAVE_FONTCONFIG -DHAVE_LIBIDN -DHAVE_SETLOCALE 
 -DHAVE_SSE2 -DHAVE_DBUS   -O2 -pipe -march=native -fno-strict-aliasing -fPIC 
 -DUPD_SIGNAL=0 -I.  
 -I/usr/ports/print/ghostscript9/work/ghostscript-9.05/lcms/include  
 -I/usr/local/include/libpng  -I/usr/local/include 
 -I/usr/local/include/freetype2  -Wall -Wstrict-prototypes -Wundef 
 -Wmissing-declarations -Wmissing-prototypes -Wwrite-strings 
 -Wno-strict-aliasing -Wdeclaration-after-statement -fno-builtin -fno-common 
 -DHAVE_STDINT_H=1 -DHAVE_SYS_TIME_H=1 -DGX_COLOR_INDEX_TYPE=unsigned long 
 long -O2 -pipe -march=native -fno-strict-aliasing -DUSE_LIBICONV_GNU 
 -I/usr/local/include   -DGS_DEVS_SHARED 
 -DGS_DEVS_SHARED_DIR=\/usr/local/lib/ghostscript/9.05\  
 -Iopenjpeg/libopenjpeg/.. -Iopenjpeg/libopenjpeg -I./soobj -I./base 
 -DUSE_OPENJPEG_JP2 -ffast-math -DOPJ_STATIC -std=c99  -o 
 ./soobj/sjpx_openjpeg.o \
 -c -DOPJ_STATIC ./base/sjpx_openjpeg.c
 ./base/sjpx_openjpeg.c: In function 'decode_image':
 ./base/sjpx_openjpeg.c:169: error: too many arguments to function 'opj_decode'
 ./base/sjpx_openjpeg.c:205: error: 'opj_image_comp_t' has no member named 
 'typ'
 ./base/sjpx_openjpeg.c:205: error: 'CTYPE_COLOR' undeclared (first use in 
 this function)
 ./base/sjpx_openjpeg.c:205: error: (Each undeclared identifier is reported 
 only once
 ./base/sjpx_openjpeg.c:205: error: for each function it appears in.)
 ./base/sjpx_openjpeg.c:207: error: 'opj_image_comp_t' has no member named 
 'typ'
 ./base/sjpx_openjpeg.c:207: error: 'CTYPE_OPACITY' undeclared (first use in 
 this function)
 ./base/sjpx_openjpeg.c:217: error: 'CLRSPC_CMYK' undeclared (first use in 
 this function)
 ./base/sjpx_openjpeg.c:250: error: 'opj_image_t' has no member named 
 'has_palette'
 ./base/sjpx_openjpeg.c:257: error: 'CLRSPC_EYCC' undeclared (first use in 
 this function)
 gmake[2]: *** [soobj/sjpx_openjpeg.o] Error 1
 gmake[2]: Leaving directory 
 `/usr/ports/print/ghostscript9/work/ghostscript-9.05'
 gm
 
 
 troutmask:root[207] uname -a
 FreeBSD troutmask.apl.washington.edu 10.0-CURRENT FreeBSD 10.0-CURRENT #0 
 r230912: Thu Feb  2 10:40:37 PST 2012 
 ka...@troutmask.apl.washington.edu:/usr/obj/usr/src/sys/SPEW  amd64
 
 
 cc  -DHAVE_MKSTEMP   -DHAVE_FONTCONFIG  -DHAVE_SETLOCALE -DHAVE_SSE2 
 -DHAVE_DBUS   -O2 -pipe -march=opteron -fno-strict-aliasing -fPIC 
 -DUPD_SIGNAL=0 -I.  
 -I/usr/ports/print/ghostscript9/work/ghostscript-9.05/lcms/include  
 -I/usr/local/include/libpng  -I/usr/local/include 
 -I/usr/local/include/freetype2  -Wall -Wstrict-prototypes -Wundef 
 -Wmissing-declarations -Wmissing-prototypes -Wwrite-strings 
 -Wno-strict-aliasing -Wdeclaration-after-statement -fno-builtin -fno-common 
 -DHAVE_STDINT_H=1 -DHAVE_SYS_TIME_H=1 -DGX_COLOR_INDEX_TYPE=unsigned long 
 int -O2 -pipe -march=opteron -fno-strict-aliasing -DUSE_LIBICONV_GNU 
 -I/usr/local/include   -DGS_DEVS_SHARED 
 -DGS_DEVS_SHARED_DIR=\/usr/local/lib/ghostscript/9.05\  
 -Iopenjpeg/libopenjpeg/.. -Iopenjpeg/libopenjpeg -I./soobj -I./base 
 -DUSE_OPENJPEG_JP2 -ffast-math -DOPJ_STATIC -std=c99  -o 
 ./soobj/sjpx_openjpeg.o \
 -c -DOPJ_STATIC ./base/sjpx_openjpeg.c
 ./base/sjpx_openjpeg.c: In function 'decode_image':
 ./base/sjpx_openjpeg.c:169: error: too many arguments to function 'opj_decode'
 ./base/sjpx_openjpeg.c:205: error: 'opj_image_comp_t' has no member named 
 'typ'
 ./base/sjpx_openjpeg.c:205: error: 'CTYPE_COLOR' undeclared (first use in 
 this function)
 ./base/sjpx_openjpeg.c:205: error: (Each undeclared identifier is reported 
 only once
 ./base/sjpx_openjpeg.c:205: error: for each function it appears in.)
 ./base/sjpx_openjpeg.c:207: error: 'opj_image_comp_t' has no member named 
 'typ'
 ./base/sjpx_openjpeg.c:207: error: 'CTYPE_OPACITY' undeclared (first use in 
 this function)
 ./base/sjpx_openjpeg.c:217: error: 'CLRSPC_CMYK' undeclared (first use in 
 this function)
 ./base/sjpx_openjpeg.c:250: error: 'opj_image_t' has no member named 
 'has_palette'
 ./base/sjpx_openjpeg.c:257: error: 'CLRSPC_EYCC' undeclared (first use in 
 this function)
 gmake[2]: *** [soobj/sjpx_openjpeg.o] Error 1
 gmake[2]: Leaving directory 
 `/usr/ports/print/ghostscript9/work/ghostscript-9.05'
 gmake[1]: *** [so-subtarget] Error 2
 gmake[1]: Leaving directory 
 `/usr/ports/print/ghostscript9/work/ghostscript-9.05'
 gmake: *** [so] Error 2
 *** Error code 1
 
 
 And, yes, I have the latest update to this port.
 




Update ghostscript compile error....

2012-02-12 Thread Sergio de Almeida Lenzi
Em Dom, 2012-02-12 às 09:50 -0500, Jerry escreveu:

 I was wondering if there are any plans to update ghostscript to the
 latest version -- Ghostscript 9.05
 


it is already there  portsnap fetch update,

But it does not compile, 


cc  -DHAVE_MKSTEMP   -DHAVE_FONTCONFIG -DHAVE_LIBIDN -DHAVE_SETLOCALE
-DHAVE_SSE2 -DHAVE_DBUS   -O2 -pipe -fno-strict-aliasing -g -fPIC
-DUPD_SIGNAL=0 -I.
-I/usr/ports/print/ghostscript9/work/ghostscript-9.05/lcms/include
-I/usr/local/include/libpng  -I/usr/local/include
-I/usr/local/include/freetype2  -Wall -Wstrict-prototypes -Wundef
-Wmissing-declarations -Wmissing-prototypes -Wwrite-strings
-Wno-strict-aliasing -Wdeclaration-after-statement -fno-builtin
-fno-common -DHAVE_STDINT_H=1 -DHAVE_SYS_TIME_H=1
-DGX_COLOR_INDEX_TYPE=unsigned long int -O2 -pipe -fno-strict-aliasing
-DUSE_LIBICONV_GNU -DUSE_LIBPAPER -I/usr/local/include
-DGS_DEVS_SHARED -DGS_DEVS_SHARED_DIR=\/usr/local/lib/ghostscript/9.05
\  -DA4 -Iopenjpeg/libopenjpeg/.. -Iopenjpeg/libopenjpeg -I./soobj
-I./base -DUSE_OPENJPEG_JP2  -o ./soobj/sjpx_openjpeg.o \
-c -DOPJ_STATIC ./base/sjpx_openjpeg.c
./base/sjpx_openjpeg.c: In function 'decode_image':
./base/sjpx_openjpeg.c:169: error: too many arguments to function
'opj_decode'
./base/sjpx_openjpeg.c:205: error: 'opj_image_comp_t' has no member
named 'typ'
./base/sjpx_openjpeg.c:205: error: 'CTYPE_COLOR' undeclared (first use
in this function)
./base/sjpx_openjpeg.c:205: error: (Each undeclared identifier is
reported only once
./base/sjpx_openjpeg.c:205: error: for each function it appears in.)
./base/sjpx_openjpeg.c:207: error: 'opj_image_comp_t' has no member
named 'typ'
./base/sjpx_openjpeg.c:207: error: 'CTYPE_OPACITY' undeclared (first use
in this function)
./base/sjpx_openjpeg.c:217: error: 'CLRSPC_CMYK' undeclared (first use
in this function)
./base/sjpx_openjpeg.c:250: error: 'opj_image_t' has no member named
'has_palette'
./base/sjpx_openjpeg.c:257: error: 'CLRSPC_EYCC' undeclared (first use
in this function)
gmake[2]: ** [soobj/sjpx_openjpeg.o] Erro 1
===
___
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


Beta 3 still not OK

2012-02-10 Thread Sergio de Almeida Lenzi
Seems that the sqlite database
has changed from beta1 to beta3???

I have all the system running exclusive on pkg there is no more old
pkg 

How can I upgrade the sqlite database from beta1 to beta3???
___
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


Beta 3 still not OK

2012-02-10 Thread Sergio de Almeida Lenzi
Em Sáb, 2012-02-11 às 00:38 +0100, Baptiste Daroussin escreveu:

 Sorry pkg add was broken in beta2 this release fixes it.
 
 Changes:
 * fix pkg add (it is been broken during beta2 sorry about that)
 * fix manifest emitter: now really emit the pkg-message in message no more
   description
 * add %M to pkg query to show messages
 * concat all pkg-messages and show it once at the end of operations
 * print messages about missing dependency during pkg add
 
 regards,
 Bapt


Hello, Baptiste,   Beta 3 still not ok...
=
 pkg upgrade 
Assertion failed: ((buf-s_flags  SBUF_FINISHED) == SBUF_FINISHED),
function sbuf_get, file pkg_util.c, line 36.
Abort trap: 6 (imagem do núcleo gravada)
==

the sequence was: 
pkg update    OK
pkg upgrade = error...

the error comes before a query to the sql database at pkgdb.c line 2133
seems that buf-flags is missing SBUF_FINISHED...

data at buf is

s_buf = 0x80081d200 INSERT OR IGNORE INTO pkgjobs (pkgid, origin, name,
version, comment, desc, arch, osversion, maintainer, www, prefix,
flatsize, pkgsize, cksum, repopath, automatic) SELECT id, origin, name,
version, c..., s_unused = 0x0, s_size = 512, s_len = 363, s_flags =
589825}


on downgrade to beta 1, 
it works


___
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: VirtualBox, vboxwebsrv and VRDPAuth

2012-01-04 Thread Sergio de Almeida Lenzi
Em Ter, 2012-01-03 às 09:19 +0100, Bernhard Froehlich escreveu:

 On 02.01.2012 22:23, Marek Salwerowicz wrote:
  Hi all,
 
  My host is 9.0-RC3 amd64.
 
  I've installed VirtualBox from /usr/ports/emulation/virtualbox-ose
  port, with GUESTADDITIONS, DBUS, VNC and WEBSERVICE options.
 
 

I use FBSD amd64, without VRDP  and  virtualbox 4.1.8 from redports, and
started it with VNC, installed a windows XP (32)
and runs like a charm.. I configured windows to remote administration
(rdp) and can than
access all of the VM funcions without problem

Sergio


___
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: upgrade of postgresql-contrib from 8.4.8 to 8.4.9 fails

2011-11-02 Thread Sergio de Almeida Lenzi
Try this;
pkg_delete -f postgresql-server postgresql-client
make sure it has been removed...
than.
cd /usr/ports/databases/postgresql84-server
make clean config
In the configuration menu UNMARK GSSAPI
then 
cd /usr/ports/databases/postgresql84-client
make clean config
In the configuration menu UNMARK GSSAPI
back to  server...
cd /usr/ports/databases/postgresql84-server
make install
--
This will build libpq.so.5 without the gssapi.

For me this works

Sergio
___
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: dconf gconf wtfconf ?

2011-11-02 Thread Sergio de Almeida Lenzi
Não é possível abrir diretório

 Can anyone explain the difference or need for both of these ?
 
 ports/devel/gconf -( Should'nt this be the only one needed ? )
 ports/devel/dconf
 
 I just noticed dconf installed on my system.
 
 Both of these have the same WWW: of:
 http://www.gnome.org/projects/gconf/
 
 _

for me if I build gnome from scratch, and build with
dconf, gnome does not work.

I than disable dconf, and enable only gconf,
the system build ok, and works...

Basically dconf install gnome registry in a binary file
wile gconf installs in a xml structure...

Sergio
___
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: databases/postgresql90-contrib fails to build

2011-10-24 Thread Sergio de Almeida Lenzi
Em Dom, 2011-10-23 às 11:35 +0200, Rainer Hurling escreveu:

 When I try to build databases/postgresql90-contrib, it stops with not 
 finding the right uuid lib:
 
 #cd /usr/ports/databases/databases/postgresql90-contrib
 # make
 ===  Vulnerability check disabled, database not found
 ===  License check disabled, port has not defined LICENSE
 ===  Extracting for postgresql-contrib-9.0.5
 = SHA256 Checksum OK for postgresql/postgresql-9.0.5.tar.bz2.
 ===  Patching for postgresql-contrib-9.0.5
 ===  Applying FreeBSD patches for postgresql-contrib-9.0.5
 ===   postgresql-contrib-9.0.5 depends on executable: gmake - found
 ===   postgresql-contrib-9.0.5 depends on executable: bison - found
 ===   postgresql-contrib-9.0.5 depends on shared library: xslt.2 - found
 ===   postgresql-contrib-9.0.5 depends on shared library: xml2.5 - found
 ===   postgresql-contrib-9.0.5 depends on shared library: pq.5 - found
 ===  Configuring for postgresql-contrib-9.0.5
 checking build system type... amd64-portbld-freebsd9.0
 [..SNIP..]
 checking for -lreadline... yes (-lreadline)
 checking for inflate in -lz... yes
 checking for CRYPTO_new_ex_data in -lcrypto... yes
 checking for SSL_library_init in -lssl... yes
 checking for xmlSaveToBuffer in -lxml2... yes
 checking for xsltCleanupGlobals in -lxslt... yes
 checking for uuid_export in -lossp-uuid... no
 checking for uuid_export in -luuid... no
 configure: error: library 'ossp-uuid' or 'uuid' is required for OSSP-UUID
 ===  Script configure failed unexpectedly.
 Please report the problem to gir...@freebsd.org [maintainer] and attach the
 /usr/ports/databases/postgresql90-contrib/work/postgresql-9.0.5/config.log
 including the output of the failure of your make command. Also, it might be
 a good idea to provide an overview of all packages installed on your system
 (e.g. an `ls /var/db/pkg`).
 *** Error code 1
 
 
 Obviously the port would like to have misc/ossp-uuid installed. But this 
 conflicts with misc/e2fsprogs-libuuid, which was installed by KDE4.
 
 An old PR http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/121745 shows 
 some more complexity with this issue. There Jørgen Kjærsgaard told about 
 a possible solution, but the PR was reopened in December 2009.
 
 Is there anybody working on this or is there a workaround?
 
 Thanks in advance,
 Rainer Hurling
 
 ___
 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


for me i disabled GSSAPI on postgresql-server port and rebuild the
server and client...

___
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: Snort failing after latest PostGreSQL upgrade

2011-10-19 Thread Sergio de Almeida Lenzi
a workaround is to edit /etc/libmap.conf
and add the line:
libpq.so.5libpq.so



Sergio
___
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: testing PKGNG

2011-09-14 Thread Sergio de Almeida Lenzi
Em Qua, 2011-09-14 às 10:43 +0200, Baptiste Daroussin escreveu:

 
 no pkgng do ont share something penguinist at all :)
 
 pkgng is just the result of long studies and reflexion about packaging
 (studying
 what is done elsewhere: apt/dpkg, yum/rpm, pacman, aix, solaris,
 netbsd, openbsd
 and how to have something that try to take the good ideas from there,
 try not to
 take the *over engineered* complicated part. And most important try to
 do it the
 FreeBSD way: which means it should work with the ports tree as-is (and
 help
 improve it in the future), so we are safe no real penguinism in
 pkgng :) 

I think pkgng will on on his way to the freebsd release (perhaps the 9.x
will include it in the base system)
but I need a solution now. Even if portmaster, is an excelent software,
it could not help
me (40 servers, and counting...) each server with about 880 packages
that must be in sync

The solution pkgng gives me, is what I was looking for, even the
software is alpha...
and sure have some problems, the version I tested (the one is in the
servers) is working
for me. I even tried to port pacman, from arch linux, but pkgng is
even faster.. 

Sergio
___
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


testing PKGNG...

2011-09-13 Thread Sergio de Almeida Lenzi
Hello,

I moved all my servers (about 40) to the pkgng (new generation)
package/port 
system, and I can say that it is amazing... it is not yet finish, and
have some
minor issues, but works very well, and is lightning fast..  

It is almost the same as pacman  (from Archlinux)..  you build a 
repository  and install packages from that repository. when you
update the repository, the other servers can do an upgrade.. 
you do not have to have the ports tree in each server, and
you build the ports only on the master server

in the master server, there is a full gnome2 (with 842 dependencies)
that install right on the shelf with only one command: pkg install
gnome2
now I have a full functional server runing gnome, libreoffice, inkscape
hplip, cups printing, gdm...  in about 30 minutes from internet


Sergio...


___
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: UPDATING 20110730

2011-08-01 Thread Sergio de Almeida Lenzi
Hello

Even I use portmaster (a very good piece of software),
it becomes very slow when you have 1550 ports installed in your
system.

As only a few ports (about 100, in my case)  changes in a week time,
I build a database (postgres) that contains all the ports installed,
de depencies and a flag that tells me if that port needs updating
(pkg_version)
a shell script scans the ports (pkg_info | cut -d ' ' -f 1) and builds
the database once a week (can take several hours... 

Once the database is built,  an sql query (only ms...) tells me what to
do...
it then executes pkg_delete, cd /usr/ports/..., make clean all package..
and after doing all the job, it updates the postgresql database
(seconds... ).

In my case I use a central server with all the 1550 ports... and all I
do
is to install them on the slaves, (again, using the postgres database
data)...

Hope this can give someone some ideas

Sergio
___
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: p5-libwww + portmaster

2011-07-18 Thread Sergio de Almeida Lenzi
Não é possível abrir diretório

 Hi List,
 
 The package p5-libwww has a problem to be updated with the portmaster,
 when trying to update it it gets into an infinite loop:
 
 === Launching child to update p5-libwww-5.837 to p5-libwww-6.02
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837  p5-libwww-5.837  p5-libwww-5.837 
 p5-libwww-5.837
 
 === Port directory: /usr/ports/www/p5-libwww
 
 === Launching 'make checksum' for www/p5-libwww in background
 === Gathering dependency list for www/p5-libwww from ports
 
 === The dependency for net/p5-Net-HTTP
seems to be handled by p5-libwww-5.837
 
 has anyone else had this problem?
 
 Thanks
 


Yes it happens for me...
my solution is to comment all de DEPENDS in the Makefile of the package

It is a dirty solution, I know, but I am waiting for the manteiner of
the package to fix it...


Sergio
___
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: mencoder

2011-06-24 Thread Sergio de Almeida Lenzi
The problem is that it is missing cflags in the module codec-cfg.c
a fix (dirty)  in the mencoder makefile does the trick


--- Makefile.orig   2011-06-24 10:18:38.856768653 -0300
+++ Makefile2011-06-24 10:18:43.546211306 -0300
@@ -170,6 +170,9 @@
-e 's#HAVE_LOG2 1#HAVE_LOG2 0#g' \
-e 's#HAVE_LOG2F 1#HAVE_LOG2F 0#g' \
${WRKSRC}/config.h
+   @${REINPLACE_CMD} \
+   -e s;-Iffmpeg;-Iffmpeg `pkg-config --cflags libass`; ${WRKSRC}
+
 
 do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/mencoder ${PREFIX}/bin


___
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: 8.2-RC1 tightvnc-1.3.10 installs 0 byte files, deinstall fails

2011-06-06 Thread Sergio de Almeida Lenzi
I use the vnc port  (net/vnc)
it is faster, and works very good with inetd/Xvnc.

thightvnc lacks features in Xvnc. and it is slower than the realvnc too
___
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: lang/guile build fails for me (SOLVED)

2011-06-01 Thread Sergio de Almeida Lenzi
for me, it worked when I comment the
line that says USE_NCURSES, in the Makefile
line 25.

Probably an error in the configure logic...

___
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: Call for Testers: VirtualBox 4.0.6

2011-04-24 Thread Sergio de Almeida Lenzi
For me it is working...
running windows XP dnd linux over an old(4.0.2) image it is ok...
very stable...

Only a problem remains (that is not still fixed): 
it is the problem with the vnc in VBoxHeadless
the cursor is not in sync (the vnc cursor) is not
in sync with the XP cursor.. although  the sync
is better (compared with 4.0.2 but is still out of sync)...
How to reproduce:  
VBoxHeadless  --vnc --vncport 5901 --startvm XPimg
then goto another machine and execute:
vncviewer x.x.x.x:5901, the system opens works but the
mouse cursor is not in sync...

Question:  Will there be a fix???

Thanks for your attention

Happy Easter for all
___
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 Port: transmission-2.22

2011-03-07 Thread Sergio de Almeida Lenzi
Em Dom, 2011-03-06 às 14:24 +0100, Barbara escreveu:

  Because, probably it's not a good solution.
  I'm useing memcached witch need libevent to work.
  So removing libevent, will broke memcached :-(
 

you can apply this patch (attached)
in /usr/ports/net-p2p/transmission-cli
patch  Makefile.diff
and rebuild the port
--- Makefile.orig	2011-03-05 01:17:28.0 -0300
+++ Makefile	2011-03-07 13:08:34.711008817 -0300
@@ -29,7 +29,8 @@
 USE_OPENSSL=	yes
 GNU_CONFIGURE=	yes
 CPPFLAGS=	-I${LOCALBASE}/include
-LDFLAGS=	-L${LOCALBASE}/lib
+LDFLAGS+=	`pkg-config --libs libevent`
+LDFLAGS+=	-L${LOCALBASE}/lib
 CONFIGURE_ENV=	CPPFLAGS=${CPPFLAGS}
 CONFIGURE_ARGS=--with-zlib=/usr \
 		--disable-libappindicator \
@@ -38,6 +39,7 @@
 EXTRA_CONF_ARGS?=--enable-cli \
 		 --disable-daemon \
 		 --disable-gtk \
+		 --disable-silent-rules \
 		 --disable-libnotify \
 		 --disable-mac \
 		 --disable-nls
___
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: Find a corrupt port

2011-02-26 Thread Sergio de Almeida Lenzi
I use this script to get rid of the problem
the script detects @pkgdep record without argument
and deletes it from the +CONTENTS file in the /var/db/pkg/* directory
===

for i in /var/db/pkg/*/+CONTENTS
do
if grep -q @pkgdep $ $i 
then
sed -i  -e /@pkgdep $/d $i
echo nullpkg in $i
fi
done

==





Em Sáb, 2011-02-26 às 15:22 +0100, David Demelier escreveu:

 Hello,
 
 It seems I have a corrupted port on my system :
 
 $ pkg_info
 [...]
 dmxproto-2.3DMX extension headers
 pkg_info: corrupted record (pkgdep line without argument), ignoring
 pkg_info: corrupted record (pkgdep line without argument), ignoring
 pkg_info: corrupted record (pkgdep line without argument), ignoring
 pkg_info: corrupted record (pkgdep line without argument), ignoring
 docproj-1.17_4  The meta-port for the FreeBSD Documentation Project
 [...]
 
 Because it happens after dmxproto O tought it was this one, but after a 
 make deinstall reinstall in x11/dmxproto the corrupt message is still 
 there so I'm guessing if it's the corrupted port.
 
 How can I easily find?
 
 Cheers,
 


___
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: Call for Testers: VirtualBox 4.0.4

2011-02-18 Thread Sergio de Almeida Lenzi
I have been using the 4.0.2 version in our production system
running FreeBSD 8.2 with a dual xeon 6 cores (12 cpus seen in the
kernel)
running 8 windows XP and 2 windows 2003 nt.
besides it runs webserver, databases (postgres, mysql)... on the top
of a ZFS.. running for weeks at full load... 
Congratulations for the great JOB

next week will try the 4.0.4 version


Sergio
___
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: [CFT] xf86-video-ati 6.14.0

2011-02-08 Thread Sergio de Almeida Lenzi
For me it worked ok 

FreeBSD 8.2 amd74 ati-radeon

Seems that is faster than the other
and resolve some issues with suspend/resume too



___
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


Libreoffice spadmin

2011-02-05 Thread Sergio de Almeida Lenzi
spadmin fails (missing libs)

Please consider creating a file libreoffice
in /usr/local/libdata/ldconfig
during the install process, with contains:
/usr/local/lib/libreoffice/basis3.3/program
/usr/local/lib/libreoffice/ure/lib

so spadmin and friends will find the required libs to work.

Thank for your attention,
Sergio

___
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: [CFT] cpu stresser^W libreoffice 3.3.0 final (final test here...)

2011-02-04 Thread Sergio de Almeida Lenzi
There is a final bug  in the package list
when you define in the options (make config) gnome=yes
the pkg-plist builds the +CONTENTS with a / in front of the gnome file
list

Solution:
edit the pkg-plist and remove the first / from the GNOMEOPT at line
1791, 1792
make reinstall package, 
and the system packages fine.
___
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: Instructions on Installing HP LaserJet P1102 on FreeBSD 8 (solved)

2011-01-30 Thread Sergio de Almeida Lenzi
Em Seg, 2011-01-31 às 06:28 +1100, Peter Jeremy escreveu:

 On 2011-Jan-30 16:03:30 +0100, Matthias Andree matthias.and...@gmx.de wrote:
 Again, please obtain instructions to do the equivalent in FreeBSD, without
 Windows. Ask HP support if needed. This is probably nothing more than just 
 one
 command to send to the printer.
 
 My last experience with HP support has convinced me to never buy HP
 again.  They are completely useless.
 

put ACER in your list too the notebooks have brain damaged bios...
___
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: KDE4 load libicui18n.so.38 not found - can create system crash!

2010-12-31 Thread Sergio de Almeida Lenzi
for me, I solved this problem with this script, use: sh script
libicui18n.s0.38
it scans every lib in /usr/local  for the string libicui18n.so.38
and than finds the package that has that lib,
finally it builds the ports that have that string.

===
t=/tmp/$$
find /usr/local -name *.so | \
while read x
do
if grep $1 $x
then
pkg_info -qW $x  $t
echo found in $x
fi
done
if [ -s $t ]
then
portmaster $(sort -u $t)
fi
rm -f $t


___
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: ImageMagick upgrade problem

2010-11-23 Thread Sergio de Almeida Lenzi
Em Ter, 2010-11-23 às 17:50 +, David Southwell escreveu:

 Puzzled
 
 I have perl installed with threads but getting the following upgrade problem 
 with graphics/ImageMagick. The upgrade fails to recognise reality - Perl is 
 installed with threads!
 with OpenEXR or OpenMP I get the same problem:

Make sure that perl is compiled with threads  and.

for me I solved the problem by
defining in /etc/make.conf.PERL_THREADED=true

it works, but the real solution is to fix the port
either in IMagemagick or in perl ...



___
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 Ports Problem - Please help

2010-02-12 Thread Sergio de Almeida Lenzi
try to make it work again (with the now missing libjpeg.so.10...
by inserting a line in the /etc/libmap.conf

echo libjpeg.so.10 libjpeg.so   /etc/libmap.conf

than probably all will work again... by the time you build all ports,
the later will be linked agains version 11.. and than you can 
delete the line in the libmap.conf


Hope this will help.
___
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: Recent massive port update.

2010-02-06 Thread Sergio de Almeida Lenzi
My solution I work witho about 50 freebsd servers, is 
to setup ONE server for each type (7.2,8.0) and install all the
ports I need..

Than using rsync I export
the /var/db/ports, /var/db/portsnap, /usr/ports (excluding
distfiles,packages, and work dirs)...

Than I use rsync and portsnap -PP -aBd  to sync the other servers...

to build the master server, took only one hour (in the case of
jpeg... ) .   some hours later, all the bsd servers are up to date ...


Sergio
___
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