Re: Gimp 2.8.18,2 plugins not working under 10.3

2016-08-27 Thread Kubilay Kocak
On 27/08/2016 4:42 AM, scratch65...@att.net wrote:
> [Default] On Mon, 22 Aug 2016 04:07:25 -0700 (PDT), Don Lewis
>  wrote:
> 
>>
>> sysctl kern.ipc.shm_allow_removed=1
> 
> That seems to have done the trick.  Thanks!
> 
> I hope the maintainer fixes the problem more generally, though.  

This is the tracking issue for it:

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

In the absence of another way to permanent fix/workaround the issue, we
may need to wrap the gimp binary in a script to set --no-shm

I'll have a look around for other alternatives, but if anyone else finds
or knows of one, reply on this thread

./koobs

___
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: Forcing poudriere to rebuild a package and all dependencies

2016-08-27 Thread Mathieu Arnold
+--On 26 août 2016 15:21:16 -0700 "Russell L. Carter" 
wrote:
| WITH_OPENSSL_PORT=  yes
| OPENSSL_PORT=   security/openssl
| DEFAULT_VERSIONS=pgsql=9.5 php=7.0

This should be:
DEFAULT_VERSIONS=pgsql=9.5 php=7.0 ssl=openssl

I'm sure all the ports using openssl are telling you this when you're
building them :-)

-- 
Mathieu Arnold

pgpUOW3ZB1tyG.pgp
Description: PGP signature


Re: fontconfig update uglifies fonts

2016-08-27 Thread Raphael Kubo da Costa
"Russell L. Carter"  writes:

> Hi,
>
> On 10/stable amd64, the recent fontconfig update makes the fonts used
> in thunderbird, firefox, (u)xterm, and emacs quite a bit uglier.  The
> font strokes seem to be thicker and fuzzier.  Emacs I fixed by
> reinstalling bitstream-vera, but (u)xterm use that and they're still
> broken.  I ran fc-cache -f, but no change.  I turned off antialiasing
> via /usr/local/etc/fonts/local.conf and that made the strokes nice and
> thin but overall even uglier.
>
> Any ideas/pointers on how to fix this?

This is likely caused by the fact that the new fontconfig version allows
one to choose the default hinting style and defaults to "slight"; from
your description it looks like were used to a different value.

You can either change the HINTING option when building the port or
create a ~/.config/fontconfig/fonts.conf with something like this:




 
  
   hintnone
  
 

___
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: fontconfig update uglifies fonts

2016-08-27 Thread Raphael Kubo da Costa
Raphael Kubo da Costa  writes:
> You can either change the HINTING option when building the port or
> create a ~/.config/fontconfig/fonts.conf with something like this:
>
> 
> 
> 
>  
>   
>hintnone
>   
>  
> 

"hintnone" was just an example and is likely the opposite of what you
want. In your specific case you probably need "hintmedium" or
"hintfull".
___
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"


graphics/zathura links against sysutils/file

2016-08-27 Thread abi

Hello again!

graphics/zathura has sysutils/file in LIB_DEPENDS for libmagic.so 
However we already have this lib in base since FreeBSD 7.0


zathura links to external one and somehow confuses pkg. pkg autoremove 
suggests to remove sysutils/file, breaking zathura.


After I removed sysutils/file from port Makefile, it linked to the base lib.

The thing that confuses me is that in poudriere zathura links correctly, 
but 11 jail there is rather outdated.



___
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: Forcing poudriere to rebuild a package and all dependencies

2016-08-27 Thread Matthew D. Fuller
On Fri, Aug 26, 2016 at 03:21:16PM -0700 I heard the voice of
Russell L. Carter, and lo! it spake thus:
> 
> Here's my /usr/local/etc/poudriere.d/make.conf, [...]
> [...]
> #  Set this to the list of ports you wish to rebuild every time the
> #  kernel is built.
> PORTS_MODULES=nvidia-driver-340  nvidia-driver virtualbox-ose-kmod 
> sysutils/vm-bhyve sysutils/pefs-kmod

Incidentally, PORTS_MODULES is a var used by the _kernel_ build, not
anything in the _ports_, so setting it in the poudriere environment
doesn't do anything.


-- 
Matthew Fuller (MF4839)   |  fulle...@over-yonder.net
Systems/Network Administrator |  http://www.over-yonder.net/~fullermd/
   On the Internet, nobody can hear you scream.
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Committers needed

2016-08-27 Thread Tobias Kortkamp
On Fri, Aug 26, 2016, at 16:10, Kurt Jaeger wrote:
> Hi!
> 
> > > https://bugs.freebsd.org/211663
> > > https://bugs.freebsd.org/211664
> > > https://bugs.freebsd.org/211573
> > > https://bugs.freebsd.org/211624
> 
> Done, with 211624 pending MFH.

Thanks for taking care of all of them!

> Tobias, does the change from 211624 mean that we can close the
> two PRs 154502 191296 as fixed with a reference to 211624 ?
>
> That's my take, but I'd like to have some confirmation before I closed
> them as fixed.

Seeing as the proposed solutions in those PRs is the same as PR211624 I
would say yes to closing them too.
___
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: Forcing poudriere to rebuild a package and all dependencies

2016-08-27 Thread Russell L. Carter

On 08/27/16 06:46, Matthew D. Fuller wrote:

On Fri, Aug 26, 2016 at 03:21:16PM -0700 I heard the voice of
Russell L. Carter, and lo! it spake thus:


Here's my /usr/local/etc/poudriere.d/make.conf, [...]
[...]
#  Set this to the list of ports you wish to rebuild every time the
#  kernel is built.
PORTS_MODULES=nvidia-driver-340  nvidia-driver virtualbox-ose-kmod
sysutils/vm-bhyve sysutils/pefs-kmod


