diff options
author | markd <markd@pkgsrc.org> | 2011-01-20 12:05:56 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2011-01-20 12:05:56 +0000 |
commit | ab2a417f019106db2f1c8d2a11e1177ccfe8ad3d (patch) | |
tree | c50d8a926c318739bbda0a5023ee2707b3335754 /misc | |
parent | bc433a8fbd976888414624d756fbc272e34791b6 (diff) | |
download | pkgsrc-ab2a417f019106db2f1c8d2a11e1177ccfe8ad3d.tar.gz |
fix build with gcc4.4.
explicitly dont compile kdat (otherwise PLIST wont match on linux)
Diffstat (limited to 'misc')
-rw-r--r-- | misc/kdeadmin3/Makefile | 6 | ||||
-rw-r--r-- | misc/kdeadmin3/distinfo | 3 | ||||
-rw-r--r-- | misc/kdeadmin3/patches/patch-ab | 13 |
3 files changed, 18 insertions, 4 deletions
diff --git a/misc/kdeadmin3/Makefile b/misc/kdeadmin3/Makefile index c78d67f4234..143e8e03315 100644 --- a/misc/kdeadmin3/Makefile +++ b/misc/kdeadmin3/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.51 2011/01/13 13:38:47 wiz Exp $ +# $NetBSD: Makefile,v 1.52 2011/01/20 12:05:56 markd Exp $ DISTNAME= kdeadmin-${_KDE_VERSION} -PKGREVISION= 7 +PKGREVISION= 6 CATEGORIES= misc COMMENT= System administration tools for the KDE integrated X11 desktop @@ -16,7 +16,7 @@ CONFIGURE_ARGS+= --with-shadow .else CONFIGURE_ARGS+= --without-shadow .endif -CONFIGURE_ENV+= DO_NOT_COMPILE=ksysv +CONFIGURE_ENV+= DO_NOT_COMPILE="ksysv kdat" .include "../../meta-pkgs/kde3/kde3.mk" .include "../../graphics/hicolor-icon-theme/buildlink3.mk" diff --git a/misc/kdeadmin3/distinfo b/misc/kdeadmin3/distinfo index ffb3c2a7b55..b66d5206876 100644 --- a/misc/kdeadmin3/distinfo +++ b/misc/kdeadmin3/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.37 2008/08/27 12:19:29 markd Exp $ +$NetBSD: distinfo,v 1.38 2011/01/20 12:05:56 markd Exp $ SHA1 (kdeadmin-3.5.10.tar.bz2) = 952e9ba9bbd6b92e3a5a4a34fe3a78d7d41bc719 RMD160 (kdeadmin-3.5.10.tar.bz2) = f271d929752c8927546261184ee905094e8ae3c9 Size (kdeadmin-3.5.10.tar.bz2) = 2124067 bytes SHA1 (patch-aa) = fdb705f78c783b4210804c8214998ea83e09f9ac +SHA1 (patch-ab) = 9584b66e06f30580091da2d55f2593750663e553 diff --git a/misc/kdeadmin3/patches/patch-ab b/misc/kdeadmin3/patches/patch-ab new file mode 100644 index 00000000000..746281763b4 --- /dev/null +++ b/misc/kdeadmin3/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.5 2011/01/20 12:05:57 markd Exp $ + +--- kpackage/packageDisplay.cpp.orig 2005-10-10 14:53:28.000000000 +0000 ++++ kpackage/packageDisplay.cpp +@@ -389,7 +389,7 @@ void packageDisplayWidget::updateFileLis + KURL url; + if (package && package->packageState == packageInfo::INSTALLED) { + url.setPath( fileList->item2Path(index) ); // from local file to URL +- KRun::displayOpenWithDialog(KURL::List::List(url) ); ++ KRun::displayOpenWithDialog(KURL::List(url) ); + } + } + |