graphics/blender: isnan(cineon-element[i].refLowData)) - error: controlling expression type 'unsigned int' not compatible with any generic association type

2013-08-04 Thread O. Hartmann
Compiling port graphics/blender ends up in the follwoig error due to an
compiler error on FreeBSD 10.0-CURRENT ( FreeBSD 10.0-CURRENT #0
r253917: Sat Aug  3 20:33:55 CEST 2013). 

Prior to build (or try to build/upgrade) I had to apply the patches
(last in row) suggested in PR ports/180650
(graphics/openshadinglaguage), since graphics/blender relies on
graphics/openshadinglanguage, openshadinglanguage doesn't compile with
port devel/llvm which is stuck at LLVM 3.2 (CLANG on CURRENT and
9.2-PRE is in the meanwhile CLANG 3.3!) and needs to use devel/llvm33.

I think the problem occuring during compilation is due to some strange
implementation issues in math.h / cmath discussed earlier in the list.

Port graphics/blender doesn't compile on both, CURRENT (as reposted
above) and most recent and up to date FreeBSD 9.2-BETA (FreeBSD
9.2-BETA2 #0 r253884: Fri Aug  2 14:52:14 CEST 2013), dropping the same
error.

[...]
Scanning dependencies of target bf_imbuf_cineon
[ 55%] Building C object
source/blender/imbuf/intern/cineon/CMakeFiles/bf_imbuf_cineon.dir/cineon_dpx.c.o
[ 55%] Building C object
source/blender/imbuf/intern/cineon/CMakeFiles/bf_imbuf_cineon.dir/cineonlib.c.o 
/usr/ports/graphics/blender/work/blender-2.68/source/blender/imbuf/intern/cineon/cineonlib.c:280:70:
error: controlling expression type 'unsigned int' not compatible with
any generic association type if (cineon-element[i].refLowData ==
CINEON_UNDEFINED_U32 || isnan(cineon-element[i].refLowData))
^ /usr/include/math.h:118:19: note:
expanded from macro 'isnan' __fp_type_select(x, __inline_isnanf,
__inline_isnan, __inline_isnanl) ^ /usr/include/math.h:86:49: note:
expanded from macro '__fp_type_select' #define __fp_type_select(x, f,
d, ld) _Generic((x), \ ^
/usr/ports/graphics/blender/work/blender-2.68/source/blender/imbuf/intern/cineon/cineonlib.c:283:71:
error: controlling expression type 'unsigned int' not compatible with
any generic association type if (cineon-element[i].refHighData ==
CINEON_UNDEFINED_U32 || isnan(cineon-element[i].refHighData))
^~ /usr/include/math.h:118:19: note:
expanded from macro 'isnan' __fp_type_select(x, __inline_isnanf,
__inline_isnan, __inline_isnanl) ^
/usr/include/math.h:86:49: note: expanded from macro '__fp_type_select'
#define __fp_type_select(x, f, d, ld) _Generic((x),
\ ^
2 errors generated.
*** Error code 1

Stop.

[...]



Regards,

Oliver


signature.asc
Description: PGP signature


FreeBSD ports you maintain which are out of date

2013-08-04 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 can
safely ignore the entry.

You will not be e-mailed again for any of the port/version combinations
below.

Full details can be found at the following URL:
http://portscout.freebsd.org/po...@freebsd.org.html


Port| Current version | New version
+-+
german/pecl-konto_check | 2.98| 5.0
+-+
japanese/wordpress  | 3.5.2   | 3.6
+-+
www/xpi-pentadactyl | 20130407| 20130804
+-+


If any of the above results are invalid, please check the following page
for details on how to improve portscout's detection and selection of
distfiles on a per-port basis:

http://portscout.freebsd.org/info/portscout-portconfig.txt

If wish to stop receiving portscout reminders, please contact
portsc...@freebsd.org

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


Re: chromium-28.0.1500.71 build failed on a system without base gcc

2013-08-04 Thread George Liaskos
Try this,

diff --git a/www/chromium/Makefile b/www/chromium/Makefile
index af1fd1b..dab973d 100644
--- a/www/chromium/Makefile
+++ b/www/chromium/Makefile
@@ -192,7 +192,7 @@ post-patch:
${WRKSRC}/ui/base/strings/app_locale_settings_th.xtb

 do-configure:
-   cd ${WRKSRC}  \
+   cd ${WRKSRC}  CC=${CC} CXX=${CXX} \
GYP_DEFINES=${GYP_DEFINES} ${PYTHON_CMD} \
./build/gyp_chromium chrome/chrome.gyp --depth .
___
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: chromium-28.0.1500.71 build failed on a system without base gcc

2013-08-04 Thread Andriy Gapon
on 04/08/2013 15:10 George Liaskos said the following:
 Try this,
 
 diff --git a/www/chromium/Makefile b/www/chromium/Makefile
 index af1fd1b..dab973d 100644
 --- a/www/chromium/Makefile
 +++ b/www/chromium/Makefile
 @@ -192,7 +192,7 @@ post-patch:
 ${WRKSRC}/ui/base/strings/app_locale_settings_th.xtb
 
  do-configure:
 -   cd ${WRKSRC}  \
 +   cd ${WRKSRC}  CC=${CC} CXX=${CXX} \
 GYP_DEFINES=${GYP_DEFINES} ${PYTHON_CMD} \
 ./build/gyp_chromium chrome/chrome.gyp --depth .

Thank you very much!  This has helped.

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


Re: KDE4 woes

2013-08-04 Thread Stan Gammons
On Thu, 2013-08-01 at 09:41 -0400, Andre Goree wrote:
 I'm running KDE4 w/pulseaudio built entirely from ports -- albeit on 
 8.4-STABLE.  I also use portupgrade rather than portmaster, though that 
 shouldn't matter.  Why not start with posting some of the errors that 
 you got along with the port that you received the error on?  Shouldn't 
 be _too_ painful to get it working :)
 

