with
undefined reference to vtable for ProjectBuilderMakeFileGenerator
When I look at the logs the error happens when and install of Qmake4 which is version 4.6.1
qt-everywhere-opensource-src-4.6.1
/usr/ports/devel/qmake4
I retried a make install and now I get
swap_pager_getswapspace(3): failed
kernel killed out of swap space
I tried adding swap space as described here
http://www.freebsd.org/doc/en/books/handbook/adding-swap-space.html
Example 11-1. Creating a Swapfile on FreeBSD
1. Be certain that your kernel configuration includes the memory disk driver (md(4)). It is default in GENERIC kernel.
device md # Memory "disks"
2. Create a swapfile (/usr/swap0):
# dd if=/dev/zero of=/usr/swap0 bs=1024k count=64
3. Set proper permissions on (/usr/swap0):
# chmod 0600 /usr/swap0
4. Enable the swap file in /etc/rc.conf:
swapfile="/usr/swap0" # Set to name of swapfile if aux swapfile desired.
5. Reboot the machine or to enable the swap file immediately, type:
# mdconfig -a -t vnode -f /usr/swap0 -u 0 && swapon /dev/md0
Solution was to use portmanager to install the port
# portmanager devel/qmake4 -f