Is it possibly to detect which OpenSSL is used for a port?

2015-03-20 Thread Naram Qashat
So, I know that WITH_OPENSSL_BASE=yes or WITH_OPENSSL_PORT=yes can be set by a user to say they specifically want either the base or the ports version of OpenSSL. But is there a way to determine within a port which OpenSSL is being used, either base or ports? Should I check if OPENSSLBASE is set to

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) n

Re: FreeBSD Port: rsync-3.1.1_3

2015-03-20 Thread Emanuel Haupt
Kai wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Hello Ehaupt, > > I'm running into an issue when rsyncing to a freebsd host (10.1, > running rsync-3.1.1, "pkg install rsync" version). > > When rsyncing a deep directorystructure that contains a socket I get > the following err

FreeBSD ports you maintain which are out of date

2015-03-20 Thread portscout
Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you

Re: Anyone able to use citrix_ica?

2015-03-20 Thread Emanuel Haupt
Aric Gregson wrote: > Hello, > > I am wondering if anyone has been able to get the citrix_ica to > function? I am able to install it seemingly without problems, but it > will never run. I get a 'permission denied' error when trying to run > it from the CLI and nothing happens when using the web s

Wishing you a Happy Eastern from Prima Rent a Car

2015-03-20 Thread Prima Rent a Car
ITB 2015 : Prima Rent will be there http://us2.campaign-archive2.com/?u=b9847da4b7e67330bdeb1e761&id=b9f4cb0b1c&e=c05265e036 Remember we have all sorts of vehicles for rent available this Easters, from Economy to luxury, mobility, bikes

[HEADSUP] WIP on fonts

2015-03-20 Thread Baptiste Daroussin
Hi all, Some of you may have notice some work on the font area. The goal of this work is to prevent every single font package to act differently and most of the time not correctly. The change will be done in multiple steps: 1/ Convert every ports to USES=fonts 2/ Remove @fc and @fontsdir keyword

Re: [HEADSUP] WIP on fonts

2015-03-20 Thread Chris H
On Fri, 20 Mar 2015 16:37:13 +0100 Baptiste Daroussin wrote > Hi all, > > Some of you may have notice some work on the font area. > > The goal of this work is to prevent every single font package to act > differently and most of the time not correctly. .. > 3/ Move all fonts from ${LOCALBASE}/l

Re: [HEADSUP] WIP on fonts

2015-03-20 Thread Baptiste Daroussin
On Fri, Mar 20, 2015 at 09:28:15AM -0700, Chris H wrote: > On Fri, 20 Mar 2015 16:37:13 +0100 Baptiste Daroussin wrote > > > Hi all, > > > > Some of you may have notice some work on the font area. > > > > The goal of this work is to prevent every single font package to act > > differently and m

Re: [HEADSUP] WIP on fonts

2015-03-20 Thread Chris H
On Fri, 20 Mar 2015 17:50:56 +0100 Baptiste Daroussin wrote > On Fri, Mar 20, 2015 at 09:28:15AM -0700, Chris H wrote: > > On Fri, 20 Mar 2015 16:37:13 +0100 Baptiste Daroussin > > wrote > > > Hi all, > > > > > > Some of you may have notice some work on the font area. > > > > > > The goal of

Re: Is it possibly to detect which OpenSSL is used for a port?

2015-03-20 Thread Naram Qashat
This isn't quite what I'm looking for. I want to be able to tell within a port's Makefile if the user wanted the base or ports OpenSSL to be used. I've been trying to port TDE to FreeBSD, and tdelibs uses pkg-config to check for OpenSSL. This would work if the only form of OpenSSL was in ports, but

Re: [HEADSUP] WIP on fonts

2015-03-20 Thread A.J. "Fonz" van Werven
Chris H wrote: > P.S. Thanks for doing this. Consistency is nice! :) Seconded. It has already been bugging me somewhat (not enough to complain, but still) that different font ports are/were doing the exact same things differently. Also, kudos for making the announcement so maintainers of font por

Re: Is it possibly to detect which OpenSSL is used for a port?

2015-03-20 Thread list_freebsd
On 2015-03-20 09:51, Dirk Meyer wrote: We look for libssl $ ldd /usr/local/libexec/dovecot/imap-login | grep libssl.so libssl.so.6 => /usr/lib/libssl.so.6 (0x33cb7000) This dovecot was build with the openssl-port. That output shows it's linked to the in-base OpenSSL. _

