Commit graph

59 commits

Author SHA1 Message Date
adam
3f2cc57b2b Revbump after updating graphics/pango 2012-10-08 23:00:34 +00:00
tron
14215633d2 Mass recursive bump after the dependence fix of the "cairo" package
requested by Thomas Klausner.
2012-10-02 17:10:28 +00:00
obache
c38c120ee5 recursive bump from libffi shlib major bump
(additionaly, reset PKGREVISION of qt4-* sub packages from base qt4 update)
2012-09-15 10:03:29 +00:00
adam
b15c922bcc Revbump after updating graphics/cairo 2012-09-07 19:16:05 +00:00
markd
04bbf44c3e Correctly detect sockaddr_in6 on NetBSD. 2012-07-07 11:52:29 +00:00
joerg
32438d41f2 Try to fix cmake syntax error when building with clang.
XXX ipv6 detection is still broken
2012-07-05 18:48:33 +00:00
markd
e43be93ef2 Update to KDE SC 4.8.4
Bug fixes.
2012-06-16 04:45:28 +00:00
sbd
21792a9296 Recursive PKGREVISION bump for libxml2 buildlink addition. 2012-06-14 07:43:06 +00:00
dholland
7e751949e4 Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=)
It turns out there were a lot of these.
2012-05-07 01:53:12 +00:00
joerg
4ff331d104 Fix C++ syntax 2012-04-19 21:10:59 +00:00
markd
cbc4db0822 Update KDE SC to 4.8.2
bugfixes.
2012-04-15 05:54:50 +00:00
markd
3f1b0f358e fix mkspecs/default link to point to correct directory rather than
assuming netbsd-g++
2012-04-02 10:23:48 +00:00
dholland
09b61bd066 Fix from Mark Davies for building with non-default PREFIX. 2012-04-02 10:09:06 +00:00
hans
8115479112 Restore the fixes needed to build this on SunOS. 2012-03-31 21:46:55 +00:00
markd
c0befdc436 Detect the version of recent xine's that have moved the version number
macros to xine/version.h
2012-03-22 22:08:29 +00:00
markd
7dc26cd64b Update to KDE SC 4.8.0 2012-03-19 11:28:48 +00:00
wiz
ee311e3b36 Recursive bump for pcre-8.30* (shlib major change) 2012-03-03 00:11:51 +00:00
wiz
fb1a8e5414 Revbump for
a) tiff update to 4.0 (shlib major change)
b) glib2 update 2.30.2 (adds libffi dependency to buildlink3.mk)

Enjoy.
2012-02-06 12:41:29 +00:00
joerg
a79755bce6 Add some missing includes to ensure dependent type / friend declarations
are present.
2012-01-23 08:14:02 +00:00
markd
baf560d389 Dependency on libdbusmenu-qt came in with David's backported qt4.8
patches.  Add to buildlink3.mk as well.
2012-01-21 20:37:33 +00:00
abs
73c57ca979 Pull across (modified) patch for qt-4.8 from wip/kdelibs4. PKGREVISION++ 2012-01-18 22:03:23 +00:00
obache
615c758c19 Recursive bump from audio/libaudiofile, x11/qt4-libs and x11/qt4-tools ABI bump. 2012-01-13 10:54:43 +00:00
wiz
bfa838ae8c Fix previous. 2011-11-30 09:21:39 +00:00
hans
0defab3130 Fix build on SunOS. 2011-11-29 18:12:12 +00:00
markd
e41cf2ea47 don't interpret html tags. KDE Security Advisory 20111003-1 2011-11-20 02:08:10 +00:00
hans
700c143c97 Fix build on SunOS with gcc 4.6. 2011-11-01 15:55:12 +00:00
sbd
04daa2f1b8 Recursive bump for graphics/freetype2 buildlink addition. 2011-11-01 06:00:33 +00:00
markd
d6a8cac27a Revert to previous way of specifying docbook-{xml,xsl} dependencies.
buildlink was causing a work-directory path to remain in the installed
package.
2011-09-29 19:31:58 +00:00
markd
eddf606df8 Use buildlink3.mk files for the dependencies on docbook-xml and
docbook-xsl to fix build with latest cmake infrastructure.

Also fix locating rgb.txt.
2011-09-27 10:48:20 +00:00
abs
090458d352 the taglib check fails as it does not pass 1.10 as later than 1.4.
let pkgsrc handle the version check
bump pkgrevision
2011-06-04 16:31:52 +00:00
obache
1d9df3258a recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
markd
7ad1bf5248 Fix for CVE-2011-1168. 2011-04-11 10:11:42 +00:00
drochner
459d63feeb libungif/buildlink3.mk -> mk/giflib.buildlink3.mk
(uses giflib now per default)
bump PKGREV
2011-03-09 16:29:23 +00:00
markd
2d92c179cd Update to KDE SC 4.5.5
bugfixes and translation updates
2011-01-23 07:55:12 +00:00
wiz
af3596f984 png shlib name changed for png>=1.5.0, so bump PKGREVISIONs. 2011-01-13 13:36:05 +00:00
dsainty
1f40f3a084 Mechanically replace references to graphics/jpeg with the suitable
alternative from mk/jpeg.buildlink3.mk

