diff options
author | markd <markd@pkgsrc.org> | 2006-10-12 10:31:04 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2006-10-12 10:31:04 +0000 |
commit | 8e6138644c3d8bcd784fb416fa33ff0af054dc22 (patch) | |
tree | aa2b63c1bef990ff01c68c3dac641eea715b124c /x11/kdelibs3/Makefile | |
parent | b579709cb504b5ae0abbeb89550def37f1d18590 (diff) | |
download | pkgsrc-8e6138644c3d8bcd784fb416fa33ff0af054dc22.tar.gz |
Update to KDE 3.5.5
Remove the USE_TOOLS+=gawk:pkgsrc for Solaris as bootstrap now provides
a suitable awk.
Changes:
kdeinit
* Add protection against poor Linux OOM-killer heuristic.
Kate
* Support Q_DECLARE_INTERFACE-macro when coding Qt-code
* Don't enter "word selection mode" without an actual selection.
* Fixed another stringAtPos(-1) call.
KHTML
* Heavy DHTML optimizations for the case where the changes in the style
merely moves a layer, which is very common.
* Significant improvements in painting of inline elements, to be more
compliant with CSS 2.1 - section 10.8.1 and Appendix E-2; also includes
support for CSS 3 outline-offset.
* Support CSS3's hsv/hsva color values.
* Fixes to make the new yahoo photos site basically work: fix a bug in
XML parser and emission of scroll event.
* Fix a regression in performance of background painting.
* Properly compute length of utf-8 data in XMLHttpRequest.
* Support parsing of attribute/>.
* Evaluate scripts in <iframe src="javascript:..."> properly. Fixes some
of the product pages on amazon.com and the reader on freemail.hu.
* Permit faster auto-scrolling with the middle mouse button.
* Permit manually scrolling frames with keyboard et al. even if they have
scrolling=no.
* Don't miss some of the attribute changes relevant for restyling.
* Properly restyle when when an anchor stop being a link of becomes one.
* Properly honor bottom padding on scrolled overflow.
* Honor no-repeat in background when background offset is negative.
* Fixes in application of padding to inline elements.
* Various memory leak fixes, in particular in the element from ID or name
lookup caches, and some table and attribute node operations.
* Fix handling of <colgroup> elements without span attribute.
* Fixes in stacking order of elements with non-visible overflow.
* Fixing crash upon deleting cells from rows.
* Do not improperly reset text-align in tables in strict mode.
* Properly re-layout table caption if needed.
* Fixing two crashes in the capitalization code (regression).
* Fix crash on hover due to dangling placeholder box.
* Fix sometimes incorrect positioning of positioned elements having root
as containing block.
* Fixed crash when characterSet is accessed on newly-created document.
* Fix regression in <label> support.
* Support the add method on the options collection.
* Properly discard malformed content properties.
* Parse 'align' attribute of iframes.
* Make sure to properly escape ampersands in right-click google search.
* Resetting a SELECT with no default selection should not select the
first item if it's a multiple selection list.
* Do not let NodeIterators escape out of the root node.
* For percentage height calculation purposes, make body appear to have
the same height as the viewport (quirk mode).
* Properly account for overflows induced by inline-blocks and text-shadows.
* Remove incorrect addition of borders to layers which made some links
unclickable (regression).
* Fix mistake which made the viewport width be used instead of the root
block width when calculating the document width (regression).
* Make sure that when display:compact blocks are merged into a host block,
the height of the resulting block is at least that of the compact block.
* Do not limit single-line input elements to entry of 1024 characters.
* Do not try to run external VBScript; add the newly approved ECMAScript
mimetypes.
* Fix bug involving first-letter property where text fragments would
'disappear' (being offset far to the right or left) instead of breaking
to next line.
* Allow instanceof to work on most DOM objects (partial fix).
kjs
* Parse dates with ',', '-' and ':' where whitespace was expected.
Example: ",-:September,03,-:,2006, 13:53:02,-:"
* Do not crash when modifying an invalid date object.
* Fix locale-dependence in the parser, which resulted in floating point
numbers getting misparsed in some locales.
kio
* Set m_bDeep in all KServiceGroup constructors, or it may be used
uninitialized in load() and entries(). kbuildsycoca did this, and
valgrind caught it.
kdecore
* Pick correctly the best icon size. Also make -1,-1 return the largest
icon and not the first one (makes more sense and saying the first one
is as good as saying a random one).
* Be explicit about windowInfo() args.
* NET::Override is old and hated.
* Add support for more icon contexts in the icon loader.
* Search for icons also in $XDG_DATA_DIRS.
* Fix KSharedConfig to actually share readonly configs.
kdefx
* - "features" is clobbered by the longjmp, so mark it as volatile to
avoid that a clever compiler (gcc 4.2) optimizes reads away.
kdesu
* Add sudo support. See that bug for some remaining issues.
kdeui
* Don't draw a highlighting line above KPopupMenu title sections. It
looks very out-of-place, especially when using styles with rounded
PE_HeaderSections.
kdoctools
* Some extra entities required for 100% successful docs compilation.
kdeprint
* CUPS 1.2 support
* Show prettier urls.
knewstuff
* Unbreak "latest" and "most downloads" views.
* Fix memory leaks.
KWallet
* Fix deadlock with autocompletion popups.
* Associate wallet dialogs properly with main windows.
l10n
* Fix short date format for Turkish.
Diffstat (limited to 'x11/kdelibs3/Makefile')
-rw-r--r-- | x11/kdelibs3/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/x11/kdelibs3/Makefile b/x11/kdelibs3/Makefile index 38b63ef4d99..aba688f73d5 100644 --- a/x11/kdelibs3/Makefile +++ b/x11/kdelibs3/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.113 2006/09/11 09:11:04 joerg Exp $ +# $NetBSD: Makefile,v 1.114 2006/10/12 10:31:04 markd Exp $ DISTNAME= kdelibs-${_KDE_VERSION} -PKGREVISION= 1 CATEGORIES= x11 COMMENT= Support libraries for the KDE integrated X11 desktop @@ -25,10 +24,6 @@ SGML_CATALOGS+= ${PREFIX}/share/kde/apps/ksgmltools2/docbook/xml-dtd-4.2/docboo .include "dirs.mk" .include "../../mk/bsd.prefs.mk" -.if ${OPSYS} == "SunOS" -USE_TOOLS+= gawk:pkgsrc -.endif - LIBS.NetBSD+= ${EXPORT_SYMBOLS_LDFLAGS} REQD_DIRS+= ${KDE3_DIRS:O:S/^/${PREFIX}\//} |