Re: Is it possibly to detect which OpenSSL is used for a port?

2015-03-20 Thread list_freebsd
On 2015-03-20 11:02, Naram Qashat wrote: This isn't quite what I'm looking for. I want to be able to tell within a port's Makefile if the user wanted the base or ports OpenSSL to be used. I've been trying to port TDE to FreeBSD, and tdelibs uses pkg-config to check for OpenSSL. This would work if

Depending on port flag?

2015-03-20 Thread Henry Hu
Recently, I tried to use mpv with VAAPI. The default mpv port does not enable VAAPI, so I enabled and installed it from ports. However, mpv still can't use VAAPI. After some investigation, it turns out that it depends on ffmpeg with VAAPI enabled, and the default ffmpeg also has it disabled. After

powerpc64 11.0-CURRENT CROSS_TOOLSCHAIN=powerpc64-gcc: -pg compile gets ../libcxxrt/terminate.cc:36:7: internal compiler error: Segmentation fault

2015-03-20 Thread Mark Millard
It turns out that I had to rebuild powerpc64-gcc after booting into the powerpc64-gcc based installed world (and kernel). The below notes start from before that rebuild of powerpc64-gcc. Basic context (more detail later): > # dmesg | head > ... > FreeBSD 11.0-CURRENT #0 r279514M: Wed Mar 18 20

Re: Is it possibly to detect which OpenSSL is used for a port?

2015-03-20 Thread Naram Qashat
I've looked at bsd.openssl.mk and from what it says, those WITH_OPENSSL_* knobs are use-set, not port-set. So that doesn't help me. > On 2015-03-20 11:02, Naram Qashat wrote: >> This isn't quite what I'm looking for. I want to be able to tell within >> a >> port's Makefile if the user wanted the b

Re: Is it possibly to detect which OpenSSL is used for a port?

2015-03-20 Thread list_freebsd
On 2015-03-20 14:49, Naram Qashat wrote: I've looked at bsd.openssl.mk and from what it says, those WITH_OPENSSL_* knobs are use-set, not port-set. So that doesn't help me. I'm not sure what you read, but lines 5 through 10 of ports/Mk/bsd.openssl.mk are: # Use of 'USE_OPENSSL=yes' includes

Re: Is it possibly to detect which OpenSSL is used for a port?

2015-03-20 Thread Shane Ambler
On 21/03/2015 04:32, Naram Qashat wrote: This isn't quite what I'm looking for. I want to be able to tell within a port's Makefile if the user wanted the base or ports OpenSSL to be used. I've been trying to port TDE to FreeBSD, and tdelibs uses pkg-config to check for OpenSSL. This would work if

powerpc64 11.0-CURRENT CROSS_TOOLSCHAIN=powerpc64-gcc when building with WITH_CLANG= defined: include/c++/v1/ problems...

2015-03-20 Thread Mark Millard
CROSS_TOOLCHAIN=powerpc64-gcc will not automatically use /usr/include/c++/v1/ paths or /usr/lib/ paths. And those paths are only appropriate sometimes. Other times paths such as /usr/obj/usr/srcC/tmp/usr/include/c++/v1 and /usr/obj/usr/srcC/lib/libc++ are appropriate. The later material conclu

INDEX build failed for 8.x

2015-03-20 Thread Ports Index build
INDEX build failed with errors: make: stopped in /home/indexbuild/tindex/ports make: no system rules (sys.mk). Committers on the hook: Most recent SVN update was: Updating '.': At revision 381786. ___ freebsd-ports@freebsd.org mailing list http://lis

CROSS_TOOLCHAIN=powerpc64-gcc mishandles "Substitution Failure Is Not An Error" when compiling clang and stops the build

2015-03-20 Thread Mark Millard
Basic context: > # dmesg | head > ... > FreeBSD 11.0-CURRENT #0 r279514M: Wed Mar 18 20:11:15 PDT 2015 > root@FBSDG5C0:/usr/obj/usr/srcC/sys/GENERIC64vtsc-NODEBUG powerpc > gcc version 4.9.1 (FreeBSD Ports Collection for powerpc64) > ... > # freebsd-version -ku; uname -apKU > 11.0-CURRENT >