Incidentally, PORTS_MODULES is a var used by the _kernel_ build, not
anything in the _ports_, so setting it in the poudriere environment
doesn't do anything.




Hmm, ok.  How would a kernel build know anything at all about building
a specific port?  I'm apparently missing something...

Thanks,
Russell
___
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: fontconfig update uglifies fonts

2016-08-27 Thread Russell L. Carter

On 08/27/16 04:01, Raphael Kubo da Costa wrote:

Raphael Kubo da Costa  writes:

You can either change the HINTING option when building the port or
create a ~/.config/fontconfig/fonts.conf with something like this:




 
  
   hintnone
  
 



"hintnone" was just an example and is likely the opposite of what you
want. In your specific case you probably need "hintmedium" or
"hintfull".



Ah, that's a lot quicker technique than changing the fontconfig option
and then rebuilding all the dependent ports.

Thanks,
Russell
___
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: Forcing poudriere to rebuild a package and all dependencies

2016-08-27 Thread Russell L. Carter

On 08/27/16 03:25, Mathieu Arnold wrote:

+--On 26 août 2016 15:21:16 -0700 "Russell L. Carter" 
wrote:
| WITH_OPENSSL_PORT=  yes
| OPENSSL_PORT=   security/openssl
| DEFAULT_VERSIONS=pgsql=9.5 php=7.0

This should be:
DEFAULT_VERSIONS=pgsql=9.5 php=7.0 ssl=openssl

I'm sure all the ports using openssl are telling you this when you're
building them :-)



It seemed to work w/o problems, but I much prefer to stay on the one
true path. :-)  I've updated, thanks.

Best,
Russell

___
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: Forcing poudriere to rebuild a package and all dependencies

2016-08-27 Thread Kevin Oberman
On Sat, Aug 27, 2016 at 9:10 AM, Russell L. Carter 
wrote:

> On 08/27/16 06:46, Matthew D. Fuller wrote:
>
>> On Fri, Aug 26, 2016 at 03:21:16PM -0700 I heard the voice of
>> Russell L. Carter, and lo! it spake thus:
>>
>>>
>>> Here's my /usr/local/etc/poudriere.d/make.conf, [...]
>>> [...]
>>> #  Set this to the list of ports you wish to rebuild every time the
>>> #  kernel is built.
>>> PORTS_MODULES=nvidia-driver-340  nvidia-driver virtualbox-ose-kmod
>>> sysutils/vm-bhyve sysutils/pefs-kmod
>>>
>>
>> Incidentally, PORTS_MODULES is a var used by the _kernel_ build, not
>> anything in the _ports_, so setting it in the poudriere environment
>> doesn't do anything.
>>
>>
>>
> Hmm, ok.  How would a kernel build know anything at all about building
> a specific port?  I'm apparently missing something...
>
> Thanks,
> Russell
>

It doesn't, really. PORT_MODULES simply tells the kernel build to kick off
a make for the specified ports. This is intended for ports which build
kernel modules that should always be rebuilt for a new kernel.

While there is an attempt made to keep the KBI stable within a major
release, it isnot realy always possible and, since the KBI is only used by
the kernel itself, changes to the KBI were always "safe". But with kernel
modules from external sources (i.e. ports), this is no longer true.

The result was the PORT_MODULES make variable which causes the kernel
install to rebuild the modules listed whenever the kernel is rebuilt. This
guarantees that the modules are in sync with the kernel on those occasions
when the KBI is changed. It also is relevant to when ports go mucking
around in the kernel such as with lsof.

My src.conf contains "PORTS_MODULES=emulators/virtualbox-ose-kmod
multimedia/cuse4bsd-kmod sysutils/lsof". I might also mention that this
fuction is very tricky and gets broken too often. As of about three weeks
ago cuse4bsd-kmod fails to build and I also see the PORTS_MODULES are
getting built in the buildkernel which seems wrong to me. It used to only
take place in installkernel.
--
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"


Re: fontconfig update uglifies fonts

2016-08-27 Thread Russell L. Carter

On 08/27/16 04:01, Raphael Kubo da Costa wrote:

Raphael Kubo da Costa  writes:

You can either change the HINTING option when building the port or
create a ~/.config/fontconfig/fonts.conf with something like this:




 
  
   hintnone
  
 



"hintnone" was just an example and is likely the opposite of what you
want. In your specific case you probably need "hintmedium" or
"hintfull".



Indeed, I am wavering between hintmedium and hintfull.

THANKS VERY MUCH :-)  I am de-uglified.  It was like the bad old days
for a while.

Regards,
Russell
___
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"


Committer needed for new perl5 ports

2016-08-27 Thread Danny Warren

Hi all!  I have a few new perl5 ports that could use a committer.

Each of these has a successful poudriere log attached, no complaints 
from portlint and dependencies met.


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=212206
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209191
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=212209
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=212210
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209187
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209189

Here is a list of the proposed port names for the above:

devel/p5-Devel-InheritNamespace
www/p5-Catalyst-View-TT-Alloy
www/p5-CatalystX-AppBuilder
www/p5-CatalystX-VirtualComponents
www/p5-CGI-Application-Plugin-DBIx-Class
www/p5-CGI-Application-Plugin-ActionDispatch

Thanks!
Danny Warren
___
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"


databases/postgresql9x-server and ICU

2016-08-27 Thread Martin Waschbüsch
Hi everyone,

With FreeBSD 11 fast approaching, can anyone tell me if the ICU patch will 
indeed no longer be needed to get proper unicode collation support, etc.?

E.g. as stated at the end of this post:
https://lists.freebsd.org/pipermail/freebsd-current/2015-October/057781.html

Is this automatic? I mean, will configure / make stages pick up on unicode 
collation support being present?

Best,

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