Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 8 Feb 2003 20:23:26 +0300 (MSK)
From:      Seva Gluschenko <gvs@rinet.ru>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/48093: kde3 FreeBSD port fails to configure Xinerama in kde3 parts
Message-ID:  <200302081723.h18HNQxU083212@road.demos.su>

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

>Number:         48093
>Category:       ports
>Synopsis:       kde3 FreeBSD port fails to configure Xinerama in kde3 parts
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Feb 08 09:30:01 PST 2003
>Closed-Date:
>Last-Modified:
>Originator:     Seva Gluschenko
>Release:        FreeBSD 4.7-STABLE i386
>Organization:
JSC Demos-Internet
>Environment:
System: FreeBSD road.demos.su 4.7-STABLE FreeBSD 4.7-STABLE #1: Mon Oct 14 18:39:28 MSD 2002 gvs@road.demos.su:/usr/local/obj/usr/local/src/sys/ROAD i386


	
>Description:
	When building KDE3.1 from ports, I've found that several parts of
	KDE 3.1 don't have any way to define --with-xinerama configure
	argument in their files. As soon as they all include Makefile.kde
	from /usr/ports/x11/kde3, the easiest way to fix is to add the
	conditional define there.
	
>How-To-Repeat:
	Try to build any part of KDE3.1 besides kdebase3 or kdelibs3. Their
	Makefiles haven't any instruction to include Xinerama support.
	
>Fix:
	Apply the patch below. Now you can build any part of KDE3.1 using
	Xinerama by means of

	make -DWITH_XINERAMA

	command. Not a big deal really, but it's nice to make a choice or
	some options you want to have.

--- /usr/ports/x11/kde3/Makefile.kde.orig       Sat Feb  8 20:10:57 2003
+++ /usr/ports/x11/kde3/Makefile.kde    Sat Feb  8 20:12:23 2003
@@ -63,6 +63,10 @@
 CONFIGURE_ARGS+=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
 .endif

+.if defined(WITH_XINERAMA)
+CONFIGURE_ARGS+=--with-xinerama
+.endif
+
 .if !defined(_NO_KDE_FINAL) && defined(WANT_KDE_FINAL)
 CONFIGURE_ARGS+=--enable-final
 .endif

	


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

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




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