summaryrefslogtreecommitdiff
path: root/x11/kdebase3/options.mk
diff options
context:
space:
mode:
authormarkd <markd>2007-01-26 02:49:25 +0000
committermarkd <markd>2007-01-26 02:49:25 +0000
commit2af03cdcd17eebe8e06ae4bc7bb185211796867a (patch)
tree47089442d24c39c20c4f487af4e8aa777289a777 /x11/kdebase3/options.mk
parent31d20f75ba91bc78af4271649eb54bfc69a67413 (diff)
downloadpkgsrc-2af03cdcd17eebe8e06ae4bc7bb185211796867a.tar.gz
Update KDE to 3.5.6
kicker * More support for compiz as a window manager. * Pick up timezone changes when reconfiguring. * Prevent the systray from flickering e.g. when a new window is opened/closed. KWin * Claim _NET_WM_CM_Sn compositing manager selection when compositing. * Fix mouse dragging in dual-head non-xinerama mode. * Fix crash while switching show desktop state. * Avoid focus problems with non-click-to-focus policies. * Fix click-raise with a compositing manager running. * Fix X resources leaks in kompmgr. * Fix click-raise interaction with panels. * Avoid possible race condition when withdrawing windows. kdesktop * Fix crash when typing "56+" in minicli (i.e. when bc gives a parse error). * Fix F5 not doing anything on the desktop. * Fix OpenGL screensavers rendering. kmenu * Install the Games/Kids Games file with the correct filename. Kate * Added session chooser panel applet and KMenu extension. konqueror * DCOP support for splitting the view. * Make the konqueror main window a group leader to ensure modal dialogs from one window do not block other konqueror main windows. * Dynamically enable/disable "Empty Trash" entry. * Fix crash when scanning for new plugins, then changing plugin settings. * Fix crash after a lot of cut&paste operations in tree view. konsole * Correct calculation of colour values in 256-colour mode. * Fix crash when saving history twice. * Fix crash if setting font to a size which is larger than the terminal display. kioslave * fish:/ kioslave is now able to handle files > 2GB. * Fix correct display of file size transfers > 2GB in smb:/. * Fix files that start with # showing as folders in fish:/. * Symlinks in trash now show symlink size instead of file size. * Fix correct calculation of percent diskfree. kfind * Fix URL usage with filenames including special chars. * Show a user-friendly URL in the "Look in:" field. ksysguard * Only show the penguin for linux systems. Otherwise use the system icon. * Set the focus to the search line when started with ctrl+esc. Fix the tab ordering. * Fix various stability problems. * Fix when you reorder the sensors. * Number of horizontal lines in the plotter was off by one. Plus it tries hard to show the top bar when asked to. * Fix (mostly) the selection of processes. * Make the setting dialogs non-modal, so it doesn't freeze kicker when you use them. * Displaying a number (LCD style) now works even with tiny kicker. * Make the connection to ksysguardd more robust. kcontrol * Fonts settings module by default does not affect system-wide font rendering settings.
Diffstat (limited to 'x11/kdebase3/options.mk')
-rw-r--r--x11/kdebase3/options.mk34
1 files changed, 34 insertions, 0 deletions
diff --git a/x11/kdebase3/options.mk b/x11/kdebase3/options.mk
new file mode 100644
index 00000000000..d7a960da6d0
--- /dev/null
+++ b/x11/kdebase3/options.mk
@@ -0,0 +1,34 @@
+# $NetBSD: options.mk,v 1.1 2007/01/26 02:49:25 markd Exp $
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.kdebase
+PKG_SUPPORTED_OPTIONS= sasl samba debug pam
+PKG_SUGGESTED_OPTIONS= sasl
+
+.include "../../mk/bsd.options.mk"
+
+.if !empty(PKG_OPTIONS:Msamba)
+.include "../../net/samba/buildlink3.mk"
+LIBS+= -L${BUILDLINK_PREFIX.samba}/lib/samba ${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.samba}/lib/samba
+PLIST_SUBST+= HAVE_SMB=""
+.else
+PLIST_SUBST+= HAVE_SMB="@comment "
+.endif
+
+.if !empty(PKG_OPTIONS:Mdebug)
+CC+= -ggdb
+CXX+= -ggdb
+CONFIGURE_ARGS+= --enable-debug=full
+CONFIGURE_ENV+= INSTALL_STRIP_FLAG=
+INSTALL_UNSTRIPPED= yes
+.endif
+
+.if !empty(PKG_OPTIONS:Mpam)
+. include "../../mk/pam.buildlink3.mk"
+CONFIGURE_ARGS+= --with-pam
+.else
+CONFIGURE_ARGS+= --without-pam
+.endif
+
+.if !empty(PKG_OPTIONS:Msasl)
+.include "../../security/cyrus-sasl/buildlink3.mk"
+.endif