I still haven't given up, but I'm rapidly approaching that point.

After another, lost count on how many this makes, start from scratch of
installing 9.1 release, fetching and install the patches with
freebsd-update, then fetching the ports with portsnap fetch the portsnap
extract. Then I installed pkgng and converted the database, then I
installed portmaster and installed xorg with all of the default options
using portmaster x11/xorg. So far so good. Next I tried to install KDE4
with all of the default options using portmaster x11/kde4. The build
process starts and I ended up with something like this on the screen

Deprecated line in the makefile and try again

Update for net-im/libmsn failed
Aborting update

Update for net-im/kopete-kde4 failed
Aborting update

Update for net/kdenetwork4 failed
Aborting update

Killing background jobs

Terminated
Terminated
Terminated
Terminated
Terminated
Terminated
Terminated
Terminated
Terminated
Terminated
Terminated
Exiting

SO, anybody have any ideas why this is failing?

The machine has a Gigabyte GA-970A-DS3 motherboard with an AMD FX4100
3.6 Ghz processor, 8 GB of memory, Radeon HD-6570 video card.


Stan



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


Re: KDE4 woes

2013-08-04 Thread Mark Felder
Sorry this weekend was quite busy. I have the build running now.
___
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


Critical security update for Typo3

2013-08-04 Thread Helmut Schneider
Dear committers,

as it is holiday season I kindly ask here if someone could please commit

http://www.freebsd.org/cgi/query-pr.cgi?pr=180951
http://www.freebsd.org/cgi/query-pr.cgi?pr=180952
http://www.freebsd.org/cgi/query-pr.cgi?pr=180953

as they contain critical (remote code excecution) fixes.

Thanks in advance, Helmut

___
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


[QAT] r324240: 4x leftovers, 8x success

2013-08-04 Thread Ports-QAT
www/p5-Catalyst-Plugin-Unicode-Encoding now part of core of Catalyst modules.
Mark it as deprecated and set expiration date.

Remove it as dependency from:
www/p5-Catalyst-Plugin-AutoCRUD
www/p5-Task-Catalyst
and bump PORTREVISION of this ports to indicate packages change.

With hat:   perl@
-

  Build ID:  20130804151000-34030
  Job owner: a...@freebsd.org
  Buildtime: 3 hours
  Enddate:   Sun, 04 Aug 2013 17:47:11 GMT

  Revision:  r324240
  Repository:
https://svnweb.freebsd.org/ports?view=revisionrevision=324240

-

Port:www/p5-Catalyst-Plugin-AutoCRUD 

  Buildgroup: 9.1-QAT/amd64
  Buildstatus:   SUCCESS
  Log: 
