Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 24 Mar 2000 07:08:54 -0600 (CST)
From:      alan.edmonds@sterling.com
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/17579: problem in kdebase11 port
Message-ID:  <200003241308.HAA22118@grenade.plano.sterling.com>

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

>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




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