Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 30 Sep 1998 13:29:24 +0200 (CEST)
From:      Hans Petter Bieker <zerium@webindex.no>
To:        Henry Vogt <henry@MX.BA-Stuttgart.De>
Cc:        Joachim Kuebart <joki@kuebart.stuttgart.netsurf.de>, dwhite@resnet.uoregon.edu, narvi@haldjas.folklore.ee, current@FreeBSD.ORG
Subject:   Re: ELF X11
Message-ID:  <Pine.BSF.4.02A.9809301319250.25271-100000@zeriat.online.no>
In-Reply-To: <199809300959.LAA27918@marylin.goethestr12-net.marbach-neckar>

next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, 30 Sep 1998, Henry Vogt wrote:

> this is what i get trying to compile the actual kde port.
> (using an ELF'd 3.0-BETA (SMP) System.)  All goes well (Mesa2,qt140) 
> until and including 'kdelibs', but then 'kdebase' fails:
> 
> Error: shared library "kdecore\.1\.0" does not exist

recompile kdelibs with this patch. Then try kdebase again. (this patch is 
against the KDE cvs repository, not the fbsd ports collection.)

You might as well fix your PLIST to include kdecore.so.1 instead of
kdecore.so.1.0 (and the same with the rest of the libs.)

You'll also have to fix the deps in the ports-collection.
change:
kdecore\\.1\\.[0-9]:${PORTSDIR}/x11/kdelibs
to:
kdecore.1\:${PORTSDIR}/x11/kdelibs
etc.

Index: ltmain.sh
===================================================================
RCS file: /home/kde/kdelibs/ltmain.sh,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ltmain.sh	1998/03/20 17:38:24	1.17
+++ ltmain.sh	1998/09/27 19:14:42	1.18
@@ -967,6 +967,16 @@
         versuffix="$current.$revision"
         ;;
 
+      freebsd)
+        version_vars="$version_vars major versuffix"
+        major="$current"
+	if [ $PORTOBJFORMAT = elf ]; then
+        versuffix="$current";
+	else
+        versuffix="$current.$revision";
+	fi
+        ;;
+
       *)
         $echo "$modename: unknown library version type \`$version_type'" 1>&2
         echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2

-bieker-


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.02A.9809301319250.25271-100000>