Since my OpenBSD install doesn't use X11 I couldn't use the official Pidgin package and had to install by source instead. To start out, I used the following configure command:
Which resulted in the following error:
Unfortunately, both libpanel and libncurses exist, so clearly something must be going wrong w/ the pidgin configure script. Since I knew it was a problem w/ the detection of libpanel, I decided to go w/ the quick-fix option and simply changed lines 28670-28674 from:
to:
Afterwards, there was just one more problem: the GMSGFMT and MSGFMT variables weren't set in 'po/Makefile'. 'msgfmt' is a program that's part of the gettext package, and was installed on my system in '/usr/local/bin/'. Therefore, all I had to do was set GMSGFMT and MSGFMT (lines 47 and 48) in 'po/Makefile' to '/usr/local/bin/msgfmt' and everything compiled smoothly.
Edit: Oh, and use 'gmake' of course instead of 'make'.
FLAVOR=no-x11
You could try talking to the port's maintainer, maybe get them to add a no-x11 flavour.
good point
I just contacted the maintainer and we'll see whether a no-x11 flavor can be added.
Post new comment