Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 19 May 2008 15:44:23 GMT
From:      Jonathan <lordsith49@hotmail.com>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/123819: net-im/libpurple Script "configure" failed unexpectedly
Message-ID:  <200805191544.m4JFiNpF009706@www.freebsd.org>
Resent-Message-ID: <200805191550.m4JFo3Zp040573@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         123819
>Category:       ports
>Synopsis:       net-im/libpurple Script "configure" failed unexpectedly
>Confidential:   no
>Severity:       serious
>Priority:       high
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon May 19 15:50:03 UTC 2008
>Closed-Date:
>Last-Modified:
>Originator:     Jonathan
>Release:        FreeBSD 7.0
>Organization:
>Environment:
FreeBSD 7.0-RELEASE-p1 FreeBSD 7.0-RELEASE-p1 #0: Mon Apr 21 09:14:42 MDT 2008  
>Description:
.. (snip) ...
checking for IceConnectionNumber in -lICE... yes
checking for LIBXML... yes
checking for gconftool-2... /usr/local/bin/gconftool-2
Using config source xml:merged:/usr/local/etc/gconf/gconf.xml.defaults for schema installation
Using $(sysconfdir)/gconf/schemas as install directory for schema files
checking for MEANWHILE... gnome-config: not found
gnome-config: not found
no
configure: error:
Meanwhile development headers not found.
Use --disable-meanwhile if you do not need meanwhile (Sametime) support.

===>  Script "configure" failed unexpectedly.
Please report the problem to marcus@FreeBSD.org [maintainer] and attach the
"/usr/ports/net-im/libpurple/work/pidgin-2.4.2/config.log" including the
output of the failure of your make command. Also, it might be a good idea to
provide an overview of all packages installed on your system (e.g. an `ls
/var/db/pkg`).
.. (snip) ...



>How-To-Repeat:
csup to latest ports tree
cd /usr/ports/net-im/
make all install clean

>Fix:
Disclaimer: IANAD (I Am Not A Developer) but I'm guessing that...

This statement in the Makefile:

if defined(WITH_SAMETIME)
LIB_DEPENDS+=   meanwhile.1:${PORTSDIR}/net-im/meanwhile
PLIST_SUB+=     SAMETIME=""
PRPL_MODULES:=  ${PRPL_MODULES},sametime
.else
PLIST_SUB+=     SAMETIME="@comment not installed: "
.endif

Needs to become this:

if defined(WITH_SAMETIME)
LIB_DEPENDS+=   meanwhile.1:${PORTSDIR}/net-im/meanwhile
PLIST_SUB+=     SAMETIME=""
PRPL_MODULES:=  ${PRPL_MODULES},sametime
.else
CONFIGURE_ARGS+= --disable-meanwhile
PLIST_SUB+=     SAMETIME="@comment not installed: "
.endif



>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200805191544.m4JFiNpF009706>