https://qat.redports.org//~a...@freebsd.org/20130804151000-34030-168032/p5-Catalyst-Plugin-AutoCRUD-2.131.210_1.log

  Buildgroup: 9.1-QAT/i386
  Buildstatus:   SUCCESS
  Log: 
https://qat.redports.org//~a...@freebsd.org/20130804151000-34030-168033/p5-Catalyst-Plugin-AutoCRUD-2.131.210_1.log

  Buildgroup: 8.4-QAT/amd64
  Buildstatus:   SUCCESS
  Log: 
https://qat.redports.org//~a...@freebsd.org/20130804151000-34030-168034/p5-Catalyst-Plugin-AutoCRUD-2.131.210_1.log

  Buildgroup: 8.4-QAT/i386
  Buildstatus:   SUCCESS
  Log: 
https://qat.redports.org//~a...@freebsd.org/20130804151000-34030-168035/p5-Catalyst-Plugin-AutoCRUD-2.131.210_1.log

-

Port:www/p5-Catalyst-Plugin-Unicode-Encoding 1.9

  Buildgroup: 9.1-QAT/amd64
  Buildstatus:   LEFTOVERS
  Log: 
https://qat.redports.org//~a...@freebsd.org/20130804151000-34030-168036/p5-Catalyst-Plugin-Unicode-Encoding-1.9.log

  Buildgroup: 9.1-QAT/i386
  Buildstatus:   LEFTOVERS
  Log: 
https://qat.redports.org//~a...@freebsd.org/20130804151000-34030-168037/p5-Catalyst-Plugin-Unicode-Encoding-1.9.log

  Buildgroup: 8.4-QAT/amd64
  Buildstatus:   LEFTOVERS
  Log: 
https://qat.redports.org//~a...@freebsd.org/20130804151000-34030-168038/p5-Catalyst-Plugin-Unicode-Encoding-1.9.log

  Buildgroup: 8.4-QAT/i386
  Buildstatus:   LEFTOVERS
  Log: 
https://qat.redports.org//~a...@freebsd.org/20130804151000-34030-168039/p5-Catalyst-Plugin-Unicode-Encoding-1.9.log

-

Port:www/p5-Task-Catalyst 

  Buildgroup: 9.1-QAT/amd64
  Buildstatus:   SUCCESS
  Log: 
https://qat.redports.org//~a...@freebsd.org/20130804151000-34030-168040/p5-Task-Catalyst-4.02_1.log

  Buildgroup: 9.1-QAT/i386
  Buildstatus:   SUCCESS
  Log: 
https://qat.redports.org//~a...@freebsd.org/20130804151000-34030-168041/p5-Task-Catalyst-4.02_1.log

  Buildgroup: 8.4-QAT/amd64
  Buildstatus:   SUCCESS
  Log: 
https://qat.redports.org//~a...@freebsd.org/20130804151000-34030-168042/p5-Task-Catalyst-4.02_1.log

  Buildgroup: 8.4-QAT/i386
  Buildstatus:   SUCCESS
  Log: 
https://qat.redports.org//~a...@freebsd.org/20130804151000-34030-168043/p5-Task-Catalyst-4.02_1.log


--
Buildarchive URL: https://qat.redports.org/buildarchive/20130804151000-34030
redports https://qat.redports.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


Status of portsmon

2013-08-04 Thread Marcin Wiśnicki
A user notified me that one of my ports does not compile. I've
immediately checked portsmon[1] and noticed that build statuses are
empty. In the past there was a table with information about last
successful builds and in any case there should be a build error. Does
that mean that portsmon is no longer performing/monitoring package
builds ?


[1] 
http://portsmon.freebsd.org/portoverview.py?category=mailportname=mail-notification
___
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: Status of portsmon

2013-08-04 Thread Baptiste Daroussin
On Sun, Aug 04, 2013 at 08:48:41PM +0200, Marcin Wiśnicki wrote:
 A user notified me that one of my ports does not compile. I've
 immediately checked portsmon[1] and noticed that build statuses are
 empty. In the past there was a table with information about last
 successful builds and in any case there should be a build error. Does
 that mean that portsmon is no longer performing/monitoring package
 builds ?
 
 
 [1] 
 http://portsmon.freebsd.org/portoverview.py?category=mailportname=mail-notification

As far as I know it builds properly on the clusters, I have checked the logs and
see nothing saying it breaks.