This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).

The mechanical edits were applied via the following script:

#!/bin/sh
for d in */*; do
  [ -d "$d" ] || continue
  for i in "$d/"Makefile* "$d/"*.mk; do
    case "$i" in *.orig|*"*"*) continue;; esac
    out="$d/x"
    sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
        -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
        < "$i" > "$out"
    if cmp -s "$i" "$out"; then
      rm -f "$out"
    else
      echo "Edited $i"
      mv -f "$i" "$i.orig" && mv "$out" "$i"
    fi
  done
done
2010-12-23 11:44:24 +00:00
markd
c92ceaebe1 Update to KDE SC 4.5.4
4.5.4 brings bugfixes and translation updates
2010-12-06 11:43:38 +00:00
abs
9987fa4b3a PKGREVISION bumps for changes to gtk2, librsvg, libbonobo and libgnome 2010-11-15 22:56:08 +00:00
markd
113e1423ce Make sure it uses the correct liblzma 2010-11-10 10:14:42 +00:00
markd
d219d2320d Update to KDE SC 4.5.3
4.5.3 brings a number of improvements:

    * KSharedDataCache has cache invalidation bug fixed that caused stability
           when daylight saving time changed.
    * Icon overlays in Dolphin are now positioned correctly after adjusting
      the zoom level.
    * Okular, KDE's universal document viewer has seen improvements in the
      DjVu and XPS backends.
2010-11-03 20:07:33 +00:00
markd
2afa7e9d9c Note dependency on docbook-xml and docbook-xsl and rework the handling
of the lack of pthread_mutexattr_setpshared() on NetBSD. Bump PKGREVISION
2010-10-26 11:46:57 +00:00
markd
547720d8ee Update to KDE SC 4.5.2
4.5.2
translation updates, performance and stability improvements and other
bugfixes.

4.5.0
new versions of the Plasma Workspaces, the KDE Applications and the KDE
Development Platform in version 4.5.0. While focus within this release
cycle lay on stability, the overall polish and performance gain is well
noticable. Features such as the reworked notification area, Marble's map
routing and support for WebKit in Konqueror round up this release.
2010-10-25 20:55:22 +00:00
wiz
200e3c4a04 Bump dependency on pixman to 0.18.4 because cairo-1.10 needs that
version, and bump all depends.

Per discussion on pkgsrc-changes.
2010-09-14 11:00:44 +00:00
sbd
d823d74afa Recursive PKGREVISION bump for the net/mDNSResponder update 2010-07-14 11:11:13 +00:00
markd
b1a20e5a84 Update to KDE SC 4.4.5.
Several bugs in encoding and refreshing in Konsole have been fixed
A couple of crashes in Okular's PDF viewer have been fixed
Alarms have received some fixes in KDE PIM
The changelog lists more, if not all improvements since KDE SC 4.4.4.
2010-07-04 11:02:32 +00:00
wiz
e8d8834f6a Bump PKGREVISION for libpng shlib name change.
Also add some patches to remove use of deprecated symbols and fix other
problems when looking for or compiling against libpng-1.4.x.
2010-06-13 22:43:46 +00:00
markd
7e872919f7 Include sys/mmap.h for mmap(), not just posix_madvise().
Should fix PR pkg/42825. No PKGREVISION bump required as either
package didn't build previously or no change to binary package.
2010-06-06 22:44:02 +00:00
markd
0c9976ffdf Update to KDE SC 4.4.4
* Several bugs in filename sorting in the Dolphin file manager have been
  fixed
* Issues with encoded filenames in ZIP archives have been fixed
* A number of bugs in games, such as KMines, KNetwalk and LSkat and
  KSpaceDuel have been fixed
The changelog lists more
2010-06-02 10:14:14 +00:00
markd
5f15c1e399 Update to KDE SC 4.4.3
Numerous fixes in Konsole, KDE's terminal emulator, among them two possible
crashers in session management
Flash plugin support in KHTML has been enhanced to work with newest Youtube
skins
Case-sensitivity in renaming fixes in KIO, KDE's network-transparent I/O
library
Hiding the mouse cursor in some special cases in presentation mode and two
possible crashers have been fixed
2010-05-08 22:13:56 +00:00
markd
767e2e9123 Fix perl path in plasma_popupapplet_fix_groups.pl (it moved location
in the tree).  Bump PKGREVISION.
2010-04-12 08:05:41 +00:00