Re: Crashing net/microsocks if DNS being proxied

2020-08-10 Thread Pavel Timofeev
вс, 9 авг. 2020 г. в 16:30, Pavel Timofeev :

>
>  Pavel Timofeev :
>
>> Hello
>>
>> I'd like to take advantage of net/microsocks port - a small SOCKSv5
>> server.
>> It's v1.0.1 (https://github.com/rofl0r/microsocks/tree/v1.0.1) under
>> 12.1 RELEASE amd64.
>> It works OK with firefox until I ask firefox to proxy DNS via socks also.
>> It cashes after getaddrinfo() call.
>> I have quite poor C knowledge and I can't understand what's wrong with it.
>> Parameters passed to getaddrinfo() looks OK
>> Can anybody advise where to look at also?
>>
>>
>>
>> $ gdb92 microsocks microsocks.core
>>
>>
>> GNU gdb (GDB) 9.2 [GDB v9.2 for FreeBSD]
>>
>> Copyright (C) 2020 Free Software Foundation, Inc.
>>
>> License GPLv3+: GNU GPL version 3 or later <
>> http://gnu.org/licenses/gpl.html>
>>
>>
>> This is free software: you are free to change and redistribute it.
>>
>>
>> There is NO WARRANTY, to the extent permitted by law.
>>
>>
>> Type "show copying" and "show warranty" for details.
>>
>> This GDB was configured as "x86_64-portbld-freebsd12.1".
>>
>>
>> Type "show configuration" for configuration details.
>>
>> For bug reporting instructions, please see:
>>
>> <http://www.gnu.org/software/gdb/bugs/>.
>>
>> Find the GDB manual and other documentation resources online at:
>>
>>
>> <http://www.gnu.org/software/gdb/documentation/>.
>>
>>
>>
>> For help, type "help".
>> Type "apropos word" to search for commands related to "word"...
>>
>>
>> Reading symbols from microsocks...
>>
>> [New LWP 100579]
>> [New LWP 100347]
>> Core was generated by `./microsocks'.
>>
>> Program terminated with signal SIGSEGV, Segmentation fault.
>>
>>
>> #0  0x0008003e5467 in _getht (hostf=0x7fffdfffd238,
>> name=0x7fffdfffda20 "freebsd.org",
>>
>>
>> pai=0x7fffdfffd5a0, cur=0x7fffdfffd240) at
>> /usr/src/lib/libc/net/getaddrinfo.c:2476
>>
>>
>> 2476{
>> [Current thread is 1 (LWP 100579)]
>>
>> (gdb) bt
>> #0  0x0008003e5467 in _getht (hostf=0x7fffdfffd238,
>> name=0x7fffdfffda20 "freebsd.org", pai=0x7fffdfffd5a0,
>> cur=0x7fffdfffd240) at /usr/src/lib/libc/net/getaddrinfo.c:2476
>> #1  0x0008003e4990 in _files_getaddrinfo (rv=0x7fffdfffd670,
>> cb_data=, ap=) at
>> /usr/src/lib/libc/net/getaddrinfo.c:2515
>> #2  0x00080040df6c in _nsdispatch (retval=0x7fffdfffd670,
>> disp_tab=0x8004482e0, database=, method_name=0x8002bafb7
>> "getaddrinfo", defaults=)
>> at /usr/src/lib/libc/net/nsdispatch.c:716
>> #3  0x0008003e30b3 in explore_fqdn (pai=0x1, hostname=> out>, servname=0x7fffdfffd860 "80", res=) at
>> /usr/src/lib/libc/net/getaddrinfo.c:1945
>> #4  getaddrinfo (hostname=, servname=0x7fffdfffd860 "80",
>> hints=, res=0x7fffdfffda18) at
>> /usr/src/lib/libc/net/getaddrinfo.c:576
>> #5  0x002037f6 in resolve (host=0x7fffdfffda20 "freebsd.org",
>> port=80, addr=0x7fffdfffda18) at server.c:14
>> #6  0x002030e8 in connect_socks_target (buf=0x7fffdfffdba0
>> "\005\001", n=18, client=0x800689038) at sockssrv.c:136
>> #7  0x002029e3 in clientthread (data=0x800689030) at
>> sockssrv.c:317
>> #8  0x00080025a736 in thread_start (curthread=0x800683500) at
>> /usr/src/lib/libthr/thread/thr_create.c:292
>> #9  0x in ?? ()
>> Backtrace stopped: Cannot access memory at address 0x7fffdfffe000
>> (gdb) f 5
>> #5  0x002037f6 in resolve (host=0x7fffdfffda20 "freebsd.org",
>> port=80, addr=0x7fffdfffda18) at server.c:14
>> 14  return getaddrinfo(host, port_buf, &hints, addr);
>> (gdb) p host
>> $1 = 0x7fffdfffda20 "freebsd.org"
>> (gdb) p port_buf
>> $2 = "80\000\000\b\000\000"
>> (gdb) p hints
>> $3 = {ai_flags = 1, ai_family = 0, ai_socktype = 1, ai_protocol = 0,
>> ai_addrlen = 0, ai_canonname = 0x0, ai_addr = 0x0, ai_next = 0x0}
>> (gdb) p *addr
>> $4 = (struct addrinfo *) 0x0
>> (gdb) list
>> 9   .ai_socktype = SOCK_STREAM,
>> 10  .ai_flags = AI_PASSIVE,
>> 11  };
>> 12  char port_buf[8];
>> 13  snprintf(port_buf, sizeof port_buf, "%u", port);
>> 14  return getaddrinfo(host, port_buf, &hints, addr);
>> 15  }
>> 16
>> 17  int server_bindtoip(const struct server *server, int fd) {
>> 18  if(server->bindaddr.v4.sin_family != AF_UNSPEC)
>>
>>
>>
>> However, it works OK under Linux no matter if DNS proxied or not.
>> Thank you!
>>
>
>
>
> I'm not asking for full debug session, just a few clues or an advice which
> way to dig probably.
>


Ahh, it fiddles with PTHREAD_STACK_MIN. It's the root cause.
___
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: Crashing net/microsocks if DNS being proxied

2020-08-09 Thread Pavel Timofeev
 Pavel Timofeev :

> Hello
>
> I'd like to take advantage of net/microsocks port - a small SOCKSv5 server.
> It's v1.0.1 (https://github.com/rofl0r/microsocks/tree/v1.0.1) under 12.1
> RELEASE amd64.
> It works OK with firefox until I ask firefox to proxy DNS via socks also.
> It cashes after getaddrinfo() call.
> I have quite poor C knowledge and I can't understand what's wrong with it.
> Parameters passed to getaddrinfo() looks OK
> Can anybody advise where to look at also?
>
>
>
> $ gdb92 microsocks microsocks.core
>
>
> GNU gdb (GDB) 9.2 [GDB v9.2 for FreeBSD]
>
> Copyright (C) 2020 Free Software Foundation, Inc.
>
> License GPLv3+: GNU GPL version 3 or later <
> http://gnu.org/licenses/gpl.html>
>
>
> This is free software: you are free to change and redistribute it.
>
>
> There is NO WARRANTY, to the extent permitted by law.
>
>
> Type "show copying" and "show warranty" for details.
>
> This GDB was configured as "x86_64-portbld-freebsd12.1".
>
>
> Type "show configuration" for configuration details.
>
> For bug reporting instructions, please see:
>
> <http://www.gnu.org/software/gdb/bugs/>.
>
> Find the GDB manual and other documentation resources online at:
>
>
> <http://www.gnu.org/software/gdb/documentation/>.
>
>
>
> For help, type "help".
> Type "apropos word" to search for commands related to "word"...
>
>
> Reading symbols from microsocks...
>
> [New LWP 100579]
> [New LWP 100347]
> Core was generated by `./microsocks'.
>
> Program terminated with signal SIGSEGV, Segmentation fault.
>
>
> #0  0x0008003e5467 in _getht (hostf=0x7fffdfffd238,
> name=0x7fffdfffda20 "freebsd.org",
>
>
> pai=0x7fffdfffd5a0, cur=0x7fffdfffd240) at
> /usr/src/lib/libc/net/getaddrinfo.c:2476
>
>
> 2476{
> [Current thread is 1 (LWP 100579)]
>
> (gdb) bt
> #0  0x0008003e5467 in _getht (hostf=0x7fffdfffd238,
> name=0x7fffdfffda20 "freebsd.org", pai=0x7fffdfffd5a0,
> cur=0x7fffdfffd240) at /usr/src/lib/libc/net/getaddrinfo.c:2476
> #1  0x0008003e4990 in _files_getaddrinfo (rv=0x7fffdfffd670,
> cb_data=, ap=) at
> /usr/src/lib/libc/net/getaddrinfo.c:2515
> #2  0x00080040df6c in _nsdispatch (retval=0x7fffdfffd670,
> disp_tab=0x8004482e0, database=, method_name=0x8002bafb7
> "getaddrinfo", defaults=)
> at /usr/src/lib/libc/net/nsdispatch.c:716
> #3  0x0008003e30b3 in explore_fqdn (pai=0x1, hostname=,
> servname=0x7fffdfffd860 "80", res=) at
> /usr/src/lib/libc/net/getaddrinfo.c:1945
> #4  getaddrinfo (hostname=, servname=0x7fffdfffd860 "80",
> hints=, res=0x7fffdfffda18) at
> /usr/src/lib/libc/net/getaddrinfo.c:576
> #5  0x002037f6 in resolve (host=0x7fffdfffda20 "freebsd.org",
> port=80, addr=0x7fffdfffda18) at server.c:14
> #6  0x002030e8 in connect_socks_target (buf=0x7fffdfffdba0
> "\005\001", n=18, client=0x800689038) at sockssrv.c:136
> #7  0x002029e3 in clientthread (data=0x800689030) at sockssrv.c:317
> #8  0x00080025a736 in thread_start (curthread=0x800683500) at
> /usr/src/lib/libthr/thread/thr_create.c:292
> #9  0x in ?? ()
> Backtrace stopped: Cannot access memory at address 0x7fffdfffe000
> (gdb) f 5
> #5  0x002037f6 in resolve (host=0x7fffdfffda20 "freebsd.org",
> port=80, addr=0x7fffdfffda18) at server.c:14
> 14  return getaddrinfo(host, port_buf, &hints, addr);
> (gdb) p host
> $1 = 0x7fffdfffda20 "freebsd.org"
> (gdb) p port_buf
> $2 = "80\000\000\b\000\000"
> (gdb) p hints
> $3 = {ai_flags = 1, ai_family = 0, ai_socktype = 1, ai_protocol = 0,
> ai_addrlen = 0, ai_canonname = 0x0, ai_addr = 0x0, ai_next = 0x0}
> (gdb) p *addr
> $4 = (struct addrinfo *) 0x0
> (gdb) list
> 9   .ai_socktype = SOCK_STREAM,
> 10  .ai_flags = AI_PASSIVE,
> 11  };
> 12  char port_buf[8];
> 13  snprintf(port_buf, sizeof port_buf, "%u", port);
> 14  return getaddrinfo(host, port_buf, &hints, addr);
> 15  }
> 16
> 17  int server_bindtoip(const struct server *server, int fd) {
> 18  if(server->bindaddr.v4.sin_family != AF_UNSPEC)
>
>
>
> However, it works OK under Linux no matter if DNS proxied or not.
> Thank you!
>



I'm not asking for full debug session, just a few clues or an advice which
way to dig probably.
___
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: I want to maintain security/pssh

2020-08-07 Thread Pavel Timofeev
чт, 23 июл. 2020 г. в 18:24, Pavel Timofeev :

> чт, 23 июл. 2020 г. в 11:33, Muhammad Moinur Rahman :
>
>> Hi,
>>
>> Please submit a patch with some improvements of the current port and
>> resetting the MAINTAINERSHIP to your email address in our bugzilla.
>>
>> Kind Regards,
>> Moin
>>
>> > On 23 Jul, 2020, at 14:25, Pavel Timofeev  wrote:
>> >
>> > Hello, I'd like to take maintainership of security/pssh if no objections
>> >
>>
>
> Done! https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=248208
>


Sorry, could anybody take a look at that (security/pssh: switch to the most
viable fork)?
___
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"


Crashing net/microsocks if DNS being proxied

2020-08-06 Thread Pavel Timofeev
Hello

I'd like to take advantage of net/microsocks port - a small SOCKSv5 server.
It's v1.0.1 (https://github.com/rofl0r/microsocks/tree/v1.0.1) under 12.1
RELEASE amd64.
It works OK with firefox until I ask firefox to proxy DNS via socks also.
It cashes after getaddrinfo() call.
I have quite poor C knowledge and I can't understand what's wrong with it.
Parameters passed to getaddrinfo() looks OK
Can anybody advise where to look at also?



$ gdb92 microsocks microsocks.core


GNU gdb (GDB) 9.2 [GDB v9.2 for FreeBSD]

Copyright (C) 2020 Free Software Foundation, Inc.

License GPLv3+: GNU GPL version 3 or later 


This is free software: you are free to change and redistribute it.


There is NO WARRANTY, to the extent permitted by law.


Type "show copying" and "show warranty" for details.

This GDB was configured as "x86_64-portbld-freebsd12.1".


Type "show configuration" for configuration details.

For bug reporting instructions, please see:

.

Find the GDB manual and other documentation resources online at:


.



For help, type "help".
Type "apropos word" to search for commands related to "word"...


Reading symbols from microsocks...

[New LWP 100579]
[New LWP 100347]
Core was generated by `./microsocks'.

Program terminated with signal SIGSEGV, Segmentation fault.


#0  0x0008003e5467 in _getht (hostf=0x7fffdfffd238, name=0x7fffdfffda20
"freebsd.org",

pai=0x7fffdfffd5a0, cur=0x7fffdfffd240) at
/usr/src/lib/libc/net/getaddrinfo.c:2476


2476{
[Current thread is 1 (LWP 100579)]

(gdb) bt
#0  0x0008003e5467 in _getht (hostf=0x7fffdfffd238, name=0x7fffdfffda20
"freebsd.org", pai=0x7fffdfffd5a0, cur=0x7fffdfffd240) at
/usr/src/lib/libc/net/getaddrinfo.c:2476
#1  0x0008003e4990 in _files_getaddrinfo (rv=0x7fffdfffd670,
cb_data=, ap=) at
/usr/src/lib/libc/net/getaddrinfo.c:2515
#2  0x00080040df6c in _nsdispatch (retval=0x7fffdfffd670,
disp_tab=0x8004482e0, database=, method_name=0x8002bafb7
"getaddrinfo", defaults=)
at /usr/src/lib/libc/net/nsdispatch.c:716
#3  0x0008003e30b3 in explore_fqdn (pai=0x1, hostname=,
servname=0x7fffdfffd860 "80", res=) at
/usr/src/lib/libc/net/getaddrinfo.c:1945
#4  getaddrinfo (hostname=, servname=0x7fffdfffd860 "80",
hints=, res=0x7fffdfffda18) at
/usr/src/lib/libc/net/getaddrinfo.c:576
#5  0x002037f6 in resolve (host=0x7fffdfffda20 "freebsd.org",
port=80, addr=0x7fffdfffda18) at server.c:14
#6  0x002030e8 in connect_socks_target (buf=0x7fffdfffdba0
"\005\001", n=18, client=0x800689038) at sockssrv.c:136
#7  0x002029e3 in clientthread (data=0x800689030) at sockssrv.c:317
#8  0x00080025a736 in thread_start (curthread=0x800683500) at
/usr/src/lib/libthr/thread/thr_create.c:292
#9  0x in ?? ()
Backtrace stopped: Cannot access memory at address 0x7fffdfffe000
(gdb) f 5
#5  0x002037f6 in resolve (host=0x7fffdfffda20 "freebsd.org",
port=80, addr=0x7fffdfffda18) at server.c:14
14  return getaddrinfo(host, port_buf, &hints, addr);
(gdb) p host
$1 = 0x7fffdfffda20 "freebsd.org"
(gdb) p port_buf
$2 = "80\000\000\b\000\000"
(gdb) p hints
$3 = {ai_flags = 1, ai_family = 0, ai_socktype = 1, ai_protocol = 0,
ai_addrlen = 0, ai_canonname = 0x0, ai_addr = 0x0, ai_next = 0x0}
(gdb) p *addr
$4 = (struct addrinfo *) 0x0
(gdb) list
9   .ai_socktype = SOCK_STREAM,
10  .ai_flags = AI_PASSIVE,
11  };
12  char port_buf[8];
13  snprintf(port_buf, sizeof port_buf, "%u", port);
14  return getaddrinfo(host, port_buf, &hints, addr);
15  }
16
17  int server_bindtoip(const struct server *server, int fd) {
18  if(server->bindaddr.v4.sin_family != AF_UNSPEC)



However, it works OK under Linux no matter if DNS proxied or not.
Thank you!
___
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: I want to maintain security/pssh

2020-07-23 Thread Pavel Timofeev
чт, 23 июл. 2020 г. в 11:33, Muhammad Moinur Rahman :

> Hi,
>
> Please submit a patch with some improvements of the current port and
> resetting the MAINTAINERSHIP to your email address in our bugzilla.
>
> Kind Regards,
> Moin
>
> > On 23 Jul, 2020, at 14:25, Pavel Timofeev  wrote:
> >
> > Hello, I'd like to take maintainership of security/pssh if no objections
> >
>

Done! https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=248208
___
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"


I want to maintain security/pssh

2020-07-23 Thread Pavel Timofeev
Hello, I'd like to take maintainership of security/pssh if no objections
___
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: set_rcvar() function use?

2020-07-05 Thread Pavel Timofeev
сб, 4 июл. 2020 г. в 08:11, Hiroki Sato :

> Mateusz Piotrowski <0...@freebsd.org> wrote
>   in <34921b6e-ce3a-13e4-0cc1-3ca47b5a9...@freebsd.org>:
>
> 0m> >  I am planning to revisit the multi-instance support shortly because
> I
> 0m> >  am using it for a long time and I think it is useful.  While I did
> 0m> >  not receive a strong objection to it so far, it is also true that
> 0m> >  adopting the set_rcvar() style was not discussed properly.  I would
> 0m> >  like more feedback before moving forward.
> 0m>
> 0m> AFAIR, manu@ was concerned at some point that using set_rcvar()
> extensively
> 0m> might result in slowdowns on embedded systems.
>
>  A discussion in the past about the performance was an additional
>  fork(2) when using set_rcvar() for rc_var=`set_rcvar`.  The use case
>  of the resurrected one is "set_rcvar A B" as a replacement of "A=B",
>  and it does not involve a subshell.
>
>  I agree that the performance perspective should also be discussed,
>  though.  The current rc.subr and network.subr already have more
>  expensive operations, so we might want to gather profiling
>  information.
>
>
Thanks a lot for the answers!

It's great that the only existed concern is not a problem anymore for the
resurrected "set_rcvar A B" form.
IMO features like setting variable description and ability to "ask" rc
script what variables/options are available are really great even without
multi-instance support.
___
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"


set_rcvar() function use?

2020-07-02 Thread Pavel Timofeev
Hello, dear community. I'm confused, please, help me.

There is a rc.subr function which was buried[1] and resurrected[2] after a
couple of years in almost the same form.

I don't know what happened behind the scenes, but I have a question.
Is it a preferable way to define a rc.conf variable these days in rc
scripts (again/over and over)?

If it is then I'd like to propose changes to FreeBSD porters handbook page
where basic rc script is described[3]


Also rc.subr(8) man page is missing set_rcvar() function description. BTW
it's missing a lot more functions description from rc.subr (are missing
functions for internal use only?)

If it's not then tell me please what it was resurrected for. Just curious
and for the record. I maintain several ports and want to know what is
considered the right/preferable way to write rc scripts.

[1]
https://lists.freebsd.org/pipermail/freebsd-current/2012-January/031246.html
 https://svnweb.freebsd.org/base?view=revision&revision=230099
 https://svnweb.freebsd.org/base?view=revision&revision=230103
 https://svnweb.freebsd.org/base?view=revision&revision=230105
[2] https://svnweb.freebsd.org/base?view=revision&revision=272393
[3]
https://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/rc-scripts.html


___
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: Several squid-related PRs to commit

2020-05-18 Thread Pavel Timofeev
:

> Hi!
>
> > Could anybody take a look at these PRs and commit them if possible?
>
> Done.
>
> --
> p...@opsec.eu+49 171 3101372Now what ?
>

Highly appreciate!

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


Several squid-related PRs to commit

2020-05-17 Thread Pavel Timofeev
Hi,

Could anybody take a look at these PRs and commit them if possible?

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=246355 - www/squid-devel:
add patch to fix kerberos_ldap_group helper
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=246410 - www/squid:
pinger doesn't start after r533790 change
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=245861 - www/squid: 4.11
fails to build: error: no member named 'keyblock' in 'krb5_creds'

Didn't want to bother anyone, but squid port is quite popular, so I just
wanted to provide better freebsd use experience
___
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: Recommendations

2020-05-03 Thread Pavel Timofeev
сб, 25 апр. 2020 г. в 00:07, The Doctor via freebsd-ports
:
>
> 1) Openssl 3.0 alpha 1 is out.  I did test and recommend a port be done.
>
> 2) Squid 5.0.2 is out.  I got this work.  I recommend a Squid 5 port.
>

Squid 5.0.2 port is ready for testing
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=246140
___
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"


Commit net/udpxy update

2019-12-05 Thread Pavel Timofeev
Hello.

Could anyone please commit net/udpxy update placed in
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=242069?


It tested at my home, passed automated build in nice swills's gitlab
CI and also approved by the port maintainer.

Thanks a lot!
___
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"


Why is security/py-pywinrm limited to Python 2.7 only?

2019-04-03 Thread Pavel Timofeev
Hello.
I'm curious why security/py-pywinrm is limited to python 2.7 now.

I tried it with python 3.6:

--- security/py-pywinrm/Makefile.orig2019-04-03 10:45:08.434229000 +0300
+++ security/py-pywinrm/Makefile2019-04-03 10:45:13.713012000 +0300
@@ -19,7 +19,7 @@
 
${PYTHON_PKGNAMEPREFIX}requests-credssp>=0.0.1:security/py-requests-credssp@${PY_FLAVOR}

 NO_ARCH=yes
-USES=python:2.7
+USES=python
 USE_PYTHON=autoplist distutils

 .include 


Port was successfully rebuilt (on FBSD12) with python3.6.
Some basic operation works at least with ntlm auth,

What is/was wrong with the port? I suppose it's worth to document it
if there is a problem.
___
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"


A PR to take care of

2019-01-14 Thread Pavel Timofeev
Hi! Could anybody please commit this?

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=233964

Email messages from head and quarterly are hitting the air uselessly ;)

Thank you!
___
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"


2 PRs to be committed/closed

2018-10-01 Thread Pavel Timofeev
Please, take a look at these two PRs.
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=231115
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=231442

Thanks a lot!
___
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"


Can any committed take a look at this PR

2018-09-29 Thread Pavel Timofeev
Hello.
I'm sorry to bother anyone.
Could someone please take a look and commit this PR?
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=231295
___
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: tilix port would be great

2018-04-08 Thread Pavel Timofeev
Hi, Kevin. Thank you. I'm already maintain several ports.
There are some difficulties in porting this software for me:

1. It's graphical gnome-based software. I have no experience in gnome ports.
This is not the biggest problem though.

2. It's written in D.
Yes, I wrote 'D'. It wants devel/dub and one of the D compilers
already available in ports tree: lang/ldc or lang/dmd2.
lang/dmd2 is broken under FreeBSD 12 due to inability to work with ino64.
lang/ldc doesn't compile under FreeBSD 12:
[131/249] cd /usr/ports/lang/ldc/work/ldc-1.7.0-src/runtime/profile-rt/d
&& /usr/ports/lang/ldc/work/ldc-1.7.0-src/bin/ldc2 -c --output-o -w
-O3 -release -relocation-model=pic
-od=/usr/ports/lang/ldc/work/ldc-1.7.0-src/runtime/objects -op
ldc/profile.d
FAILED: runtime/objects/ldc/profile.o
cd /usr/ports/lang/ldc/work/ldc-1.7.0-src/runtime/profile-rt/d &&
/usr/ports/lang/ldc/work/ldc-1.7.0-src/bin/ldc2 -c --output-o -w -O3
-release -relocation-model=pic
-od=/usr/ports/lang/ldc/work/ldc-1.7.0-src/runtime/objects -op
ldc/profile.d
[132/249] cd /usr/ports/lang/ldc/work/ldc-1.7.0-src/runtime/jit-rt/d
&& /usr/ports/lang/ldc/work/ldc-1.7.0-src/bin/ldc2 -c --output-o
-enable-dynamic-compile -w -O3 -release
-od=/usr/ports/lang/ldc/work/ldc-1.7.0-src/runtime/objects -op
ldc/dynamic_compile.d
FAILED: runtime/objects/ldc/dynamic_compile.o
cd /usr/ports/lang/ldc/work/ldc-1.7.0-src/runtime/jit-rt/d &&
/usr/ports/lang/ldc/work/ldc-1.7.0-src/bin/ldc2 -c --output-o
-enable-dynamic-compile -w -O3 -release
-od=/usr/ports/lang/ldc/work/ldc-1.7.0-src/runtime/objects -op
ldc/dynamic_compile.d
ninja: build stopped: subcommand failed.

3. Also it wants gtkd. I'm not sure it's already ported to FreeBSD.

So, I made a try, but couldn't even start.

2018-04-07 21:55 GMT+03:00 Kevin Oberman :
> On Sat, Apr 7, 2018 at 3:43 AM, Pavel Timofeev  wrote:
>>
>> Hello, everyone.
>>
>> I would like to ask if anybody interested and could make a port for
>> such a great tiling terminal for Gnome3?
>> https://github.com/gnunn1/tilix
>
>
> Since I don't run Gnome3 and don't care for tiling, I'm not likely to do it,
> but you might give it a shot, yourself. Most, but not all, ports are pretty
> easy. The Porters Handbook is very readable and, if the port does not
> require any oddball tricks, is not hard. It requires no real coding, but a
> reasonable familiarity with make and shell scripting. I've done several
> ports over the past two decades and am only passable in make and pretty weak
> in shell. It was not a problem.
>
> Look closely at the sections on  working with github and Gnome. github, in
> particular, is weird, but not really difficult. Gnome is less weird, but has
> specialized make scripts that are called with USES statements.
>
> If you do try it, you can generally find that others are willing to help out
> while you learn the ins and outs. Since this is a Gnome port, you might find
> the gnome@ mail list more useful.
> --
> Kevin Oberman, Part time kid herder and retired Network Engineer
> E-mail: rkober...@gmail.com
> PGP Fingerprint: D03FB98AFA78E3B78C1694B318AB39EF1B055683
>
___
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"


tilix port would be great

2018-04-07 Thread Pavel Timofeev
Hello, everyone.

I would like to ask if anybody interested and could make a port for
such a great tiling terminal for Gnome3?
https://github.com/gnunn1/tilix
___
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: portmaster with FLAVOR support available for testing

2017-12-13 Thread Pavel Timofeev
2017-12-14 0:51 GMT+03:00 Jonathan Chen :
> On 14 December 2017 at 10:39, Stefan Esser  wrote:
>> I have created a new version of portmaster with FLAVOR support.
>>
>> Before committing the changes to the ports repository, I'd like to receive
>> some feedback from users.
>>
>> My tests have only covered port upgrades, not any of the other features
>> offered by portmaster. In fact, I'd like to remove several of the other
>> features, which may have been of use before PKG_NG (e.g. functions that
>> use the INDEX file, and in fact also the -P/-PP/--packages-* features).
>>
>>
>> *** Please let me know, if you want to receive the new version by personal
>> *** mail (I do not want to spam the mail-list by posting a 100KB+ file).
>
> Perhaps you could create a new branch on
> https://github.com/freebsd/portmaster with your FLAVOR support so that
> anyone who is interested can clone a copy and play around with it?
>
> Cheers.
> --
> Jonathan Chen 

mine +1 for that.
___
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: JVM based port dependencies?

2017-07-29 Thread Pavel Timofeev
2017-07-20 21:27 GMT+03:00 Dmytro Bilokha :
> 20 липня 2017 р. 18:17:13 GMT+02:00, Pavel Timofeev 
> написав:
>>
>> Hello!
>> What is the best practice for ports running on top of JVM (like
>> ZooKeeper or ElasticSearch):
>> use all bundled jars (for example, log4j) or take them from other
>> ports as dependencies?
>> 
>>
>> 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"
>
>
> Hello!
> As far as I see, ports running on top of JVM usually use bundled jars. To be
> sure about best practice you can check some already existing ports (Eclipse,
> Idea, Glassfish, Tomcat, etc).
> --
> Best regards,
> Dmytro Bilokha


Thanks a lot for your answer.
I found a documentation for this question
https://www.freebsd.org/doc/en/books/porters-handbook/using-java.html:
...

It is up the porter to decide whether the port installs the additional
JAR dependencies under this directory or uses the already installed
ones (from ${JAVAJARDIR}).
...

However I got even more question about porting a java application
after reading this doc. I'll ask them in freebsd-java@
___
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"

JVM based port dependencies?

2017-07-20 Thread Pavel Timofeev
Hello!
What is the best practice for ports running on top of JVM (like
ZooKeeper or ElasticSearch):
use all bundled jars (for example, log4j) or take them from other
ports as dependencies?
___
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: GOOGLE_CODE has gone away?

2017-01-19 Thread Pavel Timofeev
2017-01-19 19:17 GMT+03:00 Pavel Timofeev :
> Hello, all.
> I've found a port  (http://www.freshports.org/net-mgmt/flow-tools-ng/)
> which is marked as BROKEN.
> The last commit says "GOOGLE_CODE has gone away.".
>
> But at least this particular port is still available in a new place:
> https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/flow-tools/flow-tools-0.68.5.1.tar.bz2
>
> I suppose other ports which depends on Google code can be resurrected too.
> Is Mk/bsd.sites.mk right place to fix it?
>
> What if add to the following
>
> MASTER_SITE_GOOGLE_CODE+= \
> http://${PROJECTHOST}.googlecode.com/files/
> .endif
>
> something like
>
> https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${PROJECTHOST}/
>
> What do you think?


One correction: https can also be replaced by http in that link
I tried several other GOOGLE_CODE-dependent ports and it works.
For example 
http://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/vboxgtk/vboxgtk-0.8.2.tar.gz
___
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"


GOOGLE_CODE has gone away?

2017-01-19 Thread Pavel Timofeev
Hello, all.
I've found a port  (http://www.freshports.org/net-mgmt/flow-tools-ng/)
which is marked as BROKEN.
The last commit says "GOOGLE_CODE has gone away.".

But at least this particular port is still available in a new place:
https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/flow-tools/flow-tools-0.68.5.1.tar.bz2

I suppose other ports which depends on Google code can be resurrected too.
Is Mk/bsd.sites.mk right place to fix it?

What if add to the following

MASTER_SITE_GOOGLE_CODE+= \
http://${PROJECTHOST}.googlecode.com/files/
.endif

something like

https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${PROJECTHOST}/

What do you think?
___
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: ATI, libdrm, gnome

2017-01-15 Thread Pavel Timofeev
2017-01-15 0:37 GMT+03:00 Stari Karp :
> Hi!
>
> Today I update xf86-video-ati-7.8 and also libdrm 2.4.7,1. I am using
> Synth on FreeBSD 11-RELEASE (amd64) and everything was okay except
> thyat GNOME3 doesn't start anymore. It stopped o with black screen and
> mouse curson. I did try Lumina desktop too with the same result but
> Fluxbox works.
>
> For GNOME 3 I have xsession-errors which is attached.
> I have also gnome-shell core dump and gnome-settings-daemon core dump.
>
> Thank you.
>


Hello,
Just got the same behaviour after xorg drivers (mine is ati) update via pkg head
GDM can't start showing black screen. Simple startx with twm works.
I use FreeBSD-11.0 RELEASE amd64
___
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"


A port PR to review

2016-12-24 Thread Pavel Timofeev
Hello, dear colleagues!
I have one PR to review 'www/ufdbguard: update to 1.32.4' -
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=215415

Could anybody please take a look?
___
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"


latest www/chromium: no sound

2016-11-29 Thread Pavel Timofeev
Please, set ALSA to ON by default for www/chromium!
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214924
___
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"


Vulnerabilities not included into FreeBSD vuxml

2016-10-24 Thread Pavel Timofeev
Hello, everyone!

I've found some vulnerabilities that are not included into freebsd
vuxml (or how this service is called?)

MySQL - 
http://www.oracle.com/technetwork/security-advisory/cpuoct2016-2881722.html#AppendixMSQL
VirtualBox - 
http://www.oracle.com/technetwork/security-advisory/cpuoct2016-2881722.html#AppendixOVIR
___
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"


pywinrm module

2016-09-22 Thread Pavel Timofeev
Hi!
Has anybody tried to create a port for pywinrm?
https://github.com/diyan/pywinrm
___
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"


net/3proxy: a fix to commit

2016-08-23 Thread Pavel Timofeev
Hello,
can anybody have a look and commit it if possible?
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209463

Thank you!
___
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: [CFT] [NEW PORT] www/ufdbguard

2016-08-23 Thread Pavel Timofeev
2016-08-23 22:46 GMT+03:00 Kurt Jaeger :
> Hi!
>
>> > I've tried it in poudriere, it looks very promising, but there
>> > is still the same error ?
>> >
>> > For example, see my buildlog for 11a at
>> >
>> > http://people.freebsd.org/~pi/logs/www__ufdbguard-11a-1471974874.txt
>
>> That's weird, I can't reproduce it.
>
> Then normally it's my extensive use of fancy things that's the
> cause 8-}
>
>> I used poudriere-3.1.14_2.
>
> Here it's
>
> poudriere-devel-3.1.99.20160624_2
>
> so that's probably the cause.
>

I've updated shar file and it build in poudriere-devel now. I simply
eliminated that check.
Please, test again ;)
___
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: [CFT] [NEW PORT] www/ufdbguard

2016-08-23 Thread Pavel Timofeev
2016-08-23 21:23 GMT+03:00 Kurt Jaeger :
> Hi!
>
>> It' s able to package in poudriere now.
>> Please, test it.
>
> I've tried it in poudriere, it looks very promising, but there
> is still the same error ?
>
> For example, see my buildlog for 11a at
>
> http://people.freebsd.org/~pi/logs/www__ufdbguard-11a-1471974874.txt
>
> --

That's weird, I can't reproduce it.
I used poudriere-3.1.14_2.
___
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: [CFT] [NEW PORT] www/ufdbguard

2016-08-23 Thread Pavel Timofeev
22 авг. 2016 г. 11:54 пользователь "Pavel Timofeev" 
написал:
>
> Hello, FreeBSD community!
>
> I've made a port of ufdbGuard - a fork of squidGuard compatible with
> newer Squid versions.
> Generally speaking it's an URL filter for Squid.
> https://www.urlfilterdb.com/products/ufdbguard.html
>
> If you're interested, please, review and/or test it. I'd appreciate
> any kind of feedback!
>
> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=212044
>
> Thank you!

It' s able to package in poudriere now.
Please, test it.
___
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"

[CFT] [NEW PORT] www/ufdbguard

2016-08-22 Thread Pavel Timofeev
Hello, FreeBSD community!

I've made a port of ufdbGuard - a fork of squidGuard compatible with
newer Squid versions.
Generally speaking it's an URL filter for Squid.
https://www.urlfilterdb.com/products/ufdbguard.html

If you're interested, please, review and/or test it. I'd appreciate
any kind of feedback!

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=212044

Thank you!
___
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: [HEADSUP] change in default openssl coming

2016-07-11 Thread Pavel Timofeev
2016-07-08 9:26 GMT+03:00 Mathieu Arnold :
> Hi,
>
> During this summer (sometime in August I think) I will be changing the
> default OpenSSL for the ports tree from the base system version to
> security/openssl.
>
> I will also, because it goes with it, change the default GSSAPI from base
> to something else, I think the consensus was to use the MIT version, which
> is security/krb5.
>
> Before I do that, it would be nice if people who actually use Kerberos (so,
> that's the two of you at the back) could provide some feedback if it
> changing this will break things.
>
> --
> Mathieu Arnold


Hi!
I'm sorry, if this questions already was answered:
Does making base openssl private for base system components mean it
will include only headers/libs (in future?)?
I mean no binaries or any kind of other resources like examples/docs?
I think keeping them in base will be a bit weird in such case.
Also if base openssl becomes private do we need Kerberos in base?
___
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: www/squid: reconsider enabling all options

2016-04-26 Thread Pavel Timofeev
2016-04-26 1:32 GMT+03:00 Nick Rogers :
> Hello,
>
> I just recompiled my www/squid port to the latest 3.5.17 version. Prior to
> this I was running 3.5.14. I immediately noticed that my transparent proxy
> setup via PF was broken and throwing a "Forwarding loop detected" error in
> the logs.
>
> I then noticed the following recent commit which enables all options/knobs
> that do not require dependencies:
> https://svnweb.freebsd.org/ports?view=revision&revision=412287
>
> This change enables the ipf-transparent (TP_IP), ipfw-transparent (TP_IPF),
> and pf-transparent (TP_PF) options at the same time, and turned out to be
> the root of my "redirection loop" problem.
>
> I am unclear why, but in my experience these options have always been
> incompatible with each other, which is why in previous versions of the
> www/squid port and its prior iterations these knobs have always been
> disabled by default. I've always explicitly enabled TP_PF in my make.conf.
>
> I was able to fix my issue by recompiling without the TP_IP and TP_IPF
> options, but I believe more thought/discussion should be given to all the
> new options that are now enabled by default in the port.
>
> Thanks!
>
> -Nick
> ___


Hi! I'm sorry, that's my fault.

Do you think all three should be disabled by default, or we can enable
one of them mostly used?

Do you know there is a related bug report in squid's buzilla? Do
squid's developers know about this incompatibility?
It yes it looks weird they don't check it in configure.ac script.
___
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"


www/squid patch wants to be committed

2016-04-20 Thread Pavel Timofeev
Good day!
Could anybody, please, take care of this one
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=207901?
Thank you!
___
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: www/squid changes

2016-03-31 Thread Pavel Timofeev
2016-03-31 22:05 GMT+03:00 Kurt Jaeger :
> Hi!
>
>> > > Can anybody take a look at
>> > > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208290?
>> > > Thanks!
>> >
>> > I'd like it to be committed before new quarter branch is made.
>>
>> @work
>
> Done, thanks for the reminder!
>

Thanks a lot!
___
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: www/squid changes

2016-03-31 Thread Pavel Timofeev
2016-03-30 15:51 GMT+03:00 Pavel Timofeev :
> Hello!
> Can anybody take a look at
> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208290?
> Thanks!

I'd like it to be committed before new quarter branch is made.
___
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"


www/squid changes

2016-03-30 Thread Pavel Timofeev
Hello!
Can anybody take a look at
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208290?
Thanks!
___
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: Remmina ported to FreeBSD

2016-03-14 Thread Pavel Timofeev
2016-03-14 18:06 GMT+03:00 Antenore Gatta :
> Hi all,
>
> Since a couple of years, I'm the new maintainer of Remmina (with
> another guy, Giovanni), a GTK remote desktop application.
>
> I've also got rid of most of my Linux desktop to pass to FreeBSD as my
> main desktop environment (philosophical reasons).
>
> I've modified Remmina and requested some changes in the last
> FreeRDP version so that both now, compile on FreeBSD without any
> (almost) issues. [1][2]
>
> I'd like to help out with the port, of both packages, to update them to
> the latest version, since we fixed tons og bugs and implemented tens of
> new features.
>
> Honestly I'm less than a newbie on FreeBSD so I'd really appreciate
> some guidance, that doesn't mean I want to avoid to RTFM, I just want
> to read the right one.
>
> Thanks a lot in advance for your support!
>
> [1]https://github.com/FreeRDP/Remmina/pull/779 (merged in main trunk)
> [2]https://github.com/FreeRDP/Remmina/wiki/How-to-compile-Remmina-on-FreeBSD
>
> Kind regards

That's great!

I'm just wondering what version of freerdp you supposed as latest?
I've seen a lot of new remmina 'releases/tag in github' since last
year. But freerdp has only release from Sep 2014. That version is
already in ports tree for a long time.
___
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"


squid default options

2015-12-06 Thread Pavel Timofeev
Hi!
I'm a maintainer of squid port and I'd like to ask you about default
squid options turned on by default.
Squid 4 is in release candidate stage now and we already have an
initial port for it here
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203860.

So, how do you think, what options should be turned on by default?

I think the main idea should be if option doesn't invoke any
additional dependency it should be turned on.
However, there are options like TP_{IPF,IPFW,PF} which mean
'Transparent proxying with {IPF,IPFW,PF}'. They don't invoke any
dependency.
If you have GENERIC kernel and world, of course.
Well, I know, we can't satisfy everyone, so default option set have to
be guided by common sense and  appropriate for the most.

But there are FreeBSD based OSs like pfSense, FreeNAS, etc..
Should we think/care about them? To be honest I've never used them. I
can misunderstand something.

Same story with GSSAPI_BASE. It needs kerberos from base system, that
can absent in others FreeBSD bases OSs.
___
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: bug report 203660

2015-10-27 Thread Pavel Timofeev
Thank you very much, Kurt!
27.10.2015 19:50 пользователь "Kurt Jaeger"  написал:

> Hi!
>
> > Could someone please commit changed described in
> > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203660 ?
>
> Done.
>
> --
> p...@opsec.eu+49 171 3101372 5 years to
> go !
>
___
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"

bug report 203660

2015-10-27 Thread Pavel Timofeev
Greetings!
Could someone please commit changed described in
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203660 ?
Thanks a lot!
___
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: any chance of squid4 port soon?

2015-10-19 Thread Pavel Timofeev
Hi!
There is a bug report related to it
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203860

2015-10-19 15:44 GMT+03:00 Marko Cupać :
> Hi,
>
> squid 4 has entered RC state:
> http://wiki.squid-cache.org/Squid-4
>
> It features some cool new options, of which the most important for me
> is automatic detection of unsupported ssl protocols not to be bumped.
>
> Any chance to get this in ports as squid4, squid-devel or something?
>
> Thank you in advance,
> --
> Before enlightenment - chop wood, draw water.
> After  enlightenment - chop wood, draw water.
>
> Marko Cupać
> https://www.mimar.rs/
> ___
> 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"
___
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: postfix options no honored by poudriere

2015-10-16 Thread Pavel Timofeev
Hi! Good explanation, Kurt.

Jeremie, as alternative you could just use poudriere to set options like
# poudriere options -c mail/postfix
See poudriere(8).
___
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: can't compile net/openldap24-server after last cyrus-sasl* upgrade

2015-10-02 Thread Pavel Timofeev
2015-10-02 13:25 GMT+03:00 Mathieu Arnold :
>
>
> +--On 2 octobre 2015 13:13:41 +0300 Pavel Timofeev  wrote:
> | Good day!
>
> Grml, looking into it.
>
> --
> Mathieu Arnold

root@pyxis-v# diff -u Makefile.orig Makefile

--- Makefile.orig   2015-10-02 17:55:19.948181000 +0300
+++ Makefile2015-10-02 13:17:14.52799 +0300
@@ -156,7 +156,7 @@
 CONFLICTS= ${PKGNAMEPREFIX}${PORTNAME}-client-2.*
 PKGNAMESUFFIX= -sasl-server
 .if ${PORT_OPTIONS:MGSSAPI}
-RUN_DEPENDS+=
cyrus-sasl-gssapi>0:${PORTSDIR}/security/cyrus-sasl2-gssapi
+RUN_DEPENDS+=
cyrus-sasl2-gssapi>0:${PORTSDIR}/security/cyrus-sasl2-gssapi
 .endif
 .else
 CONFLICTS= ${PKGNAMEPREFIX}${PORTNAME}-sasl-client-2.*


Seems like it helped me.
___
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"


can't compile net/openldap24-server after last cyrus-sasl* upgrade

2015-10-02 Thread Pavel Timofeev
Good day!

It fails, here is poudriere log.
...
===
===>   openldap-sasl-server-2.4.42_2 depends on package:
cyrus-sasl-gssapi>0 - not found
===>   Installing existing package /packages/All/cyrus-sasl2-gssapi-2.1.26_4.txz
[FreeBSD:10:amd64-default-job-01] Installing cyrus-sasl2-gssapi-2.1.26_4...
[FreeBSD:10:amd64-default-job-01] Extracting
cyrus-sasl2-gssapi-2.1.26_4: ... done
===>   openldap-sasl-server-2.4.42_2 depends on package:
cyrus-sasl-gssapi>0 - not found
*** Error code 1

Stop.
make: stopped in /usr/ports/net/openldap24-server
>> Cleaning up wrkdir
===>  Cleaning for openldap-sasl-server-2.4.42_2
build of net/openldap24-server ended at Fri Oct  2 13:03:00 MSK 2015
build time: 00:02:07
!!! build failure encountered !!!
___
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: Bareos bpipe is not working

2015-09-02 Thread Pavel Timofeev
I've created a bug report.
https://bugs.bareos.org/view.php?id=511

2015-08-31 11:14 GMT+03:00 Pavel Timofeev :
> Hi!
> I tried to use bpipe plugin under Bareos from ports tree. No luck:
>
> Fatal error: bpipe plugin: Error closing stream for pseudo file 
> /MySQL/mydb.sql
>
> bareos-dir's config contains:
> Plugin = "bpipe:file=/MySQL/mydb.sql:reader=mysqldump -uuser
> -ppassword --databases mydb:writer=/bin/sh -c 'cat - > /tmp/mydb.sql'"
>
> I use
> FreeBSD 10.2-RELEASE amd64 GENERIC
> bareos-client-15.2_1
> bareos-server-15.2_1
>
>
> Does anybody use bpipe under bareos?
>
> P.S. hint from https://bugs.bareos.org/view.php?id=422 didn't help.
___
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"


bug report 198925

2015-08-31 Thread Pavel Timofeev
Good day!

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198925

Could anyone please look at this bug report?
___
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"


bug report 198925

2015-07-21 Thread Pavel Timofeev
Good day!
Could someone please have a look at
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198925
___
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"


www/squid's cache dir

2015-07-14 Thread Pavel Timofeev
Hi!

A question was born in my mind about www/squid port:

Do we really need a separate /var/squid dir for 'cache' and always
empty 'logs' subdirs?
Squid's logs are really in /var/log/squid, not in /var/squid/logs.

So I think what if we had cache dir like /var/cache/squid, and got rig
of /var/squid at all?
What do you think?
___
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"


bug report 200329

2015-06-10 Thread Pavel Timofeev
Good day!
Could someone, please, have a look at
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200329?
___
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"


3proxy PR

2015-04-06 Thread Pavel Timofeev
Hello!
Could anyone look into the
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=188374 PR, 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"


Re: Initial squid 3.5 port

2015-03-31 Thread Pavel Timofeev
Hi all!

The squid35 port has been updated to lastest 3.5.3 release.
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198089
This time it's a patch for the existing www/squid.
Please, test it and write a feed back!

IMO it's ready to import.



2015-03-20 11:43 GMT+03:00 Pavel Timofeev :
> Hello!
>
> The new shar file squid35-20.03.15.shar was uploaded today. Look at
> this PR https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198089.
> You can find my comments about progress there.
>
> I'm asking people who is using www/squid: please, test it as much as possible!
>
> P.S. It's a new port (shar) now just for testing. Of course, it
> will/can be converted to patch for www/squid when it's recognized as
> ready.
>
> 2015-03-11 12:07 GMT+03:00 Pavel Timofeev :
>> Hi! I've just made a small update there
>> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198089
>>
>> 2015-02-28 15:30 GMT+03:00 Pavel Timofeev :
>>> Ok, I'll do my best.
>>>
>>> 2015-02-28 14:08 GMT+03:00 Kurt Jaeger :
>>>> Hi!
>>>>
>>>>> > Just in case, I uploaded it here https://yadi.sk/d/EcRxwc6BevgDc
>>>>>
>>>>> I've created
>>>>>
>>>>> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198089
>>>>>
>>>>> with that shar and I'm build-testing it right now.
>>>>
>>>> build testing: works on 10.1a, fails on 9.3a, 8.4i.
>>>>
>>>> poudriere build logs can be found at
>>>>
>>>> http://people.freebsd.org/~pi/logs/www__squid35*
>>>>
>>>> Older builds are with a custom config, newer builds with the generic 
>>>> config.
>>>>
>>>> Can you investigate the cause of the issue ?
>>>>
>>>> --
>>>> p...@opsec.eu+49 171 3101372 5 years 
>>>> to go !
___
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"


Galera ports

2015-03-30 Thread Pavel Timofeev
Hi!
I'm a bit surprised that we don't have ports for galera cluster.
I want to discuss about them a little bit.

In short about galera and how it works (how I understand it):
it's a kind of cluster of MySQL-based DBs. They support MySQL, Percona
and MariaDB right now.
Web site http://galeracluster.com/.
~Components:
1. A special version of MySQL-based DB daemon, patched to work with
wsrep API. It can be MySQL Galera Cluster, Percona XtraDB Cluster or
MariaDB Galera CLuster.
2. A common "plugin" for them all, which is plugged in through my.cnf.
It's called "Galera 3 wsrep provider library" usually.
3. Arbitrator - a DB daemon without data to prevent split-brain and etc.
Cluster version of MySQL-based DB daemons are usually(always?) synced
with non-cluster regular versions.

We have a port only for #2 now - databases/galera (which is useless in
such case, no?).
There is no port for #3 at all.
There are a couple of PRs to add #1 to ports tree, which were created
about a year ago. No progress since then.
https://bugs.freebsd.org/bugzilla/buglist.cgi?quicksearch=galera.


However, I'd like to discuss about something. It's just my thoughts.
1. As you can see those PRs are trying to add *-server and *-client
ports for each of clustered MySQL-based DBs (I know, not for Percona).
Is there any need to add another yet version of client?
What's a reason to make *-client ports? Because nothing depends on
*-server ports.
IMO we should use regular ports for clients and add only a server
part, as Linuxes does. For example, databases/mysql56-client for MySQL
Galera Cluster. In such case a lot of work to add a dependency for new
*-client is not needed.
2. How *-server ports should be named? At first glance the obvious names are:
databases/mysql5[56]-galera-cluster
databases/percona5[56]-xtradb-cluster
databases/mariadb(55|100)-galera-cluster
Not bad, but what about the same names, but without (galera|xtradb)
word? Or without "cluster" word.
Like databases/mysql56-cluster next to databases/mysql56-server and
databases/mysql56-client.

How do you think?
___
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: Initial squid 3.5 port

2015-03-20 Thread Pavel Timofeev
Hello!

The new shar file squid35-20.03.15.shar was uploaded today. Look at
this PR https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198089.
You can find my comments about progress there.

I'm asking people who is using www/squid: please, test it as much as possible!

P.S. It's a new port (shar) now just for testing. Of course, it
will/can be converted to patch for www/squid when it's recognized as
ready.

2015-03-11 12:07 GMT+03:00 Pavel Timofeev :
> Hi! I've just made a small update there
> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198089
>
> 2015-02-28 15:30 GMT+03:00 Pavel Timofeev :
>> Ok, I'll do my best.
>>
>> 2015-02-28 14:08 GMT+03:00 Kurt Jaeger :
>>> Hi!
>>>
>>>> > Just in case, I uploaded it here https://yadi.sk/d/EcRxwc6BevgDc
>>>>
>>>> I've created
>>>>
>>>> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198089
>>>>
>>>> with that shar and I'm build-testing it right now.
>>>
>>> build testing: works on 10.1a, fails on 9.3a, 8.4i.
>>>
>>> poudriere build logs can be found at
>>>
>>> http://people.freebsd.org/~pi/logs/www__squid35*
>>>
>>> Older builds are with a custom config, newer builds with the generic config.
>>>
>>> Can you investigate the cause of the issue ?
>>>
>>> --
>>> p...@opsec.eu+49 171 3101372 5 years to 
>>> go !
___
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: Initial squid 3.5 port

2015-03-11 Thread Pavel Timofeev
Hi! I've just made a small update there
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198089

2015-02-28 15:30 GMT+03:00 Pavel Timofeev :
> Ok, I'll do my best.
>
> 2015-02-28 14:08 GMT+03:00 Kurt Jaeger :
>> Hi!
>>
>>> > Just in case, I uploaded it here https://yadi.sk/d/EcRxwc6BevgDc
>>>
>>> I've created
>>>
>>> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198089
>>>
>>> with that shar and I'm build-testing it right now.
>>
>> build testing: works on 10.1a, fails on 9.3a, 8.4i.
>>
>> poudriere build logs can be found at
>>
>> http://people.freebsd.org/~pi/logs/www__squid35*
>>
>> Older builds are with a custom config, newer builds with the generic config.
>>
>> Can you investigate the cause of the issue ?
>>
>> --
>> p...@opsec.eu+49 171 3101372 5 years to 
>> go !
___
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: Initial squid 3.5 port

2015-02-28 Thread Pavel Timofeev
Well, in general, I don't mind, but I'm afraid I'm not a skillful person.

2015-02-28 11:00 GMT+03:00 Kurt Jaeger :
> Hi!
>
>> > Sorry, my fault. Not a patch for existing port, but a shar file to
>> > create new port, which was attached to original message.
>> > Just in case, I uploaded it here https://yadi.sk/d/EcRxwc6BevgDc
>>
>> I've created
>>
>> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198089
>>
>> with that shar and I'm build-testing it right now.
>
> Can I put your mail address in the maintainer field ?
>
> --
> p...@opsec.eu+49 171 3101372 5 years to 
> go !
___
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: Initial squid 3.5 port

2015-02-28 Thread Pavel Timofeev
Ok, I'll do my best.

2015-02-28 14:08 GMT+03:00 Kurt Jaeger :
> Hi!
>
>> > Just in case, I uploaded it here https://yadi.sk/d/EcRxwc6BevgDc
>>
>> I've created
>>
>> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198089
>>
>> with that shar and I'm build-testing it right now.
>
> build testing: works on 10.1a, fails on 9.3a, 8.4i.
>
> poudriere build logs can be found at
>
> http://people.freebsd.org/~pi/logs/www__squid35*
>
> Older builds are with a custom config, newer builds with the generic config.
>
> Can you investigate the cause of the issue ?
>
> --
> p...@opsec.eu+49 171 3101372 5 years to 
> go !
___
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: Initial squid 3.5 port

2015-02-27 Thread Pavel Timofeev
Sorry, my fault. Not a patch for existing port, but a shar file to
create new port, which was attached to original message.
Just in case, I uploaded it here https://yadi.sk/d/EcRxwc6BevgDc

2015-02-27 17:16 GMT+03:00 cpet :
> On 2015-02-27 07:01, Pavel Timofeev wrote:
>>
>> Hi!
>> I created an initial port for squid-3.5.
>> It's squid-3.5.2.
>>
>> Release notes for 3.5 branch are here
>> http://wiki.squid-cache.org/Squid-3.5.
>>
>> Port based on www/squid.
>>
>> Existing problems with some options:
>> ECAP - marked as broken for now, because squid-3.5 needs eCAP version
>> 1.0 which is not in ports tree.
>> AUTH_NIS - builds, but I made an ugly hack. See the second XXX comment
>> in Makefile:
>> 
>> # XXX: We need this ugly stuff on OS where bug 188247 isn't resolved.
>> # This allow us to build basic_nis_auth helper
>> 
>> Here is some details about that
>> http://bugs.squid-cache.org/show_bug.cgi?id=4204
>>
>>
>> TODO:
>> 1. rewrite rc script to support multiple instances
>> (http://wiki.squid-cache.org/MultipleInstances)
>>
>> TODO not sure:
>> 2. allow build with different crypt realizations.
>> 3. allow build with different krb5 realizations.
>> Maybe somethis like
>> OPTIONS_SINGLE= SSL KRB5
>> OPTIONS_SINGLE_SSL= BASE OPENSSL GNUTLS
>> OPTIONS_SINGLE_KRB5= BASE HEIMDAL MIT GNUGSS.
>>
>> Please, test it if you are interested! Ideas/suggestions/patches are
>> highly appreciated! Thank you!
>> ___
>> 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"
>
>
> Do you have a patch for 3.5 or do we have to use telepathy to figure this
> out?
___
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"


Initial squid 3.5 port

2015-02-27 Thread Pavel Timofeev
Hi!
I created an initial port for squid-3.5.
It's squid-3.5.2.

Release notes for 3.5 branch are here http://wiki.squid-cache.org/Squid-3.5.

Port based on www/squid.

Existing problems with some options:
ECAP - marked as broken for now, because squid-3.5 needs eCAP version
1.0 which is not in ports tree.
AUTH_NIS - builds, but I made an ugly hack. See the second XXX comment
in Makefile:

# XXX: We need this ugly stuff on OS where bug 188247 isn't resolved.
# This allow us to build basic_nis_auth helper

Here is some details about that http://bugs.squid-cache.org/show_bug.cgi?id=4204


TODO:
1. rewrite rc script to support multiple instances
(http://wiki.squid-cache.org/MultipleInstances)

TODO not sure:
2. allow build with different crypt realizations.
3. allow build with different krb5 realizations.
Maybe somethis like
OPTIONS_SINGLE= SSL KRB5
OPTIONS_SINGLE_SSL= BASE OPENSSL GNUTLS
OPTIONS_SINGLE_KRB5= BASE HEIMDAL MIT GNUGSS.

Please, test it if you are interested! Ideas/suggestions/patches are
highly appreciated! Thank you!
___
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: Squid aufs crashes under 10.0

2014-08-19 Thread Pavel Timofeev
Hi, I've made a PR for squid34.
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192828
Based on www/squid33 and Dennis Glatting's work.
Please, test it!
There are 2 broken options (ECAP and FS_COSS) that I don't know how to
fix (I'm unskillful). It will be great if someone knows a solution.

2014-05-13 10:51 GMT+04:00 Pavel Timofeev :
> Hi! Any plans to import squid34 to ports tree?
>
> 2014-02-11 9:40 GMT+04:00 Dennis Glatting :
>> On Mon, 2014-02-10 at 20:11 +0100, Florian Smeets wrote:
>>> On 10/02/14 16:21, Dennis Glatting wrote:
>>> > On Mon, 2014-02-10 at 11:15 +0400, Pavel Timofeev wrote:
>>> >> So what should I do?
>>> >> Write a PR to squid's bugzilla with link to this thread?
>>> >> Fill FreeBSD ports' PR? (it seems like maintainer of squid doesn't
>>> >> look at PRs about squid).
>>> >> And it seems like this problem is retaled to all of squid ports, not
>>> >> only to www/squid33.
>>> >>
>>> >
>>> > Good question. I don't know. I ported 3.4 and sent email to the
>>> > maintainer and to the list. Zip in response.
>>> >
>>>
>>> I plan to take care of it this week. (squid34 + aufs patches)
>>>
>>
>> My stuff here:
>>
>> fetch http://www.pki2.com/squid34.tar
>>
>>
>>> Florian
>>>
>>
>>
___
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: r353029 broke net-mgmt/zabbix2*-server options

2014-07-08 Thread Pavel Timofeev
Hi!
I've created RP with solution for zabbix2-server
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191731
Zabbix22-server doen't have such problem now.

2014-05-14 11:42 GMT+04:00 Pavel Timofeev :
> Hi!
> After this commit to regular ports tree both zabbix (2.0 and 2.2)
> ports was messed.
> For example:
> net-mgmt/zabbix22-server # make showconfig
> ===> The following configuration options are available for
> zabbix22-server-2.2.2_1:
>  CURL=on: Support for web monitoring
>  FPING=on: Build/install fping for ping checks
>  IPMI=off: Support for IPMI checks
>  IPV6=on: IPv6 protocol support
>  JABBER=on: Support for Jabber media type
>  JAVAGW=off: Support for Java gateway
>  LDAP=off: Support for LDAP server checks
>  LIBXML2=off: Support for libxml2 (required by monitoring VMware)
>  NMAP=off: Build/install nmap for o/s detection
>  SSH=off: Support for SSH-based checks
> > Options available for the single DB: you have to select exactly
> one of them
>  MYSQL=on: MySQL database support
>  PGSQL=off: PostgreSQL database support
>  SQLITE=off: SQLite database support
>  ORACLE=off: Oracle database support
>  ODBC=off: Support for database checks via ODBC
> ===> Use 'make config' to modify these settings
>
> ODBC shouldn't be in DB section. See in 2014Q2 - that's how it has to
> look. Please, fix it
___
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"


r353029 broke net-mgmt/zabbix2*-server options

2014-05-14 Thread Pavel Timofeev
Hi!
After this commit to regular ports tree both zabbix (2.0 and 2.2)
ports was messed.
For example:
net-mgmt/zabbix22-server # make showconfig
===> The following configuration options are available for
zabbix22-server-2.2.2_1:
 CURL=on: Support for web monitoring
 FPING=on: Build/install fping for ping checks
 IPMI=off: Support for IPMI checks
 IPV6=on: IPv6 protocol support
 JABBER=on: Support for Jabber media type
 JAVAGW=off: Support for Java gateway
 LDAP=off: Support for LDAP server checks
 LIBXML2=off: Support for libxml2 (required by monitoring VMware)
 NMAP=off: Build/install nmap for o/s detection
 SSH=off: Support for SSH-based checks
> Options available for the single DB: you have to select exactly
one of them
 MYSQL=on: MySQL database support
 PGSQL=off: PostgreSQL database support
 SQLITE=off: SQLite database support
 ORACLE=off: Oracle database support
 ODBC=off: Support for database checks via ODBC
===> Use 'make config' to modify these settings

ODBC shouldn't be in DB section. See in 2014Q2 - that's how it has to
look. Please, fix it
___
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: Squid aufs crashes under 10.0

2014-05-12 Thread Pavel Timofeev
Hi! Any plans to import squid34 to ports tree?

2014-02-11 9:40 GMT+04:00 Dennis Glatting :
> On Mon, 2014-02-10 at 20:11 +0100, Florian Smeets wrote:
>> On 10/02/14 16:21, Dennis Glatting wrote:
>> > On Mon, 2014-02-10 at 11:15 +0400, Pavel Timofeev wrote:
>> >> So what should I do?
>> >> Write a PR to squid's bugzilla with link to this thread?
>> >> Fill FreeBSD ports' PR? (it seems like maintainer of squid doesn't
>> >> look at PRs about squid).
>> >> And it seems like this problem is retaled to all of squid ports, not
>> >> only to www/squid33.
>> >>
>> >
>> > Good question. I don't know. I ported 3.4 and sent email to the
>> > maintainer and to the list. Zip in response.
>> >
>>
>> I plan to take care of it this week. (squid34 + aufs patches)
>>
>
> My stuff here:
>
> fetch http://www.pki2.com/squid34.tar
>
>
>> Florian
>>
>
>
___
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"


Reference implementation of new ports

2014-02-27 Thread Pavel Timofeev
Hello!
FreeBSD's ports are going now to the new "staged and optionNGed world".
Of course, freebsd porters pages have to be updated.

But, I'd like suggest something more easy, for the first glance.
Let's define a couple of ports about which we can say "Yes, this port
is an example of reference implementation of our new stage+optionNG
features. This is how things must look!".
Let's support it as best practice of creating new or converting exiting ports.
I think it would really help for other maintainers as example!
These ports must contain example of that rules which was mentioned in
https://wiki.freebsd.org/ports/StageDir.
What do you think?

P.S. For some time, good place to mention about it is
https://wiki.freebsd.org/ports/StageDir. Something like "For example,
look at ports path/port and path/port"
___
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: Squid aufs crashes under 10.0

2014-02-09 Thread Pavel Timofeev
So what should I do?
Write a PR to squid's bugzilla with link to this thread?
Fill FreeBSD ports' PR? (it seems like maintainer of squid doesn't
look at PRs about squid).
And it seems like this problem is retaled to all of squid ports, not
only to www/squid33.

2014-02-09 23:56 GMT+04:00 Dimitry Andric :
> On 09 Feb 2014, at 20:16, Dennis Glatting  wrote:
>> On Sun, 2014-02-09 at 19:37 +0100, Dimitry Andric wrote:
> ...
>>> Very bad coding practice, obviously.  It should call Find() first, and
>>> if that returns NULL, it should abort in some sort of controlled way.
>>>
>>
>> Found that too but not the reason why:
>>
>> (lldb) run -d -z -F -f /root/squid.conf
>> Process 23598 launched: './src/squid' (x86_64)
>> Find(): Mmapped
>> Find(): IpcIo
>> Find(): DiskDaemon
>> Find(): Blocking
>> Find(): AIO
>> Returning NULL
>>
>> There's a lot of faulty (i.e., a lack thereof) checking in Squid. For
>> example, I replaced strlen() with a custom version that first checks for
>> NULL and returns 0 if that is the case (strlen() was often called by
>> std::cstring::c_str() that was not yet initialized). That small code
>> fragment resolved a lot of SEGVs.
>
> There are a bunch of places where they use std::ostream::operator<< to
> output e.g. configuration strings to the debug stream, for example in
> uniqueHostname(), in src/tools.cc:
>
> const char *
> uniqueHostname(void)
> {
> debugs(21, 3, HERE << " Config: '" << Config.uniqueHostname << "'");
> return Config.uniqueHostname ? Config.uniqueHostname : getMyHostname();
> }
>
> The problem case is when Config.uniqueHostname is NULL: this gets
> converted into a std::string first (which is _undefined behavior_), then
> it gets streamed to the debug stream.
>
> However, there is a difference between libstdc++ and libc++ here: the
> former silently accepts NULL arguments passed to the std::string
> constructor, creating a sort of "empty" string for you, which seems to
> work as normal.  The latter just stores your NULL pointer, and if you
> actually try to do anything with it, the program will crash.
>
> To fix at least two places where this is done, drop the attached patches
> in www/squid33/files.
>
> -Dimitry
>
>
>
___
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: Squid aufs crashes under 10.0

2014-02-07 Thread Pavel Timofeev
Sorry, it has to be in freebsd-ports@ too.

2014-02-07 Pavel Timofeev :
> Hi!
> There is a problem with squid under FreeBSD10.0.
> Squid crashes immediately if storage type is set to aufs.
> It goes down during read of config file.
>
> No problem with diskd. No problem with aufs under FreeBSD9.2.
>
> Someone thinks that it's related to clang which is default compiler on
> FreeBSD 10.0.
>
> I recompiled www/squid33 with DEBUG option. Got coredump.
> Then I did and got this:
> gdb /usr/local/sbin/squid /var/squid/squid.core
> 
> Reading symbols from /usr/lib/private/libheimipcc.so.11...done.
> Loaded symbols for /usr/lib/private/libheimipcc.so.11
> Reading symbols from /libexec/ld-elf.so.1...done.
> Loaded symbols for /libexec/ld-elf.so.1
> Segmentation fault (core dumped)
>
> Gdb goes down too =)
> 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"


libreoffice-3.4.3 fails to upgrade

2011-09-06 Thread Pavel Timofeev
...
checking which db to use... external
checking for db41/db.h... no
checking for db41/db.h... no
checking for db-5.0/db.h... no
checking for db5.0/db.h... no
checking for db-5/db.h... no
checking for db5/db.h... no
checking for db-4.8/db.h... no
checking for db4.8/db.h... no
checking for db-4.7/db.h... no
checking for db4.7/db.h... no
checking for db-4/db.h... no
checking for db4/db.h... yes
checking whether db is at least 4.1... configure: error: no. you need at
least db 4.1
===>  Script "configure" failed unexpectedly.
Please report the problem to off...@freebsd.org [maintainer] and attach the
"/usr/ports/editors/libreoffice/work/libreoffice-bootstrap-3.4.3.2/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

Stop in /usr/ports/editors/libreoffice.
*** Error code 1

Stop in /usr/ports/editors/libreoffice.

===>>> make failed for editors/libreoffice
===>>> Aborting update


===>>> You can restart from the point of failure with this command line:
   portmaster  editors/libreoffice

[root@timbsd ~]# pkg_info | grep db
apr-devrandom-gdbm-db42-ldap24-mysql55-1.4.5.1.3.12 Apache Portability
Library
db4-4.0.14_1,1  The Berkeley DB package, revision 4
db42-4.2.52_5   The Berkeley DB package, revision 4.2
dbus-1.4.6  A message bus system for inter-application communication
dbus-glib-0.88  GLib bindings for the D-BUS messaging system
deadbeef-0.4.4_2DeaDBeeF is an audio player
eggdbus-0.6_1   D-Bus bindings for GObject
gdbm-1.8.3_3The GNU database manager
libcddb-1.3.2_1 A library to access data on a CDDB server
mdbtools-0.5_14 Utilities and libraries to export data from MS Access
datab
php5-odbc-5.3.8 The odbc shared extension for php
py27-dbus-0.83.2Python bindings for the D-BUS messaging system
tdb-1.2.9,1 Trivial Database
xcmsdb-1.0.2Device Color Characterization utility for X
xrdb-1.0.6_1X server resource database utility
___
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: xfce 4.8 upgrade errors

2011-08-04 Thread Pavel Timofeev
Finally, the bug is gone with latest xorg-server (1.10.3,1) from trillian's
svn (svn co https://trillian.chruetertee.ch/svn/ports/branches/xorg-dev).

2011/5/3 Pavel Timofeev 

> No, it doesn't help =(
>
> 2011/4/30 Pavel Timofeev :
> > I just found this http://www.freebsd.org/cgi/query-pr.cgi?pr=156721
> > Maybe it helps me. I'll try it soon
> >
> > 2011/4/15 Pavel Timofeev :
> >> Thanks. I have deleted this line.
> >>
> >> 15.04.2011 18:16 пользователь "Warren Block" 
> написал:
> >>
> >
>
___
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"


from netsnmp.20 to netsnmp.30

2011-08-02 Thread Pavel Timofeev
since we have net-snmp 5.7 in ports it would be right to correct some ports
from netsnmp.20 to netsnmp.30

[root@monitor /usr/ports]# grep -R netsnmp.20 *
french/plgrenouille/Makefile:LIB_DEPENDS=
netsnmp.20:${PORTSDIR}/net-mgmt/net-snmp
security/libfwbuilder/Makefile:
netsnmp.20:${PORTSDIR}/net-mgmt/net-snmp
sysutils/rsyslog5-devel-snmp/Makefile:LIB_DEPENDS=
netsnmp.20:${PORTSDIR}/net-mgmt/net-snmp
___
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: Fping with WITH_IPV6=YES

2011-06-04 Thread Pavel Timofeev
Thank you! And if I need IPV6 I'll use /usr/ports/net/fping+ipv6.

> IPv6 not enabled by default, as it does not work together with IPv4.
I think it better to put this to pkg-message.

2011/6/3 Yuri Pankov 

> On Fri, Jun 03, 2011 at 05:57:44PM +0400, Pavel Timofeev wrote:
> > Is it normal that /usr/ports/net/fping doesn't work correct if you have
> > WITH_IPV6=YES in /etc/make.conf?
>
> Port's Makefile has the following comment:
> # IPv6 not enabled by default, as it does not work together with IPv4.
>
> and looking at the code, it seems that fping can use either ipv6 or ipv4
> but not both (see the #if(n)def's in the code).
>
> With -DWITH_IPV6:
> $ fping 192.168.1.4 192.168.1.252
> fping: hostname nor servname provided, or not known
> $ fping 2001:470:28:4ba:89c1:323b:9032:86ea \
>  2001:470:28:4ba:4a5b:39ff:feb3:b824
> 2001:470:28:4ba:89c1:323b:9032:86ea is alive
> 2001:470:28:4ba:4a5b:39ff:feb3:b824 is alive
>
> Without -DWITH_IPV6:
> $ fping 192.168.1.4 192.168.1.252
> 192.168.1.4 is alive
> 192.168.1.252 is alive
> $ fping 2001:470:28:4ba:89c1:323b:9032:86ea \
>  2001:470:28:4ba:4a5b:39ff:feb3:b824
> 2001:470:28:4ba:89c1:323b:9032:86ea address not found
> 2001:470:28:4ba:4a5b:39ff:feb3:b824 address not found
>
>
> HTH,
> Yuri
>
___
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"


Fping with WITH_IPV6=YES

2011-06-03 Thread Pavel Timofeev
Is it normal that /usr/ports/net/fping doesn't work correct if you have
WITH_IPV6=YES in /etc/make.conf?
___
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: Problems with apache22 after upgrading www/pecl-APC

2011-05-17 Thread Pavel Timofeev
Thanks you very much! It works with SPINLOCKS=on.

2011/5/17 Subbsd :
> Hi
>
> On Tue, May 17, 2011 at 12:44 PM, Pavel Timofeev  wrote:
>> Hi! My apache22 can't work correct after upgrading www/pecl-APC to 3.1.9
>>
>> [root@timbsd /usr/ports/www/pecl-APC]# make showconfig
>> ===> The following configuration options are available for pecl-APC-3.1.9:
>>     IPC=off "Enable IPC shm memory support (default: mmap)"
>>     SEMAPHORES=off "Enable sysv IPC semaphores (default: fcntl())"
>>     SPINLOCKS=off "Enable spinlocks (experimental)"
>>     FILEHITS=off "Enable per request cache info"
>> ===> Use 'make config' to modify these settings
>>
>>
>> [root@timbsd /usr/ports/www/pecl-APC]# tail /var/log/httpd-error.log
>> [Tue May 17 12:27:17 2011] [notice] Apache/2.2.18 (FreeBSD)
>> mod_ssl/2.2.18 OpenSSL/0.9.8q DAV/2 PHP/5.3.6 with Suhosin-Patch
>> mod_perl/2.0.4 Perl/v5.12.3 configured -- resuming normal operations
>> [Tue May 17 12:27:22 2011] [error] [client 192.168.8.15] PHP Fatal
>> error:  Unknown: apc_fcntl_unlock failed: in Unknown on line 0,
>> referer: 
>> http://timbsd.xxx.ru/zabbix/history.php?action=showvalues&itemid=22592&sid=15270e6be7aff75e
>> [Tue May 17 12:27:27 2011] [error] [client 192.168.8.15] PHP Fatal
>> error:  Unknown: apc_fcntl_unlock failed: in Unknown on line 0,
>> referer: http://timbsd.xxx.ru/
>> [Tue May 17 12:28:07 2011] [error] [client 192.168.8.184] PHP Fatal
>> error:  Unknown: apc_fcntl_unlock failed: in Unknown on line 0
>> [Tue May 17 12:29:07 2011] [error] [client 192.168.8.184] PHP Fatal
>> error:  Unknown: apc_fcntl_unlock failed: in Unknown on line 0
>>
>> Please, help!
>> Thank you!
>> ___
>> 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"
>>
>
> Ive confirm this problem. As workaround you can switch on this version
> APC to alternative lock method (make config in
> /usr/ports/www/pecl-APC)
>
___
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"


Problems with apache22 after upgrading www/pecl-APC

2011-05-17 Thread Pavel Timofeev
Hi! My apache22 can't work correct after upgrading www/pecl-APC to 3.1.9

[root@timbsd /usr/ports/www/pecl-APC]# make showconfig
===> The following configuration options are available for pecl-APC-3.1.9:
 IPC=off "Enable IPC shm memory support (default: mmap)"
 SEMAPHORES=off "Enable sysv IPC semaphores (default: fcntl())"
 SPINLOCKS=off "Enable spinlocks (experimental)"
 FILEHITS=off "Enable per request cache info"
===> Use 'make config' to modify these settings


[root@timbsd /usr/ports/www/pecl-APC]# tail /var/log/httpd-error.log
[Tue May 17 12:27:17 2011] [notice] Apache/2.2.18 (FreeBSD)
mod_ssl/2.2.18 OpenSSL/0.9.8q DAV/2 PHP/5.3.6 with Suhosin-Patch
mod_perl/2.0.4 Perl/v5.12.3 configured -- resuming normal operations
[Tue May 17 12:27:22 2011] [error] [client 192.168.8.15] PHP Fatal
error:  Unknown: apc_fcntl_unlock failed: in Unknown on line 0,
referer: 
http://timbsd.xxx.ru/zabbix/history.php?action=showvalues&itemid=22592&sid=15270e6be7aff75e
[Tue May 17 12:27:27 2011] [error] [client 192.168.8.15] PHP Fatal
error:  Unknown: apc_fcntl_unlock failed: in Unknown on line 0,
referer: http://timbsd.xxx.ru/
[Tue May 17 12:28:07 2011] [error] [client 192.168.8.184] PHP Fatal
error:  Unknown: apc_fcntl_unlock failed: in Unknown on line 0
[Tue May 17 12:29:07 2011] [error] [client 192.168.8.184] PHP Fatal
error:  Unknown: apc_fcntl_unlock failed: in Unknown on line 0

Please, help!
Thank you!
___
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-05-17 Thread Pavel Timofeev
Cool =) Thanks!

2011/5/17 Bernhard Froehlich :
> On Mon, 16 May 2011 23:45:08 -0700 (PDT), timp wrote:
>> http://www.virtualbox.org/wiki/Changelog
>> 4.0.8 just released
>
> Don't you think we know that?
>
> http://svn.bluelife.at/index.cgi/blueports/revision/?rev=1316
>
> --
> Bernhard Fröhlich
> http://www.bluelife.at/
>
___
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: xfce 4.8 upgrade errors

2011-05-03 Thread Pavel Timofeev
No, it doesn't help =(

2011/4/30 Pavel Timofeev :
> I just found this http://www.freebsd.org/cgi/query-pr.cgi?pr=156721
> Maybe it helps me. I'll try it soon
>
> 2011/4/15 Pavel Timofeev :
>> Thanks. I have deleted this line.
>>
>> 15.04.2011 18:16 пользователь "Warren Block"  написал:
>>
>
___
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: xfce 4.8 upgrade errors

2011-04-30 Thread Pavel Timofeev
I just found this http://www.freebsd.org/cgi/query-pr.cgi?pr=156721
Maybe it helps me. I'll try it soon

2011/4/15 Pavel Timofeev :
> Thanks. I have deleted this line.
>
> 15.04.2011 18:16 пользователь "Warren Block"  написал:
>
___
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: xfce 4.8 upgrade errors

2011-04-15 Thread Pavel Timofeev
Thanks. I have deleted this line.
15.04.2011 18:16 пользователь "Warren Block"  написал:
___
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: xfce 4.8 upgrade errors

2011-04-15 Thread Pavel Timofeev
Last_message_2.0 =)
Works good with old AccelMethod "XAA" (instead of exa)!
In xorg.conf I have
Option "RenderAccel"  "on" (yes, "on"!)
Option "AccelMethod""XAA"


2011/4/15 Olivier Duchateau 

> I have also an ATI graphics card (below excerpt from dmesg).
>
> [...]
> drm0:  on vgapci0
> vgapci0: child drm0 requested pci_enable_busmaster
> info: [drm] Initialized radeon 1.31.0 20080613
> info: [drm] Setting GART location based on new memory map
> info: [drm] Loading R300 Microcode
> info: [drm] Num pipes: 2
> info: [drm] writeback test succeeded in 1 usecs
>
> In my /etc/X11/xorg.conf, in section Device:
> Section "Device"
>Option "int10"  "on"
>Option "BusType"  "PCIE"
>Option "RenderAccel"  "on"
>Option "AccelMethod"  "exa"
>Option "DRI"  "on"
>Option "DynamicPM""on"
>  Identifier  "Card0"
>  Driver  "radeon"
>  VendorName  "ATI Technologies Inc"
>  BoardName   "Radeon XPRESS 200M 5955 (PCIE)"
>  BusID   "PCI:1:5:0"
> EndSection
>
> I used Xfce 4.8 (during development stages) with FreeBSD 8.1 and older
> version of X.org, and I didn't notice particular.
>
>
> 2011/4/15 Pavel Timofeev :
> >> I've send PR, http://www.freebsd.org/cgi/query-pr.cgi?pr=156231
> >> http://www.freebsd.org/cgi/query-pr.cgi?pr=156230
> >> We must wait for upgrade made by maintainer, but you can use patches.
> >
> > Yes, I tried ports/156231 and ports/156230. Nothing changed. And tried
> >
> >> Pavel, are you able to run your xfce session with startx command?
> >> 1. In /etc/ttys (line beginning by ttyv8), replace 'on' by 'off',
> >> reboot your computer.
> >
> > I use slim and rc.conf. Ok, slim_enable="YES" was commented in
> /etc/rc.conf
> >
> >> 2. if in your $HOME directory, .xinitrc (or .xsession) file doesn't
> >> exist, copy it from /usr/local/etc/xdg/xfce4/.
> >> 3. create also .xsession (ln -sf ~/.xinitrc ~/.xsession)
> > Copied and created. (Before I had .xinitrc and it contained
> > /usr/local/bin/startxfce4, and I had .xsession which used as link to
> > .xinitrc. Made by your advice.)
> >
> >> 4. finally, run 'startx' command, a file called .xsession-errors will
> >> appear
> > Done. But no .xsession-errors file =(
> > And system hangs as before when I want to run opera and other problem
> apps.
> >
> >
> > About miwi`s post:
> > I noticed that adding line 'Option "BusType" "PCIE"' to xorg.conf in the
> > 'Section "Device"' makes something strange.
> > At first Xorg start I see black screen (no errors in Xorg.log.0), but
> after
> > restart it works good, and hangs don't occur.
> > Is it normal? My card is 'ATI Technologies Inc RV350 AQ [Radeon 9600] rev
> 0'
> > and it is AGP card.
> > Changing BusType to AGP or PCI doesn`t bring anything good: system hangs.
> >
> > 2011/4/15 Olivier Duchateau 
> >>
> >> 2011/4/14 Warren Block :
> >> > On Thu, 14 Apr 2011, Pavel Timofeev wrote:
> >> >
> >> >> I just understood the problem!
> >> >> It dawned upon me! All these apps are united by the fact that they
> have
> >> >> icons (when they running) at notification area on xfce4-panel.
> >> >> Problem with xfce4-panel! I checked it.
> >> >>
> >> >> If I make
> >> >> $ rm -rf .config
> >> >> and then logon to xfce4 it tell me 'Welcome to the first start of the
> >> >> panel'
> >> >> and I choose  'Use default config'.
> >> >> Now all works very good,
> >> >> But if I make logout and then relogon to xfce4 again opera and some
> >> >> apps
> >> >> hangs system.
> >> >>
> >> >> Ok. Reboot system. Logon to xfce4 and first thing remove
> 'notification
> >> >> area'
> >> >> from xfce4-panel. And now all works fine!
> >> >> Problem in xfce4-panel.
> >> >
> >> > There was a new release of xfce4-panel a few days ago:
> >> > http://foo-projects.org/pipermail/xfce/2011-April/028514.html
> >>
> >> I've send PR, http://www.freebsd.org/cgi/query-pr.cgi?pr=156231
> >>
> >> >
> >> > Also a new version of garcon:
> >> > http://foo-projects.org/pipermail/xfce/2011-April/028513.html
> >> >
> >>
> >> http://www.freebsd.org/cgi/query-pr.cgi?pr=156230
> >>
> >> We must wait for upgrade made by maintainer, but you can use patches.
> >>
> >> Pavel, are you able to run your xfce session with startx command ?
> >>
> >> 1. In /etc/ttys (line beginning by ttyv8), replace 'on' by 'off',
> >> reboot your computer.
> >> 2. if in your $HOME directory, .xinitrc (or .xsession) file doesn't
> >> exist, copy it from /usr/local/etc/xdg/xfce4/.
> >> 3. create also .xsession (ln -sf ~/.xinitrc ~/.xsession)
> >> 4. finally, run 'startx' command, a file called .xsession-errors will
> >> appear
> >>
> >> Look at warning and errors.
> >>
> >> --
> >> olivier
> >
> >
>
>
>
> --
> olivier
>
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Fwd: xfce 4.8 upgrade errors

2011-04-15 Thread Pavel Timofeev
-- Forwarded message --
From: Pavel Timofeev 
Date: 2011/4/15
Subject: Re: xfce 4.8 upgrade errors
To: Olivier Duchateau 


Crashes stoped after adding 'Option "RenderAccel"  "off"' to xorg.conf


2011/4/15 Pavel Timofeev 

> When I used xfce-4.6 I didn`t have problems.
> Maybe it hardware error in my video card.
> I think removing notification area looks not bad for me.
>
> Anyway, big thanks to all.
>
>
> 2011/4/15 Olivier Duchateau 
>
>> I have also an ATI graphics card (below excerpt from dmesg).
>>
>> [...]
>> drm0:  on vgapci0
>> vgapci0: child drm0 requested pci_enable_busmaster
>> info: [drm] Initialized radeon 1.31.0 20080613
>> info: [drm] Setting GART location based on new memory map
>> info: [drm] Loading R300 Microcode
>> info: [drm] Num pipes: 2
>> info: [drm] writeback test succeeded in 1 usecs
>>
>> In my /etc/X11/xorg.conf, in section Device:
>> Section "Device"
>>Option "int10"  "on"
>>Option "BusType"  "PCIE"
>>Option "RenderAccel"  "on"
>>Option "AccelMethod"  "exa"
>>Option "DRI"  "on"
>>Option "DynamicPM""on"
>>  Identifier  "Card0"
>>  Driver  "radeon"
>>  VendorName  "ATI Technologies Inc"
>>  BoardName   "Radeon XPRESS 200M 5955 (PCIE)"
>>  BusID   "PCI:1:5:0"
>> EndSection
>>
>> I used Xfce 4.8 (during development stages) with FreeBSD 8.1 and older
>> version of X.org, and I didn't notice particular.
>>
>>
>> 2011/4/15 Pavel Timofeev :
>> >> I've send PR, http://www.freebsd.org/cgi/query-pr.cgi?pr=156231
>> >> http://www.freebsd.org/cgi/query-pr.cgi?pr=156230
>> >> We must wait for upgrade made by maintainer, but you can use patches.
>> >
>> > Yes, I tried ports/156231 and ports/156230. Nothing changed. And tried
>> >
>> >> Pavel, are you able to run your xfce session with startx command?
>> >> 1. In /etc/ttys (line beginning by ttyv8), replace 'on' by 'off',
>> >> reboot your computer.
>> >
>> > I use slim and rc.conf. Ok, slim_enable="YES" was commented in
>> /etc/rc.conf
>> >
>> >> 2. if in your $HOME directory, .xinitrc (or .xsession) file doesn't
>> >> exist, copy it from /usr/local/etc/xdg/xfce4/.
>> >> 3. create also .xsession (ln -sf ~/.xinitrc ~/.xsession)
>> > Copied and created. (Before I had .xinitrc and it contained
>> > /usr/local/bin/startxfce4, and I had .xsession which used as link to
>> > .xinitrc. Made by your advice.)
>> >
>> >> 4. finally, run 'startx' command, a file called .xsession-errors will
>> >> appear
>> > Done. But no .xsession-errors file =(
>> > And system hangs as before when I want to run opera and other problem
>> apps.
>> >
>> >
>> > About miwi`s post:
>> > I noticed that adding line 'Option "BusType" "PCIE"' to xorg.conf in the
>> > 'Section "Device"' makes something strange.
>> > At first Xorg start I see black screen (no errors in Xorg.log.0), but
>> after
>> > restart it works good, and hangs don't occur.
>> > Is it normal? My card is 'ATI Technologies Inc RV350 AQ [Radeon 9600]
>> rev 0'
>> > and it is AGP card.
>> > Changing BusType to AGP or PCI doesn`t bring anything good: system
>> hangs.
>> >
>> > 2011/4/15 Olivier Duchateau 
>> >>
>> >> 2011/4/14 Warren Block :
>> >> > On Thu, 14 Apr 2011, Pavel Timofeev wrote:
>> >> >
>> >> >> I just understood the problem!
>> >> >> It dawned upon me! All these apps are united by the fact that they
>> have
>> >> >> icons (when they running) at notification area on xfce4-panel.
>> >> >> Problem with xfce4-panel! I checked it.
>> >> >>
>> >> >> If I make
>> >> >> $ rm -rf .config
>> >> >> and then logon to xfce4 it tell me 'Welcome to the first start of
>> the
>> >> >> panel'
>> >> >> and I choose  'Use default config'.
>> >> >> Now all works very g

Re: xfce 4.8 upgrade errors

2011-04-15 Thread Pavel Timofeev
When I used xfce-4.6 I didn`t have problems.
Maybe it hardware error in my video card.
I think removing notification area looks not bad for me.

Anyway, big thanks to all.

2011/4/15 Olivier Duchateau 

> I have also an ATI graphics card (below excerpt from dmesg).
>
> [...]
> drm0:  on vgapci0
> vgapci0: child drm0 requested pci_enable_busmaster
> info: [drm] Initialized radeon 1.31.0 20080613
> info: [drm] Setting GART location based on new memory map
> info: [drm] Loading R300 Microcode
> info: [drm] Num pipes: 2
> info: [drm] writeback test succeeded in 1 usecs
>
> In my /etc/X11/xorg.conf, in section Device:
> Section "Device"
>Option "int10"  "on"
>Option "BusType"  "PCIE"
>Option "RenderAccel"  "on"
>Option "AccelMethod"  "exa"
>Option "DRI"  "on"
>Option "DynamicPM""on"
>  Identifier  "Card0"
>  Driver  "radeon"
>  VendorName  "ATI Technologies Inc"
>  BoardName   "Radeon XPRESS 200M 5955 (PCIE)"
>  BusID   "PCI:1:5:0"
> EndSection
>
> I used Xfce 4.8 (during development stages) with FreeBSD 8.1 and older
> version of X.org, and I didn't notice particular.
>
>
> 2011/4/15 Pavel Timofeev :
> >> I've send PR, http://www.freebsd.org/cgi/query-pr.cgi?pr=156231
> >> http://www.freebsd.org/cgi/query-pr.cgi?pr=156230
> >> We must wait for upgrade made by maintainer, but you can use patches.
> >
> > Yes, I tried ports/156231 and ports/156230. Nothing changed. And tried
> >
> >> Pavel, are you able to run your xfce session with startx command?
> >> 1. In /etc/ttys (line beginning by ttyv8), replace 'on' by 'off',
> >> reboot your computer.
> >
> > I use slim and rc.conf. Ok, slim_enable="YES" was commented in
> /etc/rc.conf
> >
> >> 2. if in your $HOME directory, .xinitrc (or .xsession) file doesn't
> >> exist, copy it from /usr/local/etc/xdg/xfce4/.
> >> 3. create also .xsession (ln -sf ~/.xinitrc ~/.xsession)
> > Copied and created. (Before I had .xinitrc and it contained
> > /usr/local/bin/startxfce4, and I had .xsession which used as link to
> > .xinitrc. Made by your advice.)
> >
> >> 4. finally, run 'startx' command, a file called .xsession-errors will
> >> appear
> > Done. But no .xsession-errors file =(
> > And system hangs as before when I want to run opera and other problem
> apps.
> >
> >
> > About miwi`s post:
> > I noticed that adding line 'Option "BusType" "PCIE"' to xorg.conf in the
> > 'Section "Device"' makes something strange.
> > At first Xorg start I see black screen (no errors in Xorg.log.0), but
> after
> > restart it works good, and hangs don't occur.
> > Is it normal? My card is 'ATI Technologies Inc RV350 AQ [Radeon 9600] rev
> 0'
> > and it is AGP card.
> > Changing BusType to AGP or PCI doesn`t bring anything good: system hangs.
> >
> > 2011/4/15 Olivier Duchateau 
> >>
> >> 2011/4/14 Warren Block :
> >> > On Thu, 14 Apr 2011, Pavel Timofeev wrote:
> >> >
> >> >> I just understood the problem!
> >> >> It dawned upon me! All these apps are united by the fact that they
> have
> >> >> icons (when they running) at notification area on xfce4-panel.
> >> >> Problem with xfce4-panel! I checked it.
> >> >>
> >> >> If I make
> >> >> $ rm -rf .config
> >> >> and then logon to xfce4 it tell me 'Welcome to the first start of the
> >> >> panel'
> >> >> and I choose  'Use default config'.
> >> >> Now all works very good,
> >> >> But if I make logout and then relogon to xfce4 again opera and some
> >> >> apps
> >> >> hangs system.
> >> >>
> >> >> Ok. Reboot system. Logon to xfce4 and first thing remove
> 'notification
> >> >> area'
> >> >> from xfce4-panel. And now all works fine!
> >> >> Problem in xfce4-panel.
> >> >
> >> > There was a new release of xfce4-panel a few days ago:
> >> > http://foo-projects.org/pipermail/xfce/2011-April/028514.html
> >>
> >> I've send PR, http://www.freebsd.org/cgi/query-pr.cgi?pr=156231
> >>
> >> >
> >> > Also a new version of garcon:
> >> > http://foo-projects.org/pipermail/xfce/2011-April/028513.html
> >> >
> >>
> >> http://www.freebsd.org/cgi/query-pr.cgi?pr=156230
> >>
> >> We must wait for upgrade made by maintainer, but you can use patches.
> >>
> >> Pavel, are you able to run your xfce session with startx command ?
> >>
> >> 1. In /etc/ttys (line beginning by ttyv8), replace 'on' by 'off',
> >> reboot your computer.
> >> 2. if in your $HOME directory, .xinitrc (or .xsession) file doesn't
> >> exist, copy it from /usr/local/etc/xdg/xfce4/.
> >> 3. create also .xsession (ln -sf ~/.xinitrc ~/.xsession)
> >> 4. finally, run 'startx' command, a file called .xsession-errors will
> >> appear
> >>
> >> Look at warning and errors.
> >>
> >> --
> >> olivier
> >
> >
>
>
>
> --
> olivier
>
___
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: xfce 4.8 upgrade errors

2011-04-15 Thread Pavel Timofeev
> I've send PR, http://www.freebsd.org/cgi/query-pr.cgi?pr=156231
> http://www.freebsd.org/cgi/query-pr.cgi?pr=156230
> We must wait for upgrade made by maintainer, but you can use patches.

Yes, I tried ports/156231 and ports/156230. Nothing changed. And tried

> Pavel, are you able to run your xfce session with startx command?
> 1. In /etc/ttys (line beginning by ttyv8), replace 'on' by 'off',
> reboot your computer.

I use slim and rc.conf. Ok, slim_enable="YES" was commented in /etc/rc.conf

> 2. if in your $HOME directory, .xinitrc (or .xsession) file doesn't
> exist, copy it from /usr/local/etc/xdg/xfce4/.
> 3. create also .xsession (ln -sf ~/.xinitrc ~/.xsession)
Copied and created. (Before I had .xinitrc and it contained
/usr/local/bin/startxfce4, and I had .xsession which used as link to
.xinitrc. Made by your advice.)

> 4. finally, run 'startx' command, a file called .xsession-errors will
appear
Done. But no .xsession-errors file =(
And system hangs as before when I want to run opera and other problem apps.


About miwi`s post:
I noticed that adding line 'Option "BusType" "PCIE"' to xorg.conf in the
'Section "Device"' makes something strange.
At first Xorg start I see black screen (no errors in Xorg.log.0), but after
restart it works good, and hangs don't occur.
Is it normal? My card is 'ATI Technologies Inc RV350 AQ [Radeon 9600] rev 0'
and it is AGP card.
Changing BusType to AGP or PCI doesn`t bring anything good: system hangs.

2011/4/15 Olivier Duchateau 

> 2011/4/14 Warren Block :
> > On Thu, 14 Apr 2011, Pavel Timofeev wrote:
> >
> >> I just understood the problem!
> >> It dawned upon me! All these apps are united by the fact that they have
> >> icons (when they running) at notification area on xfce4-panel.
> >> Problem with xfce4-panel! I checked it.
> >>
> >> If I make
> >> $ rm -rf .config
> >> and then logon to xfce4 it tell me 'Welcome to the first start of the
> >> panel'
> >> and I choose  'Use default config'.
> >> Now all works very good,
> >> But if I make logout and then relogon to xfce4 again opera and some apps
> >> hangs system.
> >>
> >> Ok. Reboot system. Logon to xfce4 and first thing remove 'notification
> >> area'
> >> from xfce4-panel. And now all works fine!
> >> Problem in xfce4-panel.
> >
> > There was a new release of xfce4-panel a few days ago:
> > http://foo-projects.org/pipermail/xfce/2011-April/028514.html
>
> I've send PR, http://www.freebsd.org/cgi/query-pr.cgi?pr=156231
>
> >
> > Also a new version of garcon:
> > http://foo-projects.org/pipermail/xfce/2011-April/028513.html
> >
>
> http://www.freebsd.org/cgi/query-pr.cgi?pr=156230
>
> We must wait for upgrade made by maintainer, but you can use patches.
>
> Pavel, are you able to run your xfce session with startx command ?
>
> 1. In /etc/ttys (line beginning by ttyv8), replace 'on' by 'off',
> reboot your computer.
> 2. if in your $HOME directory, .xinitrc (or .xsession) file doesn't
> exist, copy it from /usr/local/etc/xdg/xfce4/.
> 3. create also .xsession (ln -sf ~/.xinitrc ~/.xsession)
> 4. finally, run 'startx' command, a file called .xsession-errors will
> appear
>
> Look at warning and errors.
>
> --
> olivier
>
___
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: xfce 4.8 upgrade errors

2011-04-14 Thread Pavel Timofeev
Thank you, Olivier for your reply!

> Can you post your .xsession-errors ? Or better /var/log/Xorg.0.log
No, I can't. System hangs and then I can only reboot system by pressing
button on computer case.
Of course I can`t see any error messages anywhere. And I even doesn't have
.xsession-errors file.

> Have you read, Martin Wilke's post [1] ?
Yes, I have read miwi's post. Doesn't help.
And I tried Xorg 1.9.5 (
http://freebsd.1045724.n5.nabble.com/ECFT-drm-dri-mesa-xorg-server-update-Part-1-td3867580.html
).
Any much more =( Nothing helps.

I just understood the problem!
It dawned upon me! All these apps are united by the fact that they have
icons (when they running) at notification area on xfce4-panel.
Problem with xfce4-panel! I checked it.

If I make
$ rm -rf .config
and then logon to xfce4 it tell me 'Welcome to the first start of the panel'
and I choose  'Use default config'.
Now all works very good,
But if I make logout and then relogon to xfce4 again opera and some apps
hangs system.

Ok. Reboot system. Logon to xfce4 and first thing remove 'notification area'
from xfce4-panel. And now all works fine!
Problem in xfce4-panel.

Sorry for poor english, it is foreign for me. Do you understand me?


2011/4/13 Olivier Duchateau 

> Can you post your .xsession-errors ? Or better /var/log/Xorg.0.log
>
> Have you read, Martin Wilke's post [1] ?
>
> [1] http://miwi.bsdcrew.de/2011/02/cft-xorg-7-5-miwi1-freebsd-edition/
>
> 2011/4/13 timp :
> > I still have problems with opera in xfce4.
> > xfce-4.8 + xf86-video-ati-6.14.1_1 + some apps = system permanently
> hungs.
> >
> > Also crashes occurs with following apps: xfce4-taskmanager, remmina,
> opera,
> > etc.
> > If I use xfce4 and xf86-video-vesa-2.3.0_1 driver instead of
> > xf86-video-ati-6.14.1_1 everything works good. Or if I run this apps in
> > gnome2 or twm (with ati driver) it works fine too.
> > I checked my hdd with MHDD program. No errors.
> > RAM checked too with succesful result (129 passes in memtest+).
> >
> > These applications are united only by the fact that they work with the
> > network.
> > Any ideas?
> >
> > --
> > View this message in context:
> http://freebsd.1045724.n5.nabble.com/xfce-4-8-upgrade-errors-tp3863482p4300506.html
> > Sent from the freebsd-ports mailing list archive at Nabble.com.
> > ___
> > 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"
> >
>
>
>
> --
> olivier
>
___
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: [ECFT] drm/dri/mesa/xorg-server update [Part 1]

2011-03-15 Thread Pavel Timofeev

Also I tried with intel D510MO motherboard (dmidecode said me Intel(R) GMA
3150 Video Device).
/usr/ports/x11-drivers/xf86-video-intel doesn`t support this video device.
/usr/ports/x11-drivers/xf86-video-intel29 doesn`t compile (ussually I use
this driver) and patches provided by George Liaskos (Mar 12, 2011; 07:21pm
and Mar 14, 2011; 12:03am) doesn`t help =(  

===>  Building for xf86-video-intel29-2.9.1
make `test -z @ && echo -s` all-recursive
Making all in uxa
../doltcompile /bin/sh
/usr/ports/x11-drivers/xf86-video-intel29/work/xf86-video-intel-2.9.1/./shave
cc cc -DHAVE_CONFIG_H -I. -I..-D_THREAD_SAFE -I/usr/local/include/xorg
-I/usr/local/include -I/usr/local/include/pixman-1-I/usr/local/include
-I/usr/local/include/libdrm -Wall -Wpointer-arith -Wstrict-prototypes
-Wmissing-prototypes -Wmissing-declarations  -Wnested-externs
-fno-strict-aliasing -D_THREAD_SAFE -I/usr/local/include/xorg
-I/usr/local/include -I/usr/local/include/pixman-1  -O2 -pipe
-fno-strict-aliasing -MT uxa.lo -MD -MP -MF .deps/uxa.Tpo -c -o uxa.lo uxa.c
  CCuxa.o
In file included from uxa.c:37:
uxa-priv.h: In function 'uxa_get_screen':
uxa-priv.h:185: warning: passing argument 2 of 'dixLookupPrivate' from
incompatible pointer type
uxa.c: In function 'uxa_close_screen':
uxa.c:393: warning: 'Xfree' is deprecated (declared at
/usr/local/include/xorg/os.h:234)
uxa.c: In function 'uxa_driver_alloc':
uxa.c:411: warning: 'Xcalloc' is deprecated (declared at
/usr/local/include/xorg/os.h:225)
uxa.c: In function 'uxa_driver_init':
uxa.c:463: warning: 'Xcalloc' is deprecated (declared at
/usr/local/include/xorg/os.h:225)
uxa.c:473: warning: passing argument 2 of 'dixSetPrivate' from incompatible
pointer type
mv -f .deps/uxa.Tpo .deps/uxa.Plo
../doltcompile /bin/sh
/usr/ports/x11-drivers/xf86-video-intel29/work/xf86-video-intel-2.9.1/./shave
cc cc -DHAVE_CONFIG_H -I. -I..-D_THREAD_SAFE -I/usr/local/include/xorg
-I/usr/local/include -I/usr/local/include/pixman-1-I/usr/local/include
-I/usr/local/include/libdrm -Wall -Wpointer-arith -Wstrict-prototypes
-Wmissing-prototypes -Wmissing-declarations  -Wnested-externs
-fno-strict-aliasing -D_THREAD_SAFE -I/usr/local/include/xorg
-I/usr/local/include -I/usr/local/include/pixman-1  -O2 -pipe
-fno-strict-aliasing -MT uxa-accel.lo -MD -MP -MF .deps/uxa-accel.Tpo -c -o
uxa-accel.lo uxa-accel.c
  CCuxa-accel.o
In file included from uxa-accel.c:33:
uxa-priv.h: In function 'uxa_get_screen':
uxa-priv.h:185: warning: passing argument 2 of 'dixLookupPrivate' from
incompatible pointer type
uxa-accel.c: In function 'uxa_poly_point':
uxa-accel.c:523: warning: 'Xalloc' is deprecated (declared at
/usr/local/include/xorg/os.h:221)
uxa-accel.c:537: warning: 'Xfree' is deprecated (declared at
/usr/local/include/xorg/os.h:234)
uxa-accel.c: In function 'uxa_poly_lines':
uxa-accel.c:560: warning: 'Xalloc' is deprecated (declared at
/usr/local/include/xorg/os.h:221)
uxa-accel.c:576: warning: 'Xfree' is deprecated (declared at
/usr/local/include/xorg/os.h:234)
uxa-accel.c:600: warning: 'Xfree' is deprecated (declared at
/usr/local/include/xorg/os.h:234)
uxa-accel.c: In function 'uxa_poly_segment':
uxa-accel.c:631: warning: 'Xalloc' is deprecated (declared at
/usr/local/include/xorg/os.h:221)
uxa-accel.c:659: warning: 'Xfree' is deprecated (declared at
/usr/local/include/xorg/os.h:234)
mv -f .deps/uxa-accel.Tpo .deps/uxa-accel.Plo
../doltcompile /bin/sh
/usr/ports/x11-drivers/xf86-video-intel29/work/xf86-video-intel-2.9.1/./shave
cc cc -DHAVE_CONFIG_H -I. -I..-D_THREAD_SAFE -I/usr/local/include/xorg
-I/usr/local/include -I/usr/local/include/pixman-1-I/usr/local/include
-I/usr/local/include/libdrm -Wall -Wpointer-arith -Wstrict-prototypes
-Wmissing-prototypes -Wmissing-declarations  -Wnested-externs
-fno-strict-aliasing -D_THREAD_SAFE -I/usr/local/include/xorg
-I/usr/local/include -I/usr/local/include/pixman-1  -O2 -pipe
-fno-strict-aliasing -MT uxa-glyphs.lo -MD -MP -MF .deps/uxa-glyphs.Tpo -c
-o uxa-glyphs.lo uxa-glyphs.c
  CCuxa-glyphs.o
In file included from uxa-glyphs.c:49:
uxa-priv.h: In function 'uxa_get_screen':
uxa-priv.h:185: warning: passing argument 2 of 'dixLookupPrivate' from
incompatible pointer type
uxa-glyphs.c: In function 'uxa_unrealize_glyph_caches':
uxa-glyphs.c:131: warning: 'Xfree' is deprecated (declared at
/usr/local/include/xorg/os.h:234)
uxa-glyphs.c:136: warning: 'Xfree' is deprecated (declared at
/usr/local/include/xorg/os.h:234)
uxa-glyphs.c: In function 'uxa_realize_glyph_caches':
uxa-glyphs.c:217: warning: 'Xalloc' is deprecated (declared at
/usr/local/include/xorg/os.h:221)
uxa-glyphs.c:218: warning: 'Xalloc' is deprecated (declared at
/usr/local/include/xorg/os.h:221)
mv -f .deps/uxa-glyphs.Tpo .deps/uxa-glyphs.Plo
../doltcompile /bin/sh
/usr/ports/x11-drivers/xf86-video-intel29/work/xf86-video-intel-2.9.1/./shave
cc cc -DHAVE_CONFIG_H -I. -I..-D_THREAD_SAFE -I/usr/local/include/xorg
-I/usr/local/include -I/usr/local

Re: [ECFT] drm/dri/mesa/xorg-server update [Part 1]

2011-03-14 Thread Pavel Timofeev

Hi!
Complete!

During upgrade portmaster (-a) said me 
...
cc -I. -I../mesa -I../mapi -I../../include  -I/usr/local/include -O2 -pipe
-fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math
-fvisibility=hidden -fno-strict-aliasing  -fPIC  -DUSE_X86_ASM -DUSE_MMX_ASM
-DUSE_3DNOW_ASM -DUSE_SSE_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS
-DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS
-DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DHAVE_XCB_DRI2 
-DFEATURE_GL=1 -L/usr/local/lib glcpp/glcpp-lex.o glcpp/glcpp-parse.o
glcpp/pp.o glcpp/glcpp.o ../mesa/program/hash_table.o
../../src/glsl/libglsl.a -o glcpp/glcpp
gmake[2]: Leaving directory
`/usr/ports/graphics/dri/work/Mesa-7.10.1/src/glsl'
gmake[2]: Entering directory
`/usr/ports/graphics/dri/work/Mesa-7.10.1/src/mesa'
python -t -O -O main/es_generator.py -S main/APIspec.xml -V GLES1.1 >
main/api_exec_es1.c
Traceback (most recent call last):
  File "main/es_generator.py", line 26, in 
import APIspecutil as apiutil
  File
"/usr/ports/graphics/dri/work/Mesa-7.10.1/src/mesa/main/APIspecutil.py",
line 28, in 
import libxml2
ImportError: No module named libxml2
gmake[2]: *** No rule to make target `depend', needed by `default'.  Stop.
gmake[2]: Leaving directory
`/usr/ports/graphics/dri/work/Mesa-7.10.1/src/mesa'
gmake[1]: *** [subdirs] Error 1
gmake[1]: Leaving directory `/usr/ports/graphics/dri/work/Mesa-7.10.1/src'
gmake: *** [default] Error 1
*** Error code 1

Stop in /usr/ports/graphics/dri.

===>>> make failed for graphics/dri
===>>> Aborting update

===>>> Update for graphics/dri failed
===>>> Aborting update

Then I installed /usr/ports/textproc/py-libxml2.
Then portmaster (-a) finished work successfully.

http://pastebin.com/90RdXudb
FreeBSD 8.2 RELEASE i386, xorg-server-1.9.4(with_hal),
xf86-video-ati-6.14.0_1.

I just tried to play in UrbanTerror on-line game, and it works fine ;) xfce
4.8 too.
Waiting for [part 2] =)


miwi-2 wrote:
> 
> Hi,
> 
> First of all, note that *this is very experimental, so you really have to
> know what
> you’re doing.* We managed to get drm/dri with the newer xorg-server to
> work,
> and we have removed the support for WITHOUT_NOUVEAU.
> 
> We have just updated the xorg-dev repo:
> 
> – libdrm -> 2.4.24
> – libGL to 7.10.1
> – libGLU to 7.10.1
> – libGLUw to 7.10.1
> – libglut to 7.10.1
> – xproto to 7.0.17
> – libXaw to 1.0.9
> – libXt to 1.1.0
> – libX11 to 1.4.1
> – xorg-server to 1.9.4
> 
> After installing these, you will have to rebuild the following ports:
> 
> – your graphic driver
> – keybord driver
> – mouse/synaptics driver
> 
> Upon rebuilt, restart them.
> So to get the xorg stuff you will need to:
> run
> 
> svn co https://trillian.chruetertee.ch/svn/ports/branches/xorg-dev
> 
> A small merge script to merge the svn checkout into the real portstree can
> be found here:
> 
> http://people.freebsd.org/~miwi/xorg/xorgmerge
> 
> The script is a modified version of the kdemerge script. Please set the
> KDEDIR
> variable to the path of your X.org ports.
> 
> After merging, run one of the following command, depending on which tool
> you
> use
> to manage your installed packages.
> 
> portupgrade -af \*
> portmaster -af
> 
> Please report any problems and issues to x11 (at) FreeBSD.org.
> 
> *Again, please be aware that this is very experimental*, and
> I personally haven’t tested any 3D things yet, but we want
> to share our work and start testing to get early feedback
> for improvements. We plan to update Xorg fully to 7.6 after
> we get some feedback for update part 1. It will be much easier
> for us to figure out what the problems are with the updates
> being separated in 3 parts. Please make sure you know what
> you’re doing.
> 
> Thanks to Piter (gahr@) for helping me to get it compiled with our
> base gcc version.
> 
> - Martin
> 
> PS: ECFT -> Experimental Call for Testing [image: :P]
> ___
> 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"
> 
> 

-- 
View this message in context: 
http://old.nabble.com/-ECFT--drm-dri-mesa-xorg-server-update--Part-1--tp31124272p31144133.html
Sent from the freebsd-ports mailing list archive at Nabble.com.

___
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: xfce 4.8 upgrade errors

2011-03-11 Thread Pavel Timofeev
> Olivier Duchateau 
> It's known bug Xdm and ConsoleKit. With Xdm and Xfce you don't need to
> add ck-launch-session in your ~/.xinitrc.
> ...
> I don't know, why you don't use Xfce's xinitrc, it works fine with Xdm
> (I use it). You should also add symbolic link between ~/.xinitrc and
> ~/.xsession.
>


Thank you very much, Oviler, and sorry for your time!
But I`ve already figured out my problem.
I just added '/usr/local/bin/startxfce4' to .xsession
and then I made link from .xsession to .xinitrc (to act on your advice)
All works fine: I see icons and menu.
Really sorry for your time.

I still have one last problem (opera crashes system in xfce), but I think
I'll deal with it myself. Maybe it's again my inaccuracy or carelessness.

> Excerpt of configure script:
> [...]
> --disable-hal   Do not enable HAL (default=enabled)
> --disable-upowerDo not enable Upower support (formely
> devicekit-power) (default=enabled)
> --disable-consolekitDo not enable ConsoleKit (default=enabled)
> --disable-polkitDo not enable PolicyKit support (default=enabled)
> [...]
> ...
> I use sysutils/polkit (not sysutils/policykit which is replaced by
> polkit, and any more /usr/local/etc/PolicyKit/
> PolicyKit.conf) for
> logout / disconnect session and everything works fine.

I have porridge in my head from all this things=)
Various *kit and u* makes me cry)
And now I don`t know how to properly configure xfce on 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"


Re: xfce 4.8 upgrade errors

2011-03-11 Thread Pavel Timofeev
I`m very sorry for your time!
I changed .xsession to
$ cat .xsession
/usr/local/bin/startxfce4

And now I see icons, menu works and all fine!

But opera still hangs. I think it`s my inaccuracy.
Big thanks to all, and big sorry for your time =(

2011/3/11 Pavel Timofeev 

> Please, don`t be silent.
>
> How to repeat if you use xfce 4.8:
> 0. logout from your Xfce and go to console
> 1. make backup of config
> $ cp -r .config config_
> 2. delete configs
> $ rm -rf .config
> 3. login to your xfce
> Xfce will say you 'Welcome to the first start of the panel'. Choose 'Use
> default config'.
> And you will see my screenshot =) if you use default gtk and icons theme
> for xfce. And 'Applications menu' will not work.
>
> Bring it back:
> 0. logout from your Xfce and go to console
> 1. delete configs
> $ rm -rf .config
> 2. bring back configs
> $ cp -r config_ .config
> 3. check permissiong for .config folder
> $ chown -R username:usergroup /usr/home/username/.config
> 4. reboot.
>
>
> 2011/3/10 Pavel Timofeev 
>
> Of course I did it the first thing =)
>> I have lastest ports.
>> #portsnap fecth update && portmaster -ad
>>
>> # pkg_info | grep xfce4-utils
>> xfce4-utils-4.8.1_1 XFce 4 essential utilities and scripts
>>
>> 2011/3/10 Warren Block 
>>
>>> On Thu, 10 Mar 2011, Pavel Timofeev wrote:
>>>
>>>
>>>  By the way, new xfce4 from fresh ports looks very bad.
>>>> After fresh install it told me 'Welcome to the first start of the panel'
>>>> and
>>>> I chose 'Use default config'.
>>>> And now I see that (look at screenshots):
>>>>
>>>> Screenshot #1
>>>> http://img-fotki.yandex.ru/get/5904/mox87.0/0_62e05_925ad7d7_orig
>>>>
>>>
>>> Update your ports tree with portsnap or csup, then
>>> build/deinstall/install the sysutils/xfce4-utils port.  Should have
>>> xfce4-utils-4.8.1_1 when done.
>>>
>>
>>
>
___
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: xfce 4.8 upgrade errors

2011-03-11 Thread Pavel Timofeev
When I use XDM
$ grep ttyv8 /etc/ttys
ttyv8   "/usr/local/bin/xdm -nodaemon"  xterm   on secure
$ cat .xsession
exec /usr/local/bin/xfce4-session
and 'Applications menu' doesn`t work

If I use `startx` command instead of xdm
$ grep ttyv8 /etc/ttys
ttyv8   "/usr/local/bin/xdm -nodaemon"  xterm   off secure
And add following (find with google) line to .xinitrc
$ cat .xinitrc
ck-launch-session startxfce4
'Applications menu' works good

2011/3/9 Martin Wilke 

> please recompile again and restart it should really work.
>
> On Wed, Mar 9, 2011 at 9:55 PM, Pavel Timofeev  wrote:
>
>>
>>
>> Mark Felder-4 wrote:
>> >
>> >> How do I create a app menu, I'm getting an error when trying to load
>> the
>> >> menu "menus/applications.menu"
>> >> not found.
>> >
>> > Recompile sysutils/garcon to resolve this error.
>> >
>> > I hope this helps someone else...
>> >
>> >
>> > Regards,
>> >
>> >
>> > Mark
>> > ___
>> > 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
>> "
>> >
>> >
>>
>> Does not help in my case =(
>> fresh ports, fresh xfce4 install.
>> --
>> View this message in context:
>> http://old.nabble.com/xfce-4.8-upgrade-errors-tp31083045p31106533.html
>> Sent from the freebsd-ports mailing list archive at Nabble.com.
>>
>> ___
>> freebsd-ports@freebsd.org mailing list
>> http://lists.freebsd.org/mailman/listinfo/freebsd-ports
>> To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
>>
>
>
___
freebsd-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: xfce 4.8 upgrade errors

2011-03-11 Thread Pavel Timofeev
Please, don`t be silent.

How to repeat if you use xfce 4.8:
0. logout from your Xfce and go to console
1. make backup of config
$ cp -r .config config_
2. delete configs
$ rm -rf .config
3. login to your xfce
Xfce will say you 'Welcome to the first start of the panel'. Choose 'Use
default config'.
And you will see my screenshot =) if you use default gtk and icons theme for
xfce. And 'Applications menu' will not work.

Bring it back:
0. logout from your Xfce and go to console
1. delete configs
$ rm -rf .config
2. bring back configs
$ cp -r config_ .config
3. check permissiong for .config folder
$ chown -R username:usergroup /usr/home/username/.config
4. reboot.


2011/3/10 Pavel Timofeev 

> Of course I did it the first thing =)
> I have lastest ports.
> #portsnap fecth update && portmaster -ad
>
> # pkg_info | grep xfce4-utils
> xfce4-utils-4.8.1_1 XFce 4 essential utilities and scripts
>
> 2011/3/10 Warren Block 
>
>> On Thu, 10 Mar 2011, Pavel Timofeev wrote:
>>
>>
>>  By the way, new xfce4 from fresh ports looks very bad.
>>> After fresh install it told me 'Welcome to the first start of the panel'
>>> and
>>> I chose 'Use default config'.
>>> And now I see that (look at screenshots):
>>>
>>> Screenshot #1
>>> http://img-fotki.yandex.ru/get/5904/mox87.0/0_62e05_925ad7d7_orig
>>>
>>
>> Update your ports tree with portsnap or csup, then build/deinstall/install
>> the sysutils/xfce4-utils port.  Should have xfce4-utils-4.8.1_1 when done.
>>
>
>
___
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: xfce 4.8 upgrade errors

2011-03-10 Thread Pavel Timofeev
Of course I did it the first thing =)
I have lastest ports.
#portsnap fecth update && portmaster -ad

# pkg_info | grep xfce4-utils
xfce4-utils-4.8.1_1 XFce 4 essential utilities and scripts

2011/3/10 Warren Block 

> On Thu, 10 Mar 2011, Pavel Timofeev wrote:
>
>  By the way, new xfce4 from fresh ports looks very bad.
>> After fresh install it told me 'Welcome to the first start of the panel'
>> and
>> I chose 'Use default config'.
>> And now I see that (look at screenshots):
>>
>> Screenshot #1
>> http://img-fotki.yandex.ru/get/5904/mox87.0/0_62e05_925ad7d7_orig
>>
>
> Update your ports tree with portsnap or csup, then build/deinstall/install
> the sysutils/xfce4-utils port.  Should have xfce4-utils-4.8.1_1 when done.
>
___
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: xfce 4.8 upgrade errors

2011-03-10 Thread Pavel Timofeev
> Martin Wilke:

> please recompile again and restart it should really work.

Hmm, may be I do something wrong, but it doesn`t work.

By the way, new xfce4 from fresh ports looks very bad.
After fresh install it told me 'Welcome to the first start of the panel' and
I chose 'Use default config'.
And now I see that (look at screenshots):

Screenshot #1
http://img-fotki.yandex.ru/get/5904/mox87.0/0_62e05_925ad7d7_orig
1st, 2nd and 3rd icons/areas - is it normal location? I just added a plugin
to 3rd area. Before that it looked like 2nd. 4th area - don`t see icons.
Looks bad. Is it normal? Maybe I pick, I don`t know.

Screenshots #2 and #3
http://img-fotki.yandex.ru/get/6005/mox87.0/0_62e06_a32b7ba5_orig
http://img-fotki.yandex.ru/get/5605/mox87.0/0_62e07_2c163ded_orig
missing icons.

Also opera crashes my system when I use it in xfce4. It permanently hangs,
no messages in logs and no response from system. If I launch opera in clean
Xorg (twm?) it works very good.

Sorry for my english and bad fotos. I just want to help. I use FreeBSD 8.2
RELEASE, fresh ports, last opera-11.01, last xfce4.8 from ports,
xf86-video-ati-6.14.0_1.
Do you need any additional info from 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: xfce 4.8 upgrade errors

2011-03-09 Thread Pavel Timofeev


Mark Felder-4 wrote:
> 
>> How do I create a app menu, I'm getting an error when trying to load the  
>> menu "menus/applications.menu"
>> not found.
> 
> Recompile sysutils/garcon to resolve this error.
> 
> I hope this helps someone else...
> 
> 
> Regards,
> 
> 
> Mark
> ___
> 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"
> 
> 

Does not help in my case =(
fresh ports, fresh xfce4 install.
-- 
View this message in context: 
http://old.nabble.com/xfce-4.8-upgrade-errors-tp31083045p31106533.html
Sent from the freebsd-ports mailing list archive at Nabble.com.

___
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: tumbler-0.1.6.tar.bz2 not found

2011-03-04 Thread Pavel Timofeev

thank you very much!
Last question:
# grep PORTVERSION /usr/ports/x11-wm/xfce4/Makefile
PORTVERSION=4.6.2
Is it right?
-- 
View this message in context: 
http://old.nabble.com/tumbler-0.1.6.tar.bz2-not-found-tp31058248p31073483.html
Sent from the freebsd-ports mailing list archive at Nabble.com.

___
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: tumbler-0.1.6.tar.bz2 not found

2011-03-04 Thread Pavel Timofeev
Thank you for fast reply!

> Be careful, xfce4-notification-daemon is any more developed by the
> Xfce's team. Use rather  deskutils/xfce4-notifyd
>
> Neverless, you should replace MASTER_SITE by:
>
> MASTER_SITES=   ${MASTER_SITE_XFCE}
> MASTER_SITE_SUBDIR= src/archive/${PORTNAME}/${
> PORTVERSION:R}
>
> In CONFIGURE_ARGS add explicitly --disable-mcs-plugin
>
> Perhaps, you should also look at pkg-plist.

Ok, I think use deskutils/xfce4-notifyd could be better.


> For thunar-media-tags-plugin, check if thunar-vfs is installed.
Hmm, I have thunar-vfs
# pkg_info | grep vfs
thunar-vfs-1.2.0The virtual filesystem for Thunar
# portmaster thunar-media-tags-plugin-0.1.2_15

===>>> Currently installed version: thunar-media-tags-plugin-0.1.2_15
===>>> Port directory: /usr/ports/audio/thunar-media-tags-plugin

===>>> Gathering distinfo list for installed ports

===>>> Launching 'make checksum' for audio/thunar-media-tags-plugin in
background
===>>> Gathering dependency list for audio/thunar-media-tags-plugin from
ports
===>>> Initial dependency check complete for audio/thunar-media-tags-plugin

===>>> Starting build for audio/thunar-media-tags-plugin <<<===

===>>> All dependencies are up to date

===>  Cleaning for thunar-media-tags-plugin-0.1.2_16

===>  License check disabled, port has not defined LICENSE
===>  Extracting for thunar-media-tags-plugin-0.1.2_16
=> SHA256 Checksum OK for xfce4/thunar-media-tags-plugin-0.1.2.tar.bz2.
===>  Patching for thunar-media-tags-plugin-0.1.2_16
===>   thunar-media-tags-plugin-0.1.2_16 depends on executable: gmake -
found
===>   thunar-media-tags-plugin-0.1.2_16 depends on package: libtool>=2.4 -
found
===>   thunar-media-tags-plugin-0.1.2_16 depends on file:
/usr/local/bin/intltool-extract - found
===>   thunar-media-tags-plugin-0.1.2_16 depends on executable: pkg-config -
found
===>   thunar-media-tags-plugin-0.1.2_16 depends on package: libexo>=0.5.6 -
found
===>   thunar-media-tags-plugin-0.1.2_16 depends on package: Thunar>=1.1.6 -
found
===>   thunar-media-tags-plugin-0.1.2_16 depends on package:
thunar-vfs>=1.2.0 - found
===>   thunar-media-tags-plugin-0.1.2_16 depends on shared library: tag -
found
===>   thunar-media-tags-plugin-0.1.2_16 depends on shared library: intl -
found
===>   thunar-media-tags-plugin-0.1.2_16 depends on shared library:
atk-1.0.0 - found
===>   thunar-media-tags-plugin-0.1.2_16 depends on shared library:
glib-2.0.0 - found
===>   thunar-media-tags-plugin-0.1.2_16 depends on shared library:
gtk-x11-2.0.0 - found
===>   thunar-media-tags-plugin-0.1.2_16 depends on shared library:
pango-1.0.0 - found
===>  Configuring for thunar-media-tags-plugin-0.1.2_16
checking build system type... amd64-portbld-freebsd8.2
checking host system type... amd64-portbld-freebsd8.2
checking target system type... amd64-portbld-freebsd8.2
checking for a BSD-compatible install... /usr/bin/install -c -o root -g
wheel
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/local/bin/gmkdir -p
checking for gawk... gawk
checking whether gmake sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for style of include used by gmake... GNU
checking for gcc... cc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking dependency style of cc... gcc3
checking how to run the C preprocessor... cpp
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for AIX... no
checking for library containing strerror... none required
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking for gcc... (cached) cc
checking whether we are using the GNU C compiler... (cached) yes
checking whether cc accepts -g... (cached) yes
checking for cc option to accept ISO C89... (cached) none needed
checking dependency style of cc... (cached) gcc3
checking for a sed that does not truncate output... /usr/local/bin/gsed
checking for ld used by cc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for a BSD-compatible install... /usr/bin/install -c -o root -g
wheel
checking for perl... /usr/bin/perl
checking for XML::Parser... ok
checking for iconv... /usr/local/bin/iconv
checking for msgfmt... /usr/local/bin/msgfmt
checking for msgmerge.

Re: tumbler-0.1.6.tar.bz2 not found

2011-03-04 Thread Pavel Timofeev
r-vfs-1 was not found on your system.
*** Please install thunar-vfs-1 (atleast version 0.2.3svn-r20526) or adjust
*** the PKG_CONFIG_PATH environment variable if you
*** installed the package in a nonstandard prefix so that
*** pkg-config is able to find it.
===>  Script "configure" failed unexpectedly.
Please report the problem to m...@freebsd.org [maintainer] and attach the
"/usr/ports/audio/thunar-media-tags-plugin/work/thunar-media-tags-plugin-0.1.2/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


2. ===>>> Port directory: /usr/ports/deskutils/xfce4-notification-daemon

===>>> Gathering distinfo list for installed ports

===>>> Launching 'make checksum' for deskutils/xfce4-notification-daemon in
background
===>>> Gathering dependency list for deskutils/xfce4-notification-daemon
from ports
===>>> Initial dependency check complete for
deskutils/xfce4-notification-daemon

===>>> Starting build for deskutils/xfce4-notification-daemon <<<===

===>>> All dependencies are up to date

===>  Cleaning for xfce4-notification-daemon-0.3.7_14

===>  License GPLv2 accepted by the user
===>  Found saved configuration for xfce4-notification-daemon-0.3.7_14
===>  Extracting for xfce4-notification-daemon-0.3.7_14
=> SHA256 Checksum mismatch for
xfce4/notification-daemon-xfce-0.3.7.tar.bz2.
===>  Refetch for 1 more times files:
xfce4/notification-daemon-xfce-0.3.7.tar.bz2
===>  License GPLv2 accepted by the user
===>  Found saved configuration for xfce4-notification-daemon-0.3.7_14
=> notification-daemon-xfce-0.3.7.tar.bz2 doesn't seem to exist in
/usr/ports/distfiles//xfce4.
=> Attempting to fetch
http://goodies.xfce.org/releases/notification-daemon-xfce/notification-daemon-xfce-0.3.7.tar.bz2
fetch:
http://goodies.xfce.org/releases/notification-daemon-xfce/notification-daemon-xfce-0.3.7.tar.bz2:
size unknown
fetch:
http://goodies.xfce.org/releases/notification-daemon-xfce/notification-daemon-xfce-0.3.7.tar.bz2:
size of remote file is not known
notification-daemon-xfce-0.3.7.tar.bz26444  B  126 kBps
===>  License GPLv2 accepted by the user
===>  Found saved configuration for xfce4-notification-daemon-0.3.7_14
=> SHA256 Checksum mismatch for
xfce4/notification-daemon-xfce-0.3.7.tar.bz2.
===>  Giving up on fetching files:
xfce4/notification-daemon-xfce-0.3.7.tar.bz2
Make sure the Makefile and distinfo file
(/usr/ports/deskutils/xfce4-notification-daemon/distinfo)
are up to date.  If you are absolutely sure you want to override this
check, type "make NO_CHECKSUM=yes [other args]".
*** Error code 1

Stop in /usr/ports/deskutils/xfce4-notification-daemon.
*** Error code 1

Stop in /usr/ports/deskutils/xfce4-notification-daemon.
*** Error code 1



Martin Wilke-8 wrote:
> 
> Please update ur ports tree and try again,
> 
> On Thu, Mar 3, 2011 at 10:51 PM, Pavel Timofeev  wrote:
> 
>>
>> and /usr/ports/sysutils/garcon too
>> ===>  License check disabled, port has not defined LICENSE
>> => garcon-0.1.5.tar.bz2 doesn't seem to exist in
>> /usr/ports/distfiles//xfce4.
>> => Attempting to fetch
>>
>> http://slackware.dreamhost.com/xfce//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2
>> fetch:
>>
>> http://slackware.dreamhost.com/xfce//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2
>> :
>> Not Found
>> => Attempting to fetch
>>
>> http://mirror.perldude.de/archive.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2
>> fetch:
>>
>> http://mirror.perldude.de/archive.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2
>> :
>> Not Found
>> => Attempting to fetch
>> http://archive.be.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2
>> fetch:
>> http://archive.be.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2:
>> Not Found
>> => Attempting to fetch
>> http://archive.be2.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2
>> fetch:
>> http://archive.be2.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2:
>> Not
>> Found
>> => Attempting to fetch
>> http://xfce.ozgurkuru.net//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2
>> fetch:
>> http://xfce.ozgurkuru.net//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2
>> :
>> Not Found
>> => Attempting to fetch
>> http://archive.se.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2
>> fetch:
>> http://archive.se.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2:
>> Not Found
>> => Attempting to fetch
>> http://archive.in-us.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2
>> fet

Re: tumbler-0.1.6.tar.bz2 not found

2011-03-03 Thread Pavel Timofeev

Confirm. I have same problem.

===>  License check disabled, port has not defined LICENSE
===>  Found saved configuration for xfce4-tumbler-0.1.6
=> tumbler-0.1.6.tar.bz2 doesn't seem to exist in
/usr/ports/distfiles//xfce4.
=> Attempting to fetch
http://slackware.dreamhost.com/xfce/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2
fetch:
http://slackware.dreamhost.com/xfce/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2:
Not Found
=> Attempting to fetch
http://mirror.perldude.de/archive.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2
fetch:
http://mirror.perldude.de/archive.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2:
Not Found
=> Attempting to fetch
http://archive.be.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2
fetch:
http://archive.be.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2: Not
Found
=> Attempting to fetch
http://archive.be2.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2
fetch:
http://archive.be2.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2: Not
Found
=> Attempting to fetch
http://xfce.ozgurkuru.net/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2
fetch: http://xfce.ozgurkuru.net/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2:
Not Found
=> Attempting to fetch
http://archive.se.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2
fetch:
http://archive.se.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2: Not
Found
=> Attempting to fetch
http://archive.in-us.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2
fetch:
http://archive.in-us.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2:
Not Found
=> Attempting to fetch
http://mirrors.tummy.com/pub/archive.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2
fetch:
http://mirrors.tummy.com/pub/archive.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2:
Not Found
=> Attempting to fetch
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/xfce4/tumbler-0.1.6.tar.bz2
fetch:
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/xfce4/tumbler-0.1.6.tar.bz2:
File unavailable (e.g., file not found, no access)
=> Couldn't fetch it - please try to retrieve this
=> port manually into /usr/ports/distfiles//xfce4 and try again.
*** Error code 1


and /usr/ports/deskutils/xfce4-notification-daemon/ does not install too

===>  License GPLv2 accepted by the user
===>  Found saved configuration for xfce4-notification-daemon-0.3.7_14
===>  Extracting for xfce4-notification-daemon-0.3.7_14
=> SHA256 Checksum mismatch for
xfce4/notification-daemon-xfce-0.3.7.tar.bz2.
===>  Refetch for 1 more times files:
xfce4/notification-daemon-xfce-0.3.7.tar.bz2
===>  License GPLv2 accepted by the user
===>  Found saved configuration for xfce4-notification-daemon-0.3.7_14
=> notification-daemon-xfce-0.3.7.tar.bz2 doesn't seem to exist in
/usr/ports/distfiles//xfce4.
=> Attempting to fetch
http://goodies.xfce.org/releases/notification-daemon-xfce/notification-daemon-xfce-0.3.7.tar.bz2
fetch:
http://goodies.xfce.org/releases/notification-daemon-xfce/notification-daemon-xfce-0.3.7.tar.bz2:
size unknown
fetch:
http://goodies.xfce.org/releases/notification-daemon-xfce/notification-daemon-xfce-0.3.7.tar.bz2:
size of remote file is not known
notification-daemon-xfce-0.3.7.tar.bz26444  B  128 kBps
===>  License GPLv2 accepted by the user
===>  Found saved configuration for xfce4-notification-daemon-0.3.7_14
=> SHA256 Checksum mismatch for
xfce4/notification-daemon-xfce-0.3.7.tar.bz2.
===>  Giving up on fetching files:
xfce4/notification-daemon-xfce-0.3.7.tar.bz2
Make sure the Makefile and distinfo file
(/usr/ports/deskutils/xfce4-notification-daemon/distinfo)
are up to date.  If you are absolutely sure you want to override this
check, type "make NO_CHECKSUM=yes [other args]".
*** Error code 1



Leslie Jensen wrote:
> 
> Hello List.
> 
> I can't get the file below.
> 
> 
> Attempting to fetch 
> ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/xfce4/tumbler-0.1.6.tar.bz2
> fetch: 
> ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/xfce4/tumbler-0.1.6.tar.bz2:
>  
> File unavailable (e.g., file not found, no access)
> 
> 
> Where do I go for help?
> 
> Thanks
> 
> /Leslie
> ___
> 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"
> 
> 

-- 
View this message in context: 
http://old.nabble.com/tumbler-0.1.6.tar.bz2-not-found-tp31058248p31059300.html
Sent from the freebsd-ports mailing list archive at Nabble.com.

___
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: tumbler-0.1.6.tar.bz2 not found

2011-03-03 Thread Pavel Timofeev

and /usr/ports/sysutils/garcon too
===>  License check disabled, port has not defined LICENSE
=> garcon-0.1.5.tar.bz2 doesn't seem to exist in
/usr/ports/distfiles//xfce4.
=> Attempting to fetch
http://slackware.dreamhost.com/xfce//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2
fetch:
http://slackware.dreamhost.com/xfce//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2:
Not Found
=> Attempting to fetch
http://mirror.perldude.de/archive.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2
fetch:
http://mirror.perldude.de/archive.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2:
Not Found
=> Attempting to fetch
http://archive.be.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2
fetch: http://archive.be.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2:
Not Found
=> Attempting to fetch
http://archive.be2.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2
fetch:
http://archive.be2.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2: Not
Found
=> Attempting to fetch
http://xfce.ozgurkuru.net//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2
fetch: http://xfce.ozgurkuru.net//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2:
Not Found
=> Attempting to fetch
http://archive.se.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2
fetch: http://archive.se.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2:
Not Found
=> Attempting to fetch
http://archive.in-us.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2
fetch:
http://archive.in-us.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2: Not
Found
=> Attempting to fetch
http://mirrors.tummy.com/pub/archive.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2
fetch:
http://mirrors.tummy.com/pub/archive.xfce.org//src/libs/garcon/0.1/garcon-0.1.5.tar.bz2:
Not Found
=> Attempting to fetch
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/xfce4/garcon-0.1.5.tar.bz2
fetch:
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/xfce4/garcon-0.1.5.tar.bz2:
File unavailable (e.g., file not found, no access)
=> Couldn't fetch it - please try to retrieve this
=> port manually into /usr/ports/distfiles//xfce4 and try again.
*** Error code 1



Pavel Timofeev wrote:
> 
> Confirm. I have same problem.
> 
> ===>  License check disabled, port has not defined LICENSE
> ===>  Found saved configuration for xfce4-tumbler-0.1.6
> => tumbler-0.1.6.tar.bz2 doesn't seem to exist in
> /usr/ports/distfiles//xfce4.
> => Attempting to fetch
> http://slackware.dreamhost.com/xfce/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2
> fetch:
> http://slackware.dreamhost.com/xfce/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2:
> Not Found
> => Attempting to fetch
> http://mirror.perldude.de/archive.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2
> fetch:
> http://mirror.perldude.de/archive.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2:
> Not Found
> => Attempting to fetch
> http://archive.be.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2
> fetch:
> http://archive.be.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2: Not
> Found
> => Attempting to fetch
> http://archive.be2.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2
> fetch:
> http://archive.be2.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2:
> Not Found
> => Attempting to fetch
> http://xfce.ozgurkuru.net/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2
> fetch:
> http://xfce.ozgurkuru.net/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2: Not
> Found
> => Attempting to fetch
> http://archive.se.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2
> fetch:
> http://archive.se.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2: Not
> Found
> => Attempting to fetch
> http://archive.in-us.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2
> fetch:
> http://archive.in-us.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2:
> Not Found
> => Attempting to fetch
> http://mirrors.tummy.com/pub/archive.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2
> fetch:
> http://mirrors.tummy.com/pub/archive.xfce.org/src/apps/tumbler/0.1/tumbler-0.1.6.tar.bz2:
> Not Found
> => Attempting to fetch
> ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/xfce4/tumbler-0.1.6.tar.bz2
> fetch:
> ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/xfce4/tumbler-0.1.6.tar.bz2:
> File unavailable (e.g., file not found, no access)
> => Couldn't fetch it - please try to retrieve this
> => port manually into /usr/ports/distfiles//xfce4 and try again.
> *** Error code 1
> 
> 
> and /usr/ports/deskutils/xfce4-notification-daemon/ does not install too
> 
> ===>  License GPLv2 accepted by the user
> ===>  Found saved configuration for xfce4-notification-daemon-0.3.7_14
> ===>  Extracting for xfce4-notification-daemon-0.3.7_14
> => SHA256 Checksum mismatch for
> xfce4/notification-daemon-xfce-0.3.7.tar.b

Re: dependencies of net-mgmt/net-snmp

2010-06-07 Thread Pavel Timofeev

Thank you very much!


Thomas Rasmussen-5 wrote:
> 
> On 06-06-2010 10:54, Olivier Cochard-Labbé wrote:
>>
>> The net-snmp 5.5 (updated 2 jun 2010) have now x11-toolkits/p5-Tk in
>> RUN_DEPENDS.
>>
>> This means that I need to install x11 libs on my FreeBSD routers or
>> using net-snmp now ???
>>
>>
> Hello,
> 
> See this PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=147566
> 
> Best regards,
> 
> Thomas Steen Rasmussen
> ___
> 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"
> 
> 

-- 
View this message in context: 
http://old.nabble.com/dependencies-of-net-mgmt-net-snmp-tp28776566p28802304.html
Sent from the freebsd-ports mailing list archive at Nabble.com.

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


dependencies of net-mgmt/net-snmp

2010-06-04 Thread Pavel Timofeev

I did that just now.

[r...@matrix ~]# uname -a
FreeBSD matrix.xx.ru 8.0-RELEASE-p3 FreeBSD 8.0-RELEASE-p3 #0: Thu May 27
12:41:48 MSD 2010 i...@matrix.xxx.ru:/usr/obj/usr/src/sys/MATRIX  i386
[r...@matrix ~]# portsnap fetch update
Looking up portsnap.FreeBSD.org mirrors... 5 mirrors found.
Fetching snapshot tag from portsnap6.freebsd.org... done.
Latest snapshot on server matches what we already have.
No updates needed.
Ports tree is already up to date.
[r...@matrix ~]# make -C /usr/ports/net-mgmt/net-snmp config
   Options for net-snmp 5.5
   [  ] IPV6   Build with IPv6 support 
   [  ] MFD_REWRITES   Build with 64-bit Interface Counters
   [X] PERL   Install additional perl modules   
   [X] PERL_EMBEDDED  Build embedded perl   
   [X] DUMMY  Enable dummy values as placeholders
   [  ] DMALLOCEnable dmalloc debug memory allocator
[r...@matrix ~]# make -C /usr/ports/net-mgmt/net-snmp missing
x11-toolkits/p5-Tk
x11/libX11
x11/libxcb
devel/xorg-macros
x11/bigreqsproto
x11/xcmiscproto
x11/xextproto
x11/xtrans
x11/kbproto
x11/inputproto
x11-fonts/xf86bigfontproto
x11/libXau
x11/libXdmcp
x11/xproto
devel/automake110
devel/libcheck
textproc/libxslt
x11/xcb-proto
devel/libpthread-stubs
lang/python26
security/libgcrypt
security/libgpg-error

Any comments?
-- 
View this message in context: 
http://old.nabble.com/dependencies-of-net-mgmt-net-snmp-tp28776566p28776566.html
Sent from the freebsd-ports mailing list archive at Nabble.com.

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


  1   2   >