summaryrefslogtreecommitdiff
path: root/x11/kdelibs3
AgeCommit message (Collapse)AuthorFilesLines
2005-12-29Don't change ${PREFIX}/share/pixmaps to ${PREFIX}/share/kde/pixmaps.markd3-6/+6
Directory is not actually used by KDE itself and this allows KDE to find (some) gnome icons. Bump PKGREVISION.
2005-12-29Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mkjlam1-2/+1
automatically detects whether we want the pkginstall machinery to be used by the package Makefile.
2005-12-24Remove accidentally duplicated part of PLIST.markd1-66/+1
Noted by Jeremy Reed.
2005-12-22Patches work better when applied to the right file.joerg2-5/+5
2005-12-20Added two patches that fix the build on NetBSD 1.6.2/i386.rillig3-1/+38
2005-12-11Update to KDE 3.5markd14-136/+832
Many new features and refinements. Notable changes include: * Konqueror is the second web browser to pass the Acid2 CSS test, ahead of Firefox and Internet Explorer * Konqueror can also now free web pages from adverts with its ad-block feature * SuperKaramba is included in KDE, providing well-integrated and easy-to-install widgets for the user's desktop * Kopete has support for MSN and Yahoo! webcams * The edutainment module has three new applications (KGeography, Kanagram and blinKen), and has seen huge improvements in Kalzium
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-3/+3
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-11-17Add support for option 'debug', to compile in debug code and symbols.hubertf1-2/+10
In case anyone ever wants to go and debug Qt/KDE. Like me. Shoot me!
2005-10-13Update to KDE 3.4.3markd4-34/+7
Changes: backport of bug fixes.
2005-10-12Forgotten distinfo commit for DragonFly support and isnan/isinf fix.joerg1-3/+5
2005-10-12Add DragonFly support. We need to override the libtool magic, otherwisejoerg4-9/+187
libltdl would be used and the startup time be in the dimensions of 10 minutes. Fix the detection of isnan and isinf, both are type-variadic macros under C99 and don't have to exist as external symbols. NetBSD is protected by the compatibily symbols, but would fail the test if they ever go away.
2005-09-04Put the list of languages for the directories directly into the .forrillig1-4/+3
loop. This avoids the use of the reserved name space (_LANGS) and prevents pkglint from the false warning that "tr" (turkish) be a tool name.
2005-08-20Use REQD_DIRS instead of MAKE_DIRS for directories under ${PREFIX} sojlam1-2/+3
that these directories will be conditionally removed (based on reference counts), regardless of the value of PKG_CONFIG. Bump the PKGREVISION for packages that were modified as a result.
2005-07-30Update to KDE 3.4.2markd3-7/+7
No summary of changes given, see http://www.kde.org/announcements/changelogs/3_4_2/kdelibs.txt for details.
2005-07-30Fix SIGBUS core dumps on sparc64. Patch from Michael Lorenz.markd3-3/+30
Bump PKGREVISION.
2005-07-16Get rid of USE_PERL5. The new way to express needing the Perl executablejlam1-2/+2
around at either build-time or at run-time is: USE_TOOLS+= perl # build-time USE_TOOLS+= perl:run # run-time Also remove some places where perl5/buildlink3.mk was being included by a package Makefile, but all that the package wanted was the Perl executable.
2005-06-26Add some more shared directories.markd2-7/+6
Bump PKGREVISION.
2005-06-04This is KDE3 not XDG (fix pasto).markd1-2/+2
2005-05-31Update to KDE 3.4.1markd16-1037/+26
Changes: * kdecore: Fix in command-line argument handler for clicking on mailto urls while kontact was started with arguments * kdecore: Fix the support for Dante proxies * kdecore: Fix the "random resolver failure" problem * kdecore: Fix the support for the IPv6 Blacklist in ioslaves * kdeui: Fix "Change Icon" in the toolbar editor * khtml: Fix submitted position for scrolled imagemaps * khtml: Load external CSS style-sheet with correct charset * khtml: Apply CSS padding to tables * khtml: Improve PRE parsing * khtml: Fix links with WBR tags * khtml: Parse CSS3 pseudo-classes and pseudo-elements more strict * khtml: Fix document.all.item * khtml: Return meaningful HTMLTableCellElement::cellIndex() values * khtml: Unbreak setting of location.href on windows opened by windows.open() * khtml: Various crash fixes * khtml: Fixed infinite loop due to onChange from textareas * khtml: Fix crash in window.setTimeout when Javascript is disabled * khtml: Fix server-side-push handler to accept bugzilla sending "text/html; charset=utf-8" as Content-Type * khtml: Fix for MMB-pasting onto an empty konqueror window * kjs: Allow non-ascii letters in identifiers * kjs: More flexible date string parsing * kjs: Fixes in escape() and unescape() functions * kjs: Fixes in RegExp constructor * kssl: store SSL passwords in the KDE wallet and reuse as needed * kio: KZip: Fixed double-deletion bug when trying to write to a non-writable directory. * kio: Fix for print:/manager not embedding the right part in Konqueror * kio: Use correct window icon in Konqueror when showing trash:/ * kfile: Don't show edit dialog when drop-adding items to sidebar * kfile: If Shift is pressed when menu opens show 'Delete' instead of 'Trash' * kio-http: Prevent endless busy loop * kio-http: Massive speed improvement for deleting Webdav folders * kio-ftp: Try non-passive mode if passive mode fails * kio-ftp: Fix parsing of Netware FTP servers, so that files don't all appear with a lock (no permissions) * kutils: Fixed support for back ref \0 (entire matched text)
2005-05-13Remove two blank lines.reed1-3/+1
2005-05-11Rename MAKE_VARS to MAKEVARS so that it more closely resemblesjlam1-2/+2
"MAKEFLAGS". Both "MAKEVARS" and "MAKEFLAGS" affect the package-level make process, not the software's own make process.
2005-05-11I mixed up MAKE_FLAGS with MAKEFLAGS. The latter is what we actually usejlam1-3/+3
to pass make flags to bmake.
2005-05-09Don't assign to PKG_OPTIONS.<pkg> which has special meaning to thejlam1-6/+6
options framework. Rename PKG_OPTIONS.* to PKG_BUILD_OPTIONS.*.
2005-05-09Teach bsd.pkg.mk to create a phase-specific "makevars.mk" file thatjlam1-3/+3
caches variable definitions that were computed by make. These variables are specified by listing them in MAKE_VARS, e.g., .if !defined(FOO) FOO!= very_time_consuming_command .endif MAKE_VARS+= FOO bsd.pkg.mk will include only the one generated during the most recent phase. A particular phase's makevars.mk file consists of variable definitions that are a superset of all of the ones produced in previous phases of the build. The caching is useful because bsd.pkg.mk invokes make recursively, which in the example above has the potential to run the very time-consuming command each time unless we cause FOO to be defined for the sub-make processes. We don't cache via MAKE_FLAGS because MAKE_FLAGS isn't consistently applied to every invocation of make, and also because MAKE_FLAGS can overflow the maximum length of a make variable very quickly if we add many values to it. One important and desirable property of variables cached via MAKE_VARS is that they only apply to the current package, and not to any dependencies whose builds may have been triggered by the current package. The makevars.mk files are generated by new targets fetch-vars, extract-vars, patch-vars, etc., and these targets are built during the corresponding real-* target to ensure that they are being invoked with PKG_PHASE set to the proper value. Also, remove the variables cache file that bsd.wrapper.mk was generating since the new makevars.mk files provide the same functionality at a higher level. Change all WRAPPER_VARS definitions that were used by the old wrapper-phase cache file into MAKE_VARS definitions.
2005-05-08PKG_OPTIONS.<pkg> isn't a good approximation to PKG_OPTIONS for thejlam1-2/+8
package because PKG_OPTION.<pkg> could contain negative options, which are never part of PKG_OPTIONS. Instead, use the show-var target to display the value. We cache it in WRAPPER_VARS and in MAKE_FLAGS to prevent reinvoking the show-var target recursively.
2005-05-04Previous patch introduced a regression, breaking reading of .rgb imagesmarkd3-14/+5
in most cases. From http://www.kde.org/info/security/advisory-20050504-1.txt Bump PKGREVISION.
2005-05-01Apply the official KDE patches for CAN-2005-1046.markd9-44/+733
http://www.kde.org/info/security/advisory-20050421-1.txt Bump PKGREVISION.
2005-04-28Use :O instead of ${SORT}.jlam1-3/+2
2005-04-19Depend on xdg-dirs-1.2, and remove share/desktop-directories fromwiz2-5/+4
managed directories. Bump PKGREVISION to 2.
2005-04-18Add an explicite check to a QImage construction. There is an inplicitedrochner2-1/+15
check, but it is not obvious whether it will catch all cases, in particular with corrupted TIFF files. Was the last occurence of an not-explicitely-checked QImage construction, so things are consistent now.
2005-04-13Bump BUILDLINK_RECOMMENDED for the latest security fix.salo1-2/+2
2005-04-12fix buffer overflow by corrupt PCX files, leading to crashes or codedrochner9-2/+329
injection, see http://bugs.kde.org/show_bug.cgi?id=102328 bump PKGREVISION
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-27comment out some dirrm's that MAKE_DIRS now handles properly.markd1-9/+9
2005-03-26Move creation/deletion of share/kde/apps/remoteview to kdelibs3/dirs.mkmarkd1-1/+2
2005-03-23Update to KDE 3.4markd17-480/+774
Highlights at a glance * Text-to-speech system with support built into Konqueror, Kate, KPDF and the standalone application KSayIt * Support for text to speech synthesis is integrated with the desktop * Completely redesigned, more flexible trash system * Kicker with improved look and feel * KPDF now enables you to select, copy & paste text and images from PDFs, along with many other improvements * Kontact supports now various groupware servers, including eGroupware, GroupWise, Kolab, OpenGroupware.org and SLOX * Kopete supports Novell Groupwise and Lotus Sametime and gets integrated into Kontact * DBUS/HAL support allows to keep dynamic device icons in media:/ and on the desktop in sync with the state of all devices * KHTML has improved standard support and now close to full support for CSS 2.1 and the CSS 3 Selectors module * Better synchronization between 2 PCs * A new high contrast style and a complete monochrome icon set * An icon effect to paint all icons in two chosen colors, converting third party application icons into high contrast monochrome icons * Akregator allows you to read news from your favourite RSS-enabled websites in one application * Juk has now an album cover management via Google Image Search * KMail now stores passwords securely with KWallet * SVG files can now be used as wallpapers * KHTML plug-ins are now configurable, so the user can selectively disable ones that are not used. This does not include Netscape-style plug-ins. Netscape plug-in in CPU usage can be manually lowered, and plug-ins are more stable. * more than 6,500 bugs have been fixed * more than 1,700 wishes have been fullfilled * more than 80,000 contributions with several million lines of code and documentation added or changed
2005-03-17Fix some security issues with dcop, docpidlng and IDN's in Konqueror.markd8-3/+197
See http://www.kde.org/info/security/advisory-20050316-1.txt http://www.kde.org/info/security/advisory-20050316-2.txt http://www.kde.org/info/security/advisory-20050316-3.txt Bump PKGREVISION.
2005-03-06$PKG_SYSCONFDIR support from Jeremy C. Reed with minor changes from me.markd5-12/+49
Bump PKG_REVISION.
2005-02-23Add RMD160 checksums to the SHA1 ones.wiz1-1/+2
2005-01-31Remove USE_CUPS test, its now in mk/defaults/obsolete.mkmarkd1-5/+1
2005-01-17Placate pkglint: use tabs instead of spaces.seb1-2/+2
2005-01-05The FTP kioslave can be misused to execute any ftp command on themarkd3-3/+23
server or be a vector for sending out unsolicited email. http://www.kde.org/info/security/advisory-20050101-1.txt Bump PKGREVISION.
2005-01-05patch from KDE_3_3_BRANCH to stop SIGBUS on Solaris during URLmarkd3-11/+27
completion. Bump PKGREVISION.
2004-12-28Bump PKGREVISIONs due to libtiff update.reed2-4/+4
Some BUILDLINK_RECOMMENDED bumps done also. (If I missed any, please let me know -- and let me know a good way to automate this.)
2004-12-24Bump PKGREVISION for aspell dependency update.wiz1-2/+2
2004-12-14Part of fix of Konqueror Window Injection Vulnerability.markd3-3/+27
From http://www.kde.org/info/security/advisory-20041213-1.txt. Bump PKGREVISION.
2004-12-14On pkg_delete MAKE_DIRS wont remove directories that on package creationmarkd1-40/+43
some other step already created before it tried to, so explicitly dirrm them.
2004-12-11I missed this file in my update yesterday.markd1-2/+2
2004-12-10Update to kde 3.3.2markd6-273/+388
Changes: * kdecore: recognize known names for the MacRoman charset * khtml: only disallow fixed positioning on body, not relative/absolute * khtml: added Javascript-support for HTMLDocument.compatMode * khtml: fixed textarea manipulation by DOM * khtml: paged media support (page-break-before and -after) * khtml: correctly handle text-transform on first-letter * khtml: fixed display: block on pseudo-elements * khtml: return Undefined instead of Null for out-of-range indices * khtml: fixed stopPropagation when called from the target node itself * khtml: fixed htmlCompat mode for documents served as text/html * khtml: fixed display: compact * khtml: support z-order for text areas and list boxes * khtml: don't set assume <select> got items when we calculate a height for items * khtml: changed default horizontal margins for H1-H6 from auto to 0 * khtml: escape otherwise unencodable characters in form submits * khtml: merged min,max-height fixes * khtml: merged handling of event handlers * khtml: implemented CSS 2.1 compliant parsing of background-position * khtml: fixed m_value vs ATTR_VALUE problem which didn't allow sending mail on gmail * khtml: make use of the suggested filename for images * khtml: tons of bidi fixes * khtml: enable strict CSS parsing also for transitional doctypes * khtml: ignore height element for input elements that are not image * khtml: form widget fixes for plastik (and others) * khtml: make sure we are layouted before scrolling if we are still loading * khtml: add compensated font scale from Todd Fahrner's "Toward a standard font size interval system" * khtml: avoid triggering full repaints of the view before the first layout is done * khtml: implement CSS3 property box-sizing to match MacIE, Opera and Mozilla * khtml: fix globeandmail.com famlily of crashes * khtml: floats and flowing around floats improvements * khtml: fix textarea scrolling positions * khtml: tons of fixes for tables * khtml: remove hidden widgets from the painting * khtml: avoid crashes on XML documents * khtml: ignore relative positioning on table sections * khtml: fix static position calculation for positioned elements * khtml: support insertAdjacentHTML * khtml: fix crash in sites manipulating frames * khtml: async kwallet support * khtml: fix selectorText() when no namespace is specified * khtml: update the layout before fetching the computed values * khtml: color 'http://foo' links as visited if 'http://foo/' is in history * khtml: corrected ref-counting error leading to segfault/invalid memory usage * khtml: fixed some memory corruptions with garbage HTML * khtml: account for scrollbar height when sizing variable overflow:scroll/auto boxes
2004-11-18More duplicate dirrm cleanup.markd1-1/+6