From owner-freebsd-ports Fri Mar 24 5:10:10 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F4EE37B6F5 for ; Fri, 24 Mar 2000 05:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id FAA87771; Fri, 24 Mar 2000 05:10:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from grenade.plano.sterling.com (nat254.plano.sterling.com [138.42.1.254]) by hub.freebsd.org (Postfix) with ESMTP id E194237B597 for ; Fri, 24 Mar 2000 05:08:33 -0800 (PST) (envelope-from root@grenade.plano.sterling.com) Received: (from root@localhost) by grenade.plano.sterling.com (8.9.3/8.9.3) id HAA22118; Fri, 24 Mar 2000 07:08:54 -0600 (CST) (envelope-from root) Message-Id: <200003241308.HAA22118@grenade.plano.sterling.com> Date: Fri, 24 Mar 2000 07:08:54 -0600 (CST) From: alan.edmonds@sterling.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/17579: problem in kdebase11 port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 17579 >Category: ports >Synopsis: x11/kdebase11 fails to install under 4.0-STABLE >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 24 05:10:00 PST 2000 >Closed-Date: >Last-Modified: >Originator: Alan Edmonds >Release: FreeBSD 4.0-STABLE i386 >Organization: Sterling Software >Environment: Recently installed FreeBSD 4.0 STABLE. >Description: I tried to install kde. cd /usr/ports/x11/kde11 make make configure fails with 'No KDE libraries found.' >How-To-Repeat: See Description above. >Fix: I was able to fix it by modifing ports/x11/kdebase11/work/kdebase-1.1.2/configure. Diff is below. Basically, it checks for KDE libraries by looking for libkdecore.la. On my system, this wasn't installed when kdelibs were installed. I only have a libdecore.so. I changed the .la to .so and configre then succeeded. *** configure Fri Mar 24 06:50:54 2000 --- configure.orig Tue Sep 7 10:21:06 1999 *************** *** 3859,3865 **** kde_libdir=NO for i in $kde_libdirs; do ! for j in libkdecore.la; do if test -r "$i/$j"; then kde_libdir=$i --- 3859,3865 ---- kde_libdir=NO for i in $kde_libdirs; do ! for j in libkdecore.so; do if test -r "$i/$j"; then kde_libdir=$i *************** *** 3869,3875 **** done ! if test -n "$ac_kde_libraries" && test ! -r "$ac_kde_libraries/libkdecore.la"; then { echo "configure: error: in the prefix, you've chosen, are no KDE libraries installed. This will fail. So, check this please and use another prefix!" 1>&2; exit 1; } --- 3869,3875 ---- done ! if test -n "$ac_kde_libraries" && test ! -r "$ac_kde_libraries/libkdecore.so"; then { echo "configure: error: in the prefix, you've chosen, are no KDE libraries installed. This will fail. So, check this please and use another prefix!" 1>&2; exit 1; } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message