HI. I thought to give a try to port somehow the pc-bluetoothmanager and pc-bluetoothtray from PC-BSD to FreeBSD. First I install from ports libpcbsd.
After I download from GitHub the PC-BSD source.
https://codeload.github.com/pcbsd/pcbsd/zip/9.1-release
In the /src-qt4 folder I found pc-bluetoothmanager and pc-bluetoothtray folders with the executables. Now I am stuck.
But nowhere I can find this library. Also
If we could make it work, maybe was the first step to port the Bluetooth manager of PC-BSD to FreeBSD.
Update:
I Installed from ports devel/qt4-qtsolutions-singleapplication and now I get
Also in the PC-BSD source tree in src-qt4 I finally found /libpcbsd/ui and /libpcbsd/utils . I should compile somehow the source with GCC to create the libraries libpcbsd-ui.so.0 and libpcbsd-utils.so.0
Update:
According http://blog.pcbsd.org/2012/02/call-for-testers-bluetooth-manager/ I went to src-qt4 /libpcbsd, I ran
And now just copy this libs in/lib /usr./lib/ usr/local/lib /usr/local/kde4/lib
I also run
on pc-bluetoothmanager and pc-bluetoothtray and insist that cannot find the libs
I MADE IT WORK FINALLY.
On folder /src-qt4 on folders
pc-bluetoothmanager, pc-bluetoothtray and pc-bsdutils
after
Now:
and:
Now I will test if can make my Logitech bluetooth keyboard work!
Code:
cd /usr/ports/sysutils/libpcbsd && make install clean
After I download from GitHub the PC-BSD source.
https://codeload.github.com/pcbsd/pcbsd/zip/9.1-release
In the /src-qt4 folder I found pc-bluetoothmanager and pc-bluetoothtray folders with the executables. Now I am stuck.
sudo ./pc-bluetoothmanager
returns
Code:
Shared object "libpcbsd-ui.so.0" not found, required by "pc-bluetoothmanager"
But nowhere I can find this library. Also
sudo ./pc-bluetoothtray
returns
Code:
Shared object "libQtSolutions_SingleApplication-head.so.1" not found, required by "pc-bluetoothtray"
If we could make it work, maybe was the first step to port the Bluetooth manager of PC-BSD to FreeBSD.
Update:
I Installed from ports devel/qt4-qtsolutions-singleapplication and now I get
sudo ./pc-bluetoothtray
Code:
Shared object "libpcbsd-utils.so.0" not found, required by "pc-bluetoothtray"
Also in the PC-BSD source tree in src-qt4 I finally found /libpcbsd/ui and /libpcbsd/utils . I should compile somehow the source with GCC to create the libraries libpcbsd-ui.so.0 and libpcbsd-utils.so.0
Update:
According http://blog.pcbsd.org/2012/02/call-for-testers-bluetooth-manager/ I went to src-qt4 /libpcbsd, I ran
qmake-qt4 *.pro
and a Makefile was created. Then I ran make
and the libraries just compiled And now just copy this libs in/lib /usr./lib/ usr/local/lib /usr/local/kde4/lib
I also run
qmake-qt4 *.pro
make
on pc-bluetoothmanager and pc-bluetoothtray and insist that cannot find the libs
I MADE IT WORK FINALLY.
On folder /src-qt4 on folders
pc-bluetoothmanager, pc-bluetoothtray and pc-bsdutils
after
make
, I run make install
Now:
Code:
[ember@Unix /usr/home/ember]$ ls /usr/local/bin/pc-bluetooth*
/usr/local/bin/pc-bluetoothmanager /usr/local/bin/pc-bluetoothtray
Code:
[ember@Unix /usr/home/ember]$ ls /usr/local/lib/libpcbsd*
/usr/local/lib/libpcbsd-ui.so /usr/local/lib/libpcbsd-utils.so.0.9
/usr/local/lib/libpcbsd-ui.so.0 /usr/local/lib/libpcbsd-utils.so.0.9.8
/usr/local/lib/libpcbsd-ui.so.0.9 /usr/local/lib/libpcbsd.so
/usr/local/lib/libpcbsd-ui.so.0.9.8 /usr/local/lib/libpcbsd.so.0
/usr/local/lib/libpcbsd-utils.so /usr/local/lib/libpcbsd.so.8.0
/usr/local/lib/libpcbsd-utils.so.0
Now I will test if can make my Logitech bluetooth keyboard work!