From owner-freebsd-ports@FreeBSD.ORG Thu Jul 1 12:23:44 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 68B071065670 for ; Thu, 1 Jul 2010 12:23:44 +0000 (UTC) (envelope-from david@vizion2000.net) Received: from dns1.vizion2000.net (dns1.vizion2000.net [62.49.197.50]) by mx1.freebsd.org (Postfix) with ESMTP id DA3F88FC1E for ; Thu, 1 Jul 2010 12:23:43 +0000 (UTC) Received: from graphics (graphics [62.49.197.51]) by dns1.vizion2000.net (Postfix) with ESMTP id CCC2D34D401; Thu, 1 Jul 2010 13:23:35 +0100 (BST) From: To: "'Max Brazhnikov'" References: <201007011442.29982.makc@issp.ac.ru><4B10D00CB0ED4AA08373D79CDFCC9DB6@graphics> <201007011557.01037.makc@issp.ac.ru> Date: Thu, 1 Jul 2010 05:23:38 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 11 In-Reply-To: <201007011557.01037.makc@issp.ac.ru> Thread-Index: AcsZFK/RsLYXwoWBQhOlGsq5ciGwOgAAQZLQ X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.4657 Cc: freebsd-ports@freebsd.org Subject: RE: kdelibs4 [4.4.5] compile failure for 4.4.4 repeated X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Jul 2010 12:23:44 -0000 > -----Original Message----- > From: owner-freebsd-ports@freebsd.org > [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Max Brazhnikov > Sent: 01 July 2010 04:57 > To: david@vizion2000.net > Cc: freebsd-ports@freebsd.org > Subject: Re: kdelibs4 [4.4.5] compile failure for 4.4.4 repeated > > On Thu, 1 Jul 2010 03:52:33 -0700, david@vizion2000.net wrote: > > Just attempting to rebuild kdelibs4 now. In the early part of the > > compile there is a report (Summarised) saying > > > > "The following optional packages could NIOT be located on > your system" > > > > Soprano (2.3.70 or higher) [pkg_info actually shows soprano-2.4.3 > > installed) > > Soprano Redland Backend [How is this and the following > two installed?} > > Have you rebuilt soprano as I suggested? Yes three times!! > make sure you have > not set WITHOUT_REDLAND in /var/db/ports/soprano/options or > in make.conf > . .(Stuff cut out) . > > Something is wrong with your soprano installation. soprano/options reads; Very weird - I have just rebuild akonadi and that finds soprano without difficulty!! After akonadi rebuild I tried again with kdelibs4 and early in the compile it still reports it cannot locate soprano. I am waiting now to see whether we get the same build failure. We do!! :-( soprano/options reads; _____________________________________________________ # This file is auto-generated by 'make config' # No user-serviceable parts inside! # Options for soprano-2.4.3 _OPTIONS_READ=soprano-2.4.3 WITHOUT_SESAME2=true _____________________________________________________ I have also tried compiling after choosing the make config option to turn sesame2 on. No other options are offered. With the Makefile as is should Redland be turned on? The Makefile reads: # New ports collection Makefile for: soprano # Date created: 2008-01-18 # Whom: arved # # $FreeBSD: ports/textproc/soprano/Makefile,v 1.11 2010/05/11 12:40:01 fluffy Exp $ PORTNAME= soprano PORTVERSION= 2.4.3 CATEGORIES?= textproc MASTER_SITES= SF/${PORTNAME}/Soprano/${PORTVERSION} MAINTAINER= kde@FreeBSD.org COMMENT= QT4 RDF framework LIB_DEPENDS= clucene.0:${PORTSDIR}/textproc/clucene \ raptor.3:${PORTSDIR}/textproc/raptor #OPTIONS+= REDLAND "Use Redland as storage backend (required for KDE4)" on #OPTIONS+= VIRTUOSO "Use libiodbc/virtuoso as storage backend (required for KDE4)" on OPTIONS+= SESAME2 "Use Sesame2 as storage backend (requires Java)" off USE_BZIP2= yes USE_QT_VER= 4 QT_COMPONENTS= corelib dbus qtestlib network \ qmake_build moc_build uic_build rcc_build USE_GNOME= pkgconfig USE_LDCONFIG= yes USE_CMAKE= yes .include .if !defined(WITHOUT_REDLAND) LIB_DEPENDS+= rdf.0:${PORTSDIR}/textproc/redland PLIST_SUB+= REDLAND="" .else CMAKE_ARGS+= -DSOPRANO_DISABLE_REDLAND_BACKEND=yes PLIST_SUB+= REDLAND="@comment " .endif .if !defined(WITHOUT_VIRTUOSO) LIB_DEPENDS+= iodbc.3:${PORTSDIR}/databases/libiodbc PLIST_SUB+= VIRTUOSO="" .else CMAKE_ARGS+= -DSOPRANO_DISABLE_VIRTUOSO_BACKEND=yes PLIST_SUB+= VIRTUOSO="@comment " .endif .if defined(WITH_SESAME2) CATEGORIES+= java CMAKE_ENV+= JAVA_HOME=${JAVA_HOME} USE_JAVA= yes JAVA_VERSION= 1.5+ JAVA_OS= native PLIST_SUB+= SESAME2="" .else CMAKE_ARGS+= -DSOPRANO_DISABLE_SESAME2_BACKEND=yes PLIST_SUB+= SESAME2="@comment " .endif .include post-patch: ${REINPLACE_CMD} -E -e "s,$${LIB_SUFFIX}/pkgconfig,data/pkgconfig," \ -e 's,VERSION STR(LESS|EQUAL|GREATER) "([^"]+)",VERSION VERSION_\1 \2,g' \ ${WRKSRC}/CMakeLists.txt ${REINPLACE_CMD} -e "s,soprano/cmake,cmake/Modules," \ ${WRKSRC}/cmake/modules/CMakeLists.txt post-install: .if defined(WITH_VIRTUOSO) @${CAT} ${PKGMESSAGE} .endif .include