regards,
Bapt


pgpQMvuWoNfDF.pgp
Description: PGP signature


Re: Status of portsmon

2013-08-04 Thread Marcin Wiśnicki
But didn't it use to show last successful builds too ? Now it just
says None which is not very helpful.

On Sun, Aug 4, 2013 at 9:04 PM, Baptiste Daroussin b...@freebsd.org wrote:
 On Sun, Aug 04, 2013 at 08:48:41PM +0200, Marcin Wiśnicki wrote:
 A user notified me that one of my ports does not compile. I've
 immediately checked portsmon[1] and noticed that build statuses are
 empty. In the past there was a table with information about last
 successful builds and in any case there should be a build error. Does
 that mean that portsmon is no longer performing/monitoring package
 builds ?


 [1] 
 http://portsmon.freebsd.org/portoverview.py?category=mailportname=mail-notification

 As far as I know it builds properly on the clusters, I have checked the logs 
 and
 see nothing saying it breaks.

 regards,
 Bapt
___
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: mail/mail-notification 5.4 fails to compile

2013-08-04 Thread Marcin Wisnicki
BTW there are no build errors on build cluster. Is there anything
non-standard about your build environment ?

On Sun, Aug 4, 2013 at 8:42 PM, Marcin Wisnicki
mwisnicki+free...@gmail.com wrote:
 I guess bsd.gnome.mk should be smart enough to `killall -HUP gconfd-2`
 at package post-install when port uses gconf (has GCONF_SCHEMAS).
 Please file a PR against gnome ports.

 On Sun, Aug 4, 2013 at 8:08 PM, Torfinn Ingolfsen tin...@gmail.com wrote:
 Hi,

 On Sat, Aug 3, 2013 at 7:32 PM, Marcin Wisnicki
 mwisnicki+free...@gmail.com wrote:
 You will need this patch:
 http://patch-tracker.debian.org/patch/series/view/mail-notification/5.4.dfsg.1-8/disable-werror.patch
 from which you have to strip first directory in file name.

 Thanks, testing now:

 root@kg-core1# pwd
 /usr/ports/mail/mail-notification/work/mail-notification-5.4

 root@kg-core1# patch -p1  /home/tingo/work/disable-werror.patch
 Hmm...  Looks like a unified diff to me...
 The text leading up to this was:
 --
 |Description: Check for maintainer mode correctly
 |Author: Stephen Kitt st...@sk2.org
 |
 |Maintainer mode was being activated in all cases, which is not
 |desirable; in particular on buildds it enables -Werror which causes
 |the build to fail now.
 |
 |--- mail-notification-5.4.dfsg.1.orig/jb
 |+++ mail-notification-5.4.dfsg.1/jb
 --
 Patching file jb using Plan A...
 Hunk #1 succeeded at 37.
 done

 Patched without trouble.

 root@kg-core1# cd ../..

 output from build:
 ===  Configuring for mail-notification-5.4_10
 cd /usr/ports/mail/mail-notification/work/mail-notification-5.4 
 jb_cppflags=-I/usr/local/include jb_ldflags= -L/usr/local/lib
 -Wl,-rpath=/usr/lib:/usr/local/lib ./jb configure cc=cc cflags=-O2
 -pipe -fno-strict-aliasing cppflags=-I/usr/local/include ldflags=
 -L/usr/local/lib -Wl,-rpath=/usr/lib:/usr/local/lib
 prefix=/usr/local hotmail=no yahoo=no evolution=no mozilla=no
 [...]

 building program mail-notification

 Mail Notification 5.4 was built successfully.
 Type sudo ./jb install to install Mail Notification 5.4.

 output from install:
 Mail Notification 5.4 was installed successfully.
 ===   Running ldconfig
 /sbin/ldconfig -m /usr/local/lib
 ===   Registering installation for mail-notification-5.4_10

 But upon starting I get this:
 tingo@kg-core1$ mail-notification -p

 ** (mail-notification:37126): WARNING **: cannot find default value of
 configuration key /apps/mail-notification/commands/new-mail/enabled

 ** (mail-notification:37126): WARNING **: cannot find default value of
 configuration key /apps/mail-notification/commands/new-mail/command

 (lots of lines snipped for brevity)
 It seems this is a known bug:

 https://bugzilla.redhat.com/show_bug.cgi?id=522363
 https://bugzilla.redhat.com/show_bug.cgi?id=682584

 Testing with gconftool-2:
 tingo@kg-core1$ gconftool-2 --get
 /apps/mail-notification/commands/new-mail/enabled
 No value set for `/apps/mail-notification/commands/new-mail/enabled'

 root@kg-core1# pkill  gconfd-2
 tingo@kg-core1$ gconftool-2 --get
 /apps/mail-notification/commands/new-mail/enabled
 false

 and after that starting mail-notification works.
 HTH
 --
 Regards,
 Torfinn Ingolfsen
___
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: Status of portsmon

2013-08-04 Thread Mark Linimon
On Sun, Aug 04, 2013 at 09:14:32PM +0200, Marcin Wiśnicki wrote:
 But didn't it use to show last successful builds too ? Now it just
 says None which is not very helpful.

No, it doesn't have that information, sorry.

mcl
___
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: ports/172837: lang/swi-pl compiles with databases/libiodbc

2013-08-04 Thread cpghost
On 08/03/13 11:29, Johan van Selst wrote:
 Johan van Selst wrote:
 cpghost wrote:
 I've discovered the reason for this:
 Ah, great. Now I can reproduce it as well. You are right, it is a hidden
 dependency (with no sensible way of turning it off). I shall add your
 patch with an explicit dependency on misc/ossp-uuid.
 
 On second thought... the potential for wrong dependency issues with
 conflicting ports, the lack of configuration options, the lack of shared
 libraries (static only) and the realisation that most people have been
 happy Prolog users without this feature so far, made me decide to rip it
 out instead.
 
 If anybody really wants to have ossp-uuid support in SWI Prolog, then
 please let me know.

No objections here. I've never used UUIDs in Prolog. ;-)

 Cheers,
 Johan

Thanks,
-cpghost.

-- 
Cordula's Web. http://www.cordula.ws/

___
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:Supply plastic material superior quality with low price

2013-08-04 Thread rita




Dear purchase manager, 

Wish you enjoy a great day!

We get your name and email address from Internet that You are in the production 
of plastic products.
we would like to introduce our company and products,hope that we may build 
business cooperation in the future.

General-purpose Plastic
PEpolyehtylene
PPpolypropylene
PVC RESIN
EPS

Engineering Plastic
ABS
HIPSHigh Impact Polystyrene
PETPolyethylene terephthalate
PTFE

Should any of these items be of interest to you, please let us know, we will be 
happy to give you details.

Best regards,
Rita
TEL:86-4000-532-314
FAX:86-0532-80615882
EMAIL:r...@adx-trade.com
MSN:rita...@live.cn 





































































































 
___
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: [REVIEW] Completing i386-wine

2013-08-04 Thread Thomas Mueller
 Subject: Completing i386-wine
 Date: Saturday, 3 August 2013, 14:46:06

 Hi All,

 There has been one major missing piece of i386-wine.  The ability for the port
 to build and install under amd64 (and thus to appear in the official repos
 of FreeBSD).  Since the Port's Collection does not support cross compiling
 this is quite impossible.

 However, there is precedent.  The misc/compat ports are essentially binary
 ports and I propose doing the same thing for i386-wine: compile the packages
 on my system, upload the packages to LOCAL and have the port repackage those
 binaries when installing under amd64.

 Although that is a simple process the only problem is that when i386-wine is
 being built under i386 the port is a slave port while under amd64 it is the
 master.  This requires the port to do it's own bootstrapping.

 So, please see attached, for review.

Would there also be the possibility to have i386-wine as a source-code port, 
and build from i386 installation?  That avoids cross-compiling.

One could build an i386 installation either from amd64 or previous i386 
installation, then build i386-wine and other desired ports when booted into the 
i386 installation.

This i386 installation would be on another partition or another disk (USB 3.0 
stick or USB 3.0 hard-drive partition?), and from the amd64 installation, the 
i386 installation could be mounted on /compat/i386.

With a USB hard drive, if not directly bootable, the loader and kernel could be 
copied to another boot disk/partition, and root could be set for the USB 
hard-drive partition.  My USB 3.0 hard drive, Western Digital My Book 
Essential, is not recognized by the BIOS/UEFI or GRUB2, but is accessible from 
Linux or FreeBSD.

Tom

___
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