1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-30 05:40:06 +00:00

The KDE FreeBSD team is proud to announce the release of KDE 4.1.0

for FreeBSD. The official KDE 4.1.0 release notes can be found at
http://www.kde.org/announcements/4.1/.

Some note:

* Prefix
KDE4 will be install into a custom prefixes namely ${LOCALBASE}/kde4.
KDE4 and KDE3 can co-exist

* Sound
For sound to work, it is necessary to have dbus and hal enabled
in your system. Please see the respective documentation on how
to enable these.

For more Informations see the HEADS UP at ports@ and kde-freebsd@
or our wiki page http://wiki.freebsd.org/KDE4/Install.

Have fun!
This commit is contained in:
Martin Wilke 2008-08-09 16:52:28 +00:00
parent bdcf355d6d
commit 568f8e877f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=218272
564 changed files with 59668 additions and 92535 deletions

View File

@ -3,27 +3,63 @@
#
# $FreeBSD$
#
# Please view me with 4 column tabs!
.if !defined(_POSTMKINCLUDED) && !defined(Kde_Pre_Include)
# Please make sure all changes to this file are past through the maintainer.
# Do not commit them yourself (unless of course you're the Port's Wraith ;).
KDE_MAINTAINER= kde@FreeBSD.org
Kde_Pre_Include= bsd.kde4.mk
Kde_Include_MAINTAINER= kde@FreeBSD.org
# This section contains the USE_ definitions.
# XXX: Write HAVE_ definitions sometime.
#
# This file contains some variable definitions that are supposed to
# make your life easier when dealing with ports related to the KDE4
# desktop environment. It's automatically included when USE_KDE4
# is defined in the ports' makefile.
#
# KDE4 related ports can use this as follows:
#
# USE_KDE4= kdehier kdeprefix kdelibs
# USE_QT_VER= 4
# QT_COMPONENTS=corelib #set additional qt4 components here
#
# .include <bsd.port.mk>
#
# Available KDE4 components are:
#
# akonadi - Akonadi PIM storage service
# automoc4 - automoc4 tool
# kdebase - Basic KDE applications (Konqueror, Dolphin)
# kdehier - Provides common KDE directories
# kdelibs - The base set of KDE4 libraries
# kdeprefix - If set, port will be installed into ${KDE4_PREFIX} instead of ${LOCALBASE}
# pimlibs - KDE4 PIM libraries
# runtime - More KDE applications
# sharedmime - share-mime-info wrapper for KDE4 ports
# workspace - More KDE applications (Plasma, kwin, etc.)
#
# These read-only variables can be used in port Makefile:
#
# MASTER_SITE_KDE_kde
# - MASTER_SITE_KDE_kde is equivalent to MASTER_SITE_KDE
# with :kde tag. It could be used when port needs multiple
# distfiles from different sites. See for details porters-handbook:
# http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/makefile-distfiles.html
# KDE4_PREFIX - The place where KDE4 ports live. Currently it is {LOCALBASE}/kde4,
# but this could be changed in a future.
#
# USE_QT_VER - Says that the port uses the Qt toolkit. Possible values:
# 3, 4; each specify the major version of Qt to use.
# Note: 4 is handled by bsd.qt.mk.
# USE_KDELIBS_VER - Says that the port uses KDE libraries. Possible values:
# 3 specifies the major version of KDE to use.
# This implies USE_QT of the appropriate version.
# USE_KDEBASE_VER - Says that the port uses the KDE base. Possible values:
# 3 specifies the major version of KDE to use.
# This implies USE_KDELIBS of the appropriate version.
KDE4_VERSION= 4.1.0
# tagged MASTER_SITE_KDE_kde
kmaster= ${MASTER_SITE_KDE:S@%/@%/:kde@g}
#
# KDE4 is installed into its own prefix to not conflict with KDE3
#
KDE4_PREFIX?= ${LOCALBASE}/kde4
#
# Tagged MASTER_SITE_KDE
#
kmaster= ${MASTER_SITE_KDE:S@%/@%/:kde@g}
.if !defined(MASTER_SITE_SUBDIR)
MASTER_SITE_KDE_kde= ${kmaster:S@%SUBDIR%/@@g}
.else
@ -31,128 +67,72 @@ ksub=${MASTER_SITE_SUBDIR}
MASTER_SITE_KDE_kde= ${kmaster:S@%SUBDIR%/@${ksub}/@g}
.endif # !defined(MASTER_SITE_SUBDIR)
# USE_KDEBASE_VER section
.if defined(USE_KDEBASE_VER)
.if ${USE_KDEBASE_VER} == CVS
LIB_DEPENDS+= kfontinst:${PORTSDIR}/x11/kdebase
USE_KDELIBS_VER=CVS
.elif ${USE_KDEBASE_VER} == 3
# kdebase 3.x common stuff
LIB_DEPENDS+= kfontinst:${PORTSDIR}/x11/kdebase3
USE_KDELIBS_VER=3
.endif # ${USE_KDEBASE_VER} == 3
.endif # defined(USE_KDEBASE_VER)
#
# KDE4 modules
#
_USE_KDE4_ALL= akonadi automoc4 kdebase kdehier kdelibs kdeprefix \
pimlibs runtime sharedmime workspace
# USE_KDELIBS_VER section
.if defined(USE_KDELIBS_VER)
akonadi_LIB_DEPENDS= akonadiprotocolinternals.1:${PORTSDIR}/databases/akonadi
## This is needed for configure scripts to figure out
## which threads lib to use
automoc4_BUILD_DEPENDS= ${KDE4_PREFIX}/bin/automoc4:${PORTSDIR}/devel/automoc4
CONFIGURE_ENV+= PTHREAD_LIBS="${PTHREAD_LIBS}"
kdebase_LIB_DEPENDS= konq.7:${PORTSDIR}/x11/kdebase4
## Every KDE application is inherently IPv6-capable
kdehier_RUN_DEPENDS= kdehier4>=1:${PORTSDIR}/misc/kdehier4
CATEGORIES+=ipv6
kdelibs_LIB_DEPENDS= kimproxy.5:${PORTSDIR}/x11/kdelibs4
kdeprefix_PREFIX= ${KDE4_PREFIX}
pimlibs_LIB_DEPENDS= kpimutils.5:${PORTSDIR}/deskutils/kdepimlibs4
runtime_BUILD_DEPENDS= ${KDE4_PREFIX}/bin/kdebugdialog:${PORTSDIR}/x11/kdebase4-runtime
runtime_RUN_DEPENDS= ${KDE4_PREFIX}/bin/kdebugdialog:${PORTSDIR}/x11/kdebase4-runtime
sharedmime_BUILD_DEPENDS= kde4-shared-mime-info>=1:${PORTSDIR}/misc/kde4-shared-mime-info
sharedmime_RUN_DEPENDS= kde4-shared-mime-info>=1:${PORTSDIR}/misc/kde4-shared-mime-info
workspace_LIB_DEPENDS= kscreensaver.5:${PORTSDIR}/x11/kdebase4-workspace
## XXX - This really belongs into bsd.port.mk
.if !defined(_NO_KDE_CONFTARGET_HACK)
CONFIGURE_TARGET=
CONFIGURE_ARGS+=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} \
--x-libraries=${LOCALBASE}/lib --x-includes=${LOCALBASE}/include \
--disable-as-needed
.endif
.if ${USE_KDELIBS_VER} == CVS
LIB_DEPENDS+= kimproxy:${PORTSDIR}/x11/kdelibs
USE_QT_VER= CVS
PREFIX= ${KDE_CVS_PREFIX}
.elif ${USE_KDELIBS_VER} == 3
# kdelibs 3.x common stuff
LIB_DEPENDS+= kimproxy:${PORTSDIR}/x11/kdelibs3
USE_QT_VER= 3
PREFIX= ${KDE_PREFIX}
.else
IGNORE= cannot install: unsupported value in USE_KDELIBS_VER
.endif # ${USE_KDELIBS_VER} == 3
.endif # defined(USE_KDELIBS_VER)
.if defined(_POSTMKINCLUDED) && !defined(Kde_Post_Include)
# End of USE_KDELIBS_VER section
Kde_Post_Include= bsd.kde4.mk
# USE_QT_VER section
.if ${USE_QT_VER} == CVS
.for component in ${USE_KDE4}
. if ${_USE_KDE4_ALL:M${component}}!=""
BUILD_DEPENDS+= ${${component}_BUILD_DEPENDS}
LIB_DEPENDS+= ${${component}_LIB_DEPENDS}
RUN_DEPENDS+= ${${component}_RUN_DEPENDS}
. if defined(${component}_PREFIX)
. if ${.MAKEFLAGS:MPREFIX=*}==""
PREFIX= ${${component}_PREFIX}
. if ${KDE4_PREFIX} != ${LOCALBASE}
NO_MTREE= yes
. endif
. endif
. endif
. else
IGNORE= cannot install: Unknown component ${component}
. endif
.endfor
KDE_CVS_PREFIX?= ${LOCALBASE}/kde-cvs
QT_CVS_PREFIX?= ${LOCALBASE}/qt-cvs
QTCPPFLAGS?=
QTCFGLIBS?=
#
# Common build related stuff for kde4 ports. It's not intended for usage
# in KDE4-dependent ports
#
.if defined(KDE4_BUILDENV)
USE_CMAKE= yes
CMAKE_DEBUG= yes
CMAKE_VERBOSE= yes
USE_LDCONFIG= ${KDE4_PREFIX}/lib ${KDE4_PREFIX}/lib/kde4
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/build
CMAKE_SOURCE_PATH= ..
.endif # KDE4_BUILDENV
MOC?= ${QT_CVS_PREFIX}/bin/moc
BUILD_DEPENDS+= ${MOC}:${PORTSDIR}/x11-toolkits/qt-copy
RUN_DEPENDS+= ${MOC}:${PORTSDIR}/x11-toolkits/qt-copy
QTCPPFLAGS+= -D_GETOPT_H # added to work around broken getopt.h #inc
.if !defined (QT_NONSTANDARD)
CONFIGURE_ARGS+=--with-extra-libs="${LOCALBASE}/lib" \
--with-extra-includes="${LOCALBASE}/include"
CONFIGURE_ENV+= MOC="${MOC}" CPPFLAGS="${CPPFLAGS} ${QTCPPFLAGS}" LIBS="${QTCFGLIBS}" \
QTDIR="${QT_CVS_PREFIX}" KDEDIR="${KDE_CVS_PREFIX}"
.endif
.elif ${USE_QT_VER} == 3
# Yeah, it's namespace pollution, but this is really the best place for this
# stuff. Arts does NOT use it anymore.
KDE_VERSION= 3.5.8
KDE_ORIGVER= ${KDE_VERSION}
KDE_PREFIX?= ${LOCALBASE}
QTCPPFLAGS?=
QTCGFLIBS?=
# Qt 3.x common stuff
QT_PREFIX?= ${LOCALBASE}
MOC?= ${QT_PREFIX}/bin/moc
#LIB_DEPENDS+= qt-mt.3:${PORTSDIR}/x11-toolkits/qt33
BUILD_DEPENDS+= ${QT_PREFIX}/bin/moc:${PORTSDIR}/x11-toolkits/qt33
RUN_DEPENDS+= ${QT_PREFIX}/bin/moc:${PORTSDIR}/x11-toolkits/qt33
QTCPPFLAGS+= -I${LOCALBASE}/include -I${PREFIX}/include \
-I${QT_PREFIX}/include -D_GETOPT_H
QTCFGLIBS+= -Wl,-export-dynamic -L${LOCALBASE}/lib -ljpeg \
-L${QT_PREFIX}/lib
.if defined(PACKAGE_BUILDING)
TMPDIR?= /tmp
MAKE_ENV+= TMPDIR="${TMPDIR}"
CONFIGURE_ENV+= TMPDIR="${TMPDIR}"
.endif
.if !defined(QT_NONSTANDARD)
CONFIGURE_ARGS+=--with-qt-includes=${QT_PREFIX}/include \
--with-qt-libraries=${QT_PREFIX}/lib \
--with-extra-libs=${LOCALBASE}/lib \
--with-extra-includes=${LOCALBASE}/include
CONFIGURE_ENV+= MOC="${MOC}" CPPFLAGS="${CPPFLAGS} ${QTCPPFLAGS}" LIBS="${QTCFGLIBS}" \
QTDIR="${QT_PREFIX}" KDEDIR="${KDE_PREFIX}"
.endif # !defined(QT_NONSTANDARD)
.else
IGNORE= cannot install: unsupported value of USE_QT_VER
.endif # defined(USE_QT_VER)
# End of USE_QT_VER section
# Assemble plist from parts
# <alane@freebsd.org> 2002-12-06
.if defined(KDE_BUILD_PLIST)
PLIST?= ${WRKDIR}/plist
PLIST_BASE?= plist.base
PLIST_APPEND?=
plist_base=${FILESDIR}/${PLIST_BASE}
plist_base_rm=${FILESDIR}/${PLIST_BASE}.rm
plist_append=${PLIST_APPEND:C:([A-Za-z0-9._]+):${FILESDIR}/\1:}
plist_append_rm=${PLIST_APPEND:C:([A-Za-z0-9._]+):${FILESDIR}/\1.rm:}
kde-plist:
${CAT} ${plist_base} ${plist_append} 2>/dev/null >${PLIST}
-${CAT} ${plist_append_rm} ${plist_base_rm} 2>/dev/null >>${PLIST};true
.PHONY: kde-plist
pre-build: kde-plist
.endif # defined(KDE_BUILD_PLIST)

View File

@ -461,10 +461,15 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org
# USE_KDELIBS_VER - Set to 3 to use the KDE libraries.
# Implies inclusion of bsd.kde.mk.
#
# USE_KDE4 - A list of the KDE4 dependencies the port has (e.g.,
# kdelibs, kdebase). Implies that the port needs KDE.
# Implies inclusion of bsd.kde4.mk. See bsd.kde4.mk
# for more details.
#
# USE_QT_VER - Set to 3 or 4 to use the respective version
# of the QT libraries.
# Implies inclusion of bsd.kde.mk.
##
#
# USE_LINUX - Set to yes to say the port needs the default linux base port.
# Set to value <X>, if the port needs emulators/linux_base-<X>.
# If set to "7", a dependency is registered to emulators/linux_base.
@ -1527,6 +1532,10 @@ PERL= ${LOCALBASE}/bin/perl
.include "${PORTSDIR}/Mk/bsd.xfce.mk"
.endif
.if defined(USE_KDE4) || defined(KDE4_BUILDENV)
.include "${PORTSDIR}/Mk/bsd.kde4.mk"
.endif
# You can force skipping these test by defining IGNORE_PATH_CHECKS
.if !defined(IGNORE_PATH_CHECKS)
.if (${PREFIX:C,(^.).*,\1,} != "/")
@ -2004,6 +2013,10 @@ PLIST_SUB+= PERL_VERSION=${PERL_VERSION} \
.include "${PORTSDIR}/Mk/bsd.xfce.mk"
.endif
.if defined(USE_KDE4)
.include "${PORTSDIR}/Mk/bsd.kde4.mk"
.endif
.if defined(USE_CMAKE)
.include "${PORTSDIR}/Mk/bsd.cmake.mk"
.endif

View File

@ -19,6 +19,7 @@
SUBDIR += gok
SUBDIR += java-access-bridge
SUBDIR += kdeaccessibility
SUBDIR += kdeaccessibility4
SUBDIR += linux-atk
SUBDIR += mousetweaks
SUBDIR += orca

View File

@ -1,28 +1,30 @@
# New ports collection makefile for: kdeaccessibility
# Date created: 19 Jan 2004 18:40:32 EST
# Whom: Will Andrews <will@FreeBSD.org>
# New ports collection Makefile for: kdeaccessibility
# Date created: 2008-01-31
# Whom: Martin Wilke <miwi@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= kdeaccessibility
PORTVERSION= ${KDE_VERSION}
PORTREVISION= 1
PORTVERSION= ${KDE4_VERSION}
CATEGORIES= accessibility kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
COMMENT= Accessibility applications for KDE
COMMENT= Accessibility applications for KDE4
USE_KDELIBS_VER=3
PREFIX= ${KDE_PREFIX}
LATEST_LINK= ${PORTNAME}4
USE_KDE4= kdelibs workspace kdeprefix kdehier automoc4
KDE4_BUILDENV= yes
USE_BZIP2= yes
USE_AUTOTOOLS= libtool:15
USE_GMAKE= yes
USE_QT_VER= 4
QT_COMPONENTS= opengl gui moc rcc uic
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
CMAKE_ARGS+= -DKDE4_KTTSD_ALSA:BOOL=OFF
post-extract:
${MKDIR} ${WRKSRC}
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (KDE/kdeaccessibility-3.5.8.tar.bz2) = 0ede2d48df626aa436dbe6c741d575f1
SHA256 (KDE/kdeaccessibility-3.5.8.tar.bz2) = 1b888b1c9c5196a7ef2aac3fcd18e5e013fb5576ed5d7f98a829f9a0ac9b65ac
SIZE (KDE/kdeaccessibility-3.5.8.tar.bz2) = 8749116
MD5 (KDE/kdeaccessibility-4.1.0.tar.bz2) = 7d53001b2db8d7d8bd82a63e8be882ae
SHA256 (KDE/kdeaccessibility-4.1.0.tar.bz2) = 9a58e4046f5ef885ad2d0052e2ccf1e2a6ea97a64646d3bc637824710a3d8abc
SIZE (KDE/kdeaccessibility-4.1.0.tar.bz2) = 6372084

View File

@ -1,4 +1,4 @@
This port contains a set of KDE-based applications for
accessibility needs.
WWW: http://www.kde.org/
WWW: http://www.kde.org/

File diff suppressed because it is too large Load Diff

View File

@ -1,28 +1,30 @@
# New ports collection makefile for: kdeaccessibility
# Date created: 19 Jan 2004 18:40:32 EST
# Whom: Will Andrews <will@FreeBSD.org>
# New ports collection Makefile for: kdeaccessibility
# Date created: 2008-01-31
# Whom: Martin Wilke <miwi@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= kdeaccessibility
PORTVERSION= ${KDE_VERSION}
PORTREVISION= 1
PORTVERSION= ${KDE4_VERSION}
CATEGORIES= accessibility kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
COMMENT= Accessibility applications for KDE
COMMENT= Accessibility applications for KDE4
USE_KDELIBS_VER=3
PREFIX= ${KDE_PREFIX}
LATEST_LINK= ${PORTNAME}4
USE_KDE4= kdelibs workspace kdeprefix kdehier automoc4
KDE4_BUILDENV= yes
USE_BZIP2= yes
USE_AUTOTOOLS= libtool:15
USE_GMAKE= yes
USE_QT_VER= 4
QT_COMPONENTS= opengl gui moc rcc uic
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
CMAKE_ARGS+= -DKDE4_KTTSD_ALSA:BOOL=OFF
post-extract:
${MKDIR} ${WRKSRC}
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (KDE/kdeaccessibility-3.5.8.tar.bz2) = 0ede2d48df626aa436dbe6c741d575f1
SHA256 (KDE/kdeaccessibility-3.5.8.tar.bz2) = 1b888b1c9c5196a7ef2aac3fcd18e5e013fb5576ed5d7f98a829f9a0ac9b65ac
SIZE (KDE/kdeaccessibility-3.5.8.tar.bz2) = 8749116
MD5 (KDE/kdeaccessibility-4.1.0.tar.bz2) = 7d53001b2db8d7d8bd82a63e8be882ae
SHA256 (KDE/kdeaccessibility-4.1.0.tar.bz2) = 9a58e4046f5ef885ad2d0052e2ccf1e2a6ea97a64646d3bc637824710a3d8abc
SIZE (KDE/kdeaccessibility-4.1.0.tar.bz2) = 6372084

View File

@ -1,4 +1,4 @@
This port contains a set of KDE-based applications for
accessibility needs.
WWW: http://www.kde.org/
WWW: http://www.kde.org/

File diff suppressed because it is too large Load Diff

View File

@ -1,28 +1,30 @@
# New ports collection makefile for: kdeaccessibility
# Date created: 19 Jan 2004 18:40:32 EST
# Whom: Will Andrews <will@FreeBSD.org>
# New ports collection Makefile for: kdeaccessibility
# Date created: 2008-01-31
# Whom: Martin Wilke <miwi@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= kdeaccessibility
PORTVERSION= ${KDE_VERSION}
PORTREVISION= 1
PORTVERSION= ${KDE4_VERSION}
CATEGORIES= accessibility kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
COMMENT= Accessibility applications for KDE
COMMENT= Accessibility applications for KDE4
USE_KDELIBS_VER=3
PREFIX= ${KDE_PREFIX}
LATEST_LINK= ${PORTNAME}4
USE_KDE4= kdelibs workspace kdeprefix kdehier automoc4
KDE4_BUILDENV= yes
USE_BZIP2= yes
USE_AUTOTOOLS= libtool:15
USE_GMAKE= yes
USE_QT_VER= 4
QT_COMPONENTS= opengl gui moc rcc uic
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
CMAKE_ARGS+= -DKDE4_KTTSD_ALSA:BOOL=OFF
post-extract:
${MKDIR} ${WRKSRC}
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (KDE/kdeaccessibility-3.5.8.tar.bz2) = 0ede2d48df626aa436dbe6c741d575f1
SHA256 (KDE/kdeaccessibility-3.5.8.tar.bz2) = 1b888b1c9c5196a7ef2aac3fcd18e5e013fb5576ed5d7f98a829f9a0ac9b65ac
SIZE (KDE/kdeaccessibility-3.5.8.tar.bz2) = 8749116
MD5 (KDE/kdeaccessibility-4.1.0.tar.bz2) = 7d53001b2db8d7d8bd82a63e8be882ae
SHA256 (KDE/kdeaccessibility-4.1.0.tar.bz2) = 9a58e4046f5ef885ad2d0052e2ccf1e2a6ea97a64646d3bc637824710a3d8abc
SIZE (KDE/kdeaccessibility-4.1.0.tar.bz2) = 6372084

View File

@ -1,4 +1,4 @@
This port contains a set of KDE-based applications for
accessibility needs.
WWW: http://www.kde.org/
WWW: http://www.kde.org/

File diff suppressed because it is too large Load Diff

View File

@ -1,28 +1,30 @@
# New ports collection makefile for: kdeaccessibility
# Date created: 19 Jan 2004 18:40:32 EST
# Whom: Will Andrews <will@FreeBSD.org>
# New ports collection Makefile for: kdeaccessibility
# Date created: 2008-01-31
# Whom: Martin Wilke <miwi@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= kdeaccessibility
PORTVERSION= ${KDE_VERSION}
PORTREVISION= 1
PORTVERSION= ${KDE4_VERSION}
CATEGORIES= accessibility kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
COMMENT= Accessibility applications for KDE
COMMENT= Accessibility applications for KDE4
USE_KDELIBS_VER=3
PREFIX= ${KDE_PREFIX}
LATEST_LINK= ${PORTNAME}4
USE_KDE4= kdelibs workspace kdeprefix kdehier automoc4
KDE4_BUILDENV= yes
USE_BZIP2= yes
USE_AUTOTOOLS= libtool:15
USE_GMAKE= yes
USE_QT_VER= 4
QT_COMPONENTS= opengl gui moc rcc uic
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
CMAKE_ARGS+= -DKDE4_KTTSD_ALSA:BOOL=OFF
post-extract:
${MKDIR} ${WRKSRC}
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (KDE/kdeaccessibility-3.5.8.tar.bz2) = 0ede2d48df626aa436dbe6c741d575f1
SHA256 (KDE/kdeaccessibility-3.5.8.tar.bz2) = 1b888b1c9c5196a7ef2aac3fcd18e5e013fb5576ed5d7f98a829f9a0ac9b65ac
SIZE (KDE/kdeaccessibility-3.5.8.tar.bz2) = 8749116
MD5 (KDE/kdeaccessibility-4.1.0.tar.bz2) = 7d53001b2db8d7d8bd82a63e8be882ae
SHA256 (KDE/kdeaccessibility-4.1.0.tar.bz2) = 9a58e4046f5ef885ad2d0052e2ccf1e2a6ea97a64646d3bc637824710a3d8abc
SIZE (KDE/kdeaccessibility-4.1.0.tar.bz2) = 6372084

View File

@ -1,4 +1,4 @@
This port contains a set of KDE-based applications for
accessibility needs.
WWW: http://www.kde.org/
WWW: http://www.kde.org/

File diff suppressed because it is too large Load Diff

View File

@ -1,28 +1,30 @@
# New ports collection makefile for: kdeaccessibility
# Date created: 19 Jan 2004 18:40:32 EST
# Whom: Will Andrews <will@FreeBSD.org>
# New ports collection Makefile for: kdeaccessibility
# Date created: 2008-01-31
# Whom: Martin Wilke <miwi@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= kdeaccessibility
PORTVERSION= ${KDE_VERSION}
PORTREVISION= 1
PORTVERSION= ${KDE4_VERSION}
CATEGORIES= accessibility kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
COMMENT= Accessibility applications for KDE
COMMENT= Accessibility applications for KDE4
USE_KDELIBS_VER=3
PREFIX= ${KDE_PREFIX}
LATEST_LINK= ${PORTNAME}4
USE_KDE4= kdelibs workspace kdeprefix kdehier automoc4
KDE4_BUILDENV= yes
USE_BZIP2= yes
USE_AUTOTOOLS= libtool:15
USE_GMAKE= yes
USE_QT_VER= 4
QT_COMPONENTS= opengl gui moc rcc uic
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
CMAKE_ARGS+= -DKDE4_KTTSD_ALSA:BOOL=OFF
post-extract:
${MKDIR} ${WRKSRC}
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (KDE/kdeaccessibility-3.5.8.tar.bz2) = 0ede2d48df626aa436dbe6c741d575f1
SHA256 (KDE/kdeaccessibility-3.5.8.tar.bz2) = 1b888b1c9c5196a7ef2aac3fcd18e5e013fb5576ed5d7f98a829f9a0ac9b65ac
SIZE (KDE/kdeaccessibility-3.5.8.tar.bz2) = 8749116
MD5 (KDE/kdeaccessibility-4.1.0.tar.bz2) = 7d53001b2db8d7d8bd82a63e8be882ae
SHA256 (KDE/kdeaccessibility-4.1.0.tar.bz2) = 9a58e4046f5ef885ad2d0052e2ccf1e2a6ea97a64646d3bc637824710a3d8abc
SIZE (KDE/kdeaccessibility-4.1.0.tar.bz2) = 6372084

View File

@ -1,4 +1,4 @@
This port contains a set of KDE-based applications for
accessibility needs.
WWW: http://www.kde.org/
WWW: http://www.kde.org/

File diff suppressed because it is too large Load Diff

View File

@ -1,50 +1,34 @@
# New ports collection makefile for: kdeutils3
# Date created: 3 November 2001
# Whom: will@cvs.kde.org
# New ports collection Makefile for: kdeutils
# Date created: 2008-01-31
# Whom: Martin Wilke <miwi@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= kdeutils
PORTVERSION= ${KDE_VERSION}
CATEGORIES?= misc kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src
PORTVERSION= ${KDE4_VERSION}
CATEGORIES= misc kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
DIST_SUBDIR= KDE
MAINTAINER?= kde@FreeBSD.org
COMMENT= Utilities for the KDE integrated X11 desktop
MAINTAINER= kde@FreeBSD.org
COMMENT= Utilities for the KDE4 integrated X11 Desktop
LIB_DEPENDS= gmp.7:${PORTSDIR}/math/libgmp4 \
netsnmp:${PORTSDIR}/net-mgmt/net-snmp
RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg
LIB_DEPENDS= gmp.7:${PORTSDIR}/math/libgmp4 \
netsnmp:${PORTSDIR}/net-mgmt/net-snmp \
qimageblitz.4:${PORTSDIR}/x11/qimageblitz \
zip.1:${PORTSDIR}/archivers/libzip
RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg
CONFLICTS= kgpg-[0-9]* superkaramba-[0-9]*
LATEST_LINK= ${PORTNAME}4
USE_KDELIBS_VER=3
USE_KDEBASE_VER=3
PREFIX= ${KDE_PREFIX}
USE_PYTHON= yes
USE_BZIP2= yes
USE_GMAKE= yes
USE_AUTOTOOLS= libtool:15
DO_NOT_COMPILE+=klaptopdaemon kmilo
CONFIGURE_ENV+= DO_NOT_COMPILE="${DO_NOT_COMPILE}"
CONFIGURE_ARGS+=--with-pythondir=${LOCALBASE}
USE_QT_VER= 4
KDE4_BUILDENV= yes
USE_KDE4= kdelibs pimlibs workspace kdeprefix kdehier automoc4
QT_COMPONENTS= network gui moc rcc uic porting xml
USE_LDCONFIG= yes
LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3
post-extract:
${MKDIR} ${WRKSRC}
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
.include <bsd.port.pre.mk>
.if ${OSVERSION} > 501102
. if ${OSVERSION} > 600021
RUN_DEPENDS+= gtar:${PORTSDIR}/archivers/gtar
. endif
post-patch:
${REINPLACE_CMD} -e 's|>tar<|>gtar<|g' ${WRKSRC}/ark/ark.kcfg
.endif
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (KDE/kdeutils-3.5.8.tar.bz2) = d1a0fcc83f35428a76cf7523a04ba19c
SHA256 (KDE/kdeutils-3.5.8.tar.bz2) = 7dcbe3361cc53f9dac4c1bf6f45952d3d2518bec56cd8c07b8e07b4c4f12d0ac
SIZE (KDE/kdeutils-3.5.8.tar.bz2) = 3059172
MD5 (KDE/kdeutils-4.1.0.tar.bz2) = 456d811618e5417e224476089df9a3b3
SHA256 (KDE/kdeutils-4.1.0.tar.bz2) = e004cc66372156a70be2291f68400fe0caa4ae821d70cd5ded5a861e4e7e8cab
SIZE (KDE/kdeutils-4.1.0.tar.bz2) = 2279856

View File

@ -1,92 +0,0 @@
--- configure.orig 2007-10-08 14:31:38.000000000 +0000
+++ configure 2008-05-30 00:26:52.000000000 +0000
@@ -35789,89 +35789,6 @@
fi
-have_l_funcs=yes
-
-{ echo "$as_me:$LINENO: checking for sqrtl in -lm" >&5
-echo $ECHO_N "checking for sqrtl in -lm... $ECHO_C" >&6; }
-if test "${ac_cv_lib_m_sqrtl+set}" = set; then
- echo $ECHO_N "(cached) $ECHO_C" >&6
-else
- ac_check_lib_save_LIBS=$LIBS
-LIBS="-lm $LIBS"
-cat >conftest.$ac_ext <<_ACEOF
-/* confdefs.h. */
-_ACEOF
-cat confdefs.h >>conftest.$ac_ext
-cat >>conftest.$ac_ext <<_ACEOF
-/* end confdefs.h. */
-
-/* Override any GCC internal prototype to avoid an error.
- Use char because int might match the return type of a GCC
- builtin and then its argument prototype would still apply. */
-#ifdef __cplusplus
-extern "C"
-#endif
-char sqrtl ();
-int
-main ()
-{
-return sqrtl ();
- ;
- return 0;
-}
-_ACEOF
-rm -f conftest.$ac_objext conftest$ac_exeext
-if { (ac_try="$ac_link"
-case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
- (eval "$ac_link") 2>conftest.er1
- ac_status=$?
- grep -v '^ *+' conftest.er1 >conftest.err
- rm -f conftest.er1
- cat conftest.err >&5
- echo "$as_me:$LINENO: \$? = $ac_status" >&5
- (exit $ac_status); } && {
- test -z "$ac_c_werror_flag" ||
- test ! -s conftest.err
- } && test -s conftest$ac_exeext &&
- $as_test_x conftest$ac_exeext; then
- ac_cv_lib_m_sqrtl=yes
-else
- echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
- ac_cv_lib_m_sqrtl=no
-fi
-
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
- conftest$ac_exeext conftest.$ac_ext
-LIBS=$ac_check_lib_save_LIBS
-fi
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_m_sqrtl" >&5
-echo "${ECHO_T}$ac_cv_lib_m_sqrtl" >&6; }
-if test $ac_cv_lib_m_sqrtl = yes; then
- cat >>confdefs.h <<_ACEOF
-#define HAVE_LIBM 1
-_ACEOF
-
- LIBS="-lm $LIBS"
-
-else
- have_l_funcs=no
-fi
-
-
-if test "xyes" = "x$have_l_funcs" ; then
-
-cat >>confdefs.h <<\_ACEOF
-#define HAVE_L_FUNCS 1
-_ACEOF
-
-fi
-
LIBGMP=
kde_safe_cppflags=$CPPFLAGS

View File

@ -1,20 +0,0 @@
--- kdelirc/irkick/klircclient.cpp.orig Sat Sep 10 10:21:34 2005
+++ kdelirc/irkick/klircclient.cpp Mon Jun 5 16:16:51 2006
@@ -55,15 +55,10 @@
sockaddr_un addr;
addr.sun_family = AF_UNIX;
- strcpy(addr.sun_path, "/dev/lircd");
+ strcpy(addr.sun_path, "/var/run/lirc/lircd");
if(::connect(sock, (struct sockaddr *)(&addr), sizeof(addr)) == -1)
{ ::close(sock);
- // in case of mandrake...
- strcpy(addr.sun_path, "/tmp/.lircd");
- if(::connect(sock, (struct sockaddr *)(&addr), sizeof(addr)) == -1)
- { ::close(sock);
- return false;
- }
+ return false;
}
theSocket = new QSocket;

View File

@ -1,46 +0,0 @@
--- ksim/monitors/filesystem/filesystemstats.cpp.orig 2007-10-08 11:49:45.000000000 +0200
+++ ksim/monitors/filesystem/filesystemstats.cpp 2007-10-26 19:32:09.000000000 +0200
@@ -30,7 +30,7 @@
#include <sys/types.h>
#include <sys/param.h>
-#if defined(HAVE_SYS_STATVFS_H) && !defined(__DragonFly__)
+#ifdef HAVE_SYS_STATVFS_H
#include <sys/statvfs.h>
#elif defined( HAVE_SYS_STATFS_H )
#include <sys/statfs.h>
@@ -59,12 +59,10 @@
#include <stdio.h>
#include <unistd.h>
-#if defined(HAVE_STATVFS) && !defined(__DragonFly__)
+#ifdef HAVE_STATVFS
typedef struct statvfs ksim_statfs;
-#define ksim_getfsstat getvfsstat
#elif defined( HAVE_STATFS ) || defined( Q_OS_FREEBSD )
typedef struct statfs ksim_statfs;
-#define ksim_getfsstat getfsstat
#else
typedef struct // fall back for (possibly) non-supported systems
{
@@ -75,7 +73,7 @@
int fsystemStats( const char * file, ksim_statfs & stats )
{
-#if defined(HAVE_STATVFS) && !defined(__DragonFly__)
+#ifdef HAVE_STATVFS
return statvfs( file, &stats );
#elif defined( HAVE_STATFS ) || defined( Q_OS_FREEBSD )
return statfs( file, &stats );
@@ -164,9 +162,9 @@
#endif
#ifdef USE_FSSTAT
- ksim_statfs sfs[32];
+ struct statfs sfs[32];
int fs_count;
- if ( ( fs_count = ksim_getfsstat( sfs, sizeof( sfs ), 0 ) ) != -1 )
+ if ( ( fs_count = getfsstat( sfs, sizeof( sfs ), 0 ) ) != -1 )
{
for ( int i = 0; i < fs_count; i++ )
{

View File

@ -1,343 +1,132 @@
bin/ark
bin/irkick
bin/kcalc
bin/kcharselect
bin/kdessh
bin/kdf
bin/kedit
bin/kfloppy
bin/kgpg
bin/khexedit
bin/kjots
bin/kregexpeditor
bin/ktimer
bin/kwalletmanager
bin/kwikdisk
bin/okteta
bin/superkaramba
include/kmultiformlistbox.h
include/kmultiformlistboxentry.h
include/kmultiformlistboxfactory.h
include/ksim/chart.h
include/ksim/common.h
include/ksim/ksimconfig.h
include/ksim/label.h
include/ksim/led.h
include/ksim/pluginglobal.h
include/ksim/pluginloader.h
include/ksim/pluginmodule.h
include/ksim/progress.h
include/ksim/themeloader.h
include/ksim/themetypes.h
include/kwidgetstreamer.h
lib/kde3/ark.a
lib/kde3/ark.la
lib/kde3/ark.so
lib/kde3/irkick.a
lib/kde3/irkick.la
lib/kde3/irkick.so
lib/kde3/kcalc.a
lib/kde3/kcalc.la
lib/kde3/kcalc.so
lib/kde3/kcharselect_panelapplet.a
lib/kde3/kcharselect_panelapplet.la
lib/kde3/kcharselect_panelapplet.so
lib/kde3/kcm_kcmlirc.a
lib/kde3/kcm_kcmlirc.la
lib/kde3/kcm_kcmlirc.so
lib/kde3/kcm_kdf.a
lib/kde3/kcm_kdf.la
lib/kde3/kcm_kdf.so
lib/kde3/kcm_kwallet.a
lib/kde3/kcm_kwallet.la
lib/kde3/kcm_kwallet.so
lib/kde3/kedit.a
lib/kde3/kedit.la
lib/kde3/kedit.so
lib/kde3/ksim_cpu.a
lib/kde3/ksim_cpu.la
lib/kde3/ksim_cpu.so
lib/kde3/ksim_disk.a
lib/kde3/ksim_disk.la
lib/kde3/ksim_disk.so
lib/kde3/ksim_filesystem.a
lib/kde3/ksim_filesystem.la
lib/kde3/ksim_filesystem.so
lib/kde3/ksim_net.a
lib/kde3/ksim_net.la
lib/kde3/ksim_net.so
lib/kde3/ksim_panelextension.a
lib/kde3/ksim_panelextension.la
lib/kde3/ksim_panelextension.so
lib/kde3/ksim_sensors.a
lib/kde3/ksim_sensors.la
lib/kde3/ksim_sensors.so
lib/kde3/ksim_snmp.a
lib/kde3/ksim_snmp.la
lib/kde3/ksim_snmp.so
lib/kde3/libarkpart.a
lib/kde3/libarkpart.la
lib/kde3/libarkpart.so
lib/kde3/libkbyteseditwidget.a
lib/kde3/libkbyteseditwidget.la
lib/kde3/libkbyteseditwidget.so
lib/kde3/libkhexedit2part.a
lib/kde3/libkhexedit2part.la
lib/kde3/libkhexedit2part.so
lib/kde3/libkregexpeditorgui.a
lib/kde3/libkregexpeditorgui.la
lib/kde3/libkregexpeditorgui.so
lib/libkdeinit_ark.a
lib/libkdeinit_ark.la
lib/libkdeinit_ark.so
lib/libkdeinit_irkick.a
lib/libkdeinit_irkick.la
lib/libkdeinit_irkick.so
lib/libkdeinit_kcalc.a
lib/libkdeinit_kcalc.la
lib/libkdeinit_kcalc.so
lib/libkdeinit_kedit.a
lib/libkdeinit_kedit.la
lib/libkdeinit_kedit.so
lib/libkhexeditcommon.a
lib/libkhexeditcommon.la
lib/libkhexeditcommon.so
lib/libkhexeditcommon.so.0
lib/libkregexpeditorcommon.a
lib/libkregexpeditorcommon.la
lib/libkregexpeditorcommon.so
lib/libkregexpeditorcommon.so.1
lib/libksimcore.a
lib/libksimcore.la
lib/libksimcore.so
lib/libksimcore.so.1
share/applications/kde/KCharSelect.desktop
share/applications/kde/KEdit.desktop
share/applications/kde/KFloppy.desktop
share/applications/kde/Kjots.desktop
share/applications/kde/ark.desktop
share/applications/kde/irkick.desktop
share/applications/kde/kcalc.desktop
share/applications/kde/kcmdf.desktop
share/applications/kde/kcmlirc.desktop
share/applications/kde/kdf.desktop
share/applications/kde/kgpg.desktop
share/applications/kde/khexedit.desktop
share/applications/kde/kregexpeditor.desktop
share/applications/kde/ktimer.desktop
share/applications/kde/kwalletconfig.desktop
share/applications/kde/kwalletmanager-kwalletd.desktop
share/applications/kde/kwalletmanager.desktop
share/applications/kde/kwikdisk.desktop
share/applnk/Utilities/superkaramba.desktop
bin/sweeper
lib/kde4/kcm_kdf.so
lib/kde4/kcm_kwallet.so
lib/kde4/kerfuffle_bk.so
lib/kde4/kerfuffle_libarchive.so
lib/kde4/kerfuffle_libzip.so
lib/kde4/kerfuffle_rar.so
lib/kde4/libarkpart.so
lib/kde4/libkbytearrayedit.so
lib/kde4/liboktetapart.so
lib/kde4/plasma_package_superkaramba.so
lib/kde4/plasma_scriptengine_superkaramba.so
lib/libkdeinit4_kcalc.so
lib/libkerfuffle.so
lib/libkerfuffle.so.5
lib/libkerfuffle.so.5.0.0
lib/liboktetacore.so
lib/liboktetacore.so.5
lib/liboktetacore.so.5.0.0
lib/liboktetagui.so
lib/liboktetagui.so.5
lib/liboktetagui.so.5.0.0
lib/libsuperkaramba.so
lib/libsuperkaramba.so.5
lib/libsuperkaramba.so.5.0.0
share/applications/kde4/KCharSelect.desktop
share/applications/kde4/KFloppy.desktop
share/applications/kde4/ark.desktop
share/applications/kde4/kcalc.desktop
share/applications/kde4/kdf.desktop
share/applications/kde4/kgpg.desktop
share/applications/kde4/ktimer.desktop
share/applications/kde4/kwalletmanager-kwalletd.desktop
share/applications/kde4/kwalletmanager.desktop
share/applications/kde4/kwikdisk.desktop
share/applications/kde4/okteta.desktop
share/applications/kde4/superkaramba.desktop
share/applications/kde4/sweeper.desktop
share/apps/ark/ark_part.rc
share/apps/ark/ark_part_readonly.rc
share/apps/ark/arkui.rc
share/apps/ark/icons/crystalsvg/22x22/actions/ark_adddir.png
share/apps/ark/icons/crystalsvg/22x22/actions/ark_addfile.png
share/apps/ark/icons/crystalsvg/22x22/actions/ark_delete.png
share/apps/ark/icons/crystalsvg/22x22/actions/ark_extract.png
share/apps/ark/icons/crystalsvg/22x22/actions/ark_selectall.png
share/apps/ark/icons/crystalsvg/22x22/actions/ark_view.png
share/apps/ark/icons/crystalsvg/32x32/actions/ark_adddir.png
share/apps/ark/icons/crystalsvg/32x32/actions/ark_addfile.png
share/apps/ark/icons/crystalsvg/32x32/actions/ark_delete.png
share/apps/ark/icons/crystalsvg/32x32/actions/ark_extract.png
share/apps/ark/icons/crystalsvg/32x32/actions/ark_view.png
share/apps/irkick/icons/hicolor/16x16/actions/irkick.png
share/apps/irkick/icons/hicolor/16x16/actions/irkickflash.png
share/apps/irkick/icons/hicolor/16x16/actions/irkickoff.png
share/apps/irkick/icons/hicolor/16x16/actions/ledblue.png
share/apps/irkick/icons/hicolor/16x16/actions/ledgreen.png
share/apps/irkick/icons/hicolor/16x16/actions/ledlightblue.png
share/apps/irkick/icons/hicolor/16x16/actions/ledlightgreen.png
share/apps/irkick/icons/hicolor/16x16/actions/ledorange.png
share/apps/irkick/icons/hicolor/16x16/actions/ledpurple.png
share/apps/irkick/icons/hicolor/16x16/actions/ledred.png
share/apps/irkick/icons/hicolor/16x16/actions/ledyellow.png
share/apps/irkick/icons/hicolor/32x32/actions/ledblue.png
share/apps/irkick/icons/hicolor/32x32/actions/ledgreen.png
share/apps/irkick/icons/hicolor/32x32/actions/ledlightblue.png
share/apps/irkick/icons/hicolor/32x32/actions/ledlightgreen.png
share/apps/irkick/icons/hicolor/32x32/actions/ledorange.png
share/apps/irkick/icons/hicolor/32x32/actions/ledpurple.png
share/apps/irkick/icons/hicolor/32x32/actions/ledred.png
share/apps/irkick/icons/hicolor/32x32/actions/ledyellow.png
share/apps/kcalc/kcalcui.rc
share/apps/kcalc/scienceconstants.xml
share/apps/kcharselect/kcharselectui.rc
share/apps/kconf_update/kcalcrc.upd
share/apps/kconf_update/kcharselect.upd
share/apps/kdf/kdfui.rc
share/apps/kdf/pics/delete.png
share/apps/kdf/pics/tick.png
share/apps/kedit/keditui.rc
share/apps/kgpg/icons/crystalsvg/16x16/actions/kgpg_key1.png
share/apps/kgpg/icons/crystalsvg/16x16/actions/kgpg_key2.png
share/apps/kgpg/icons/crystalsvg/16x16/actions/kgpg_key3.png
share/apps/kgpg/icons/crystalsvg/16x16/actions/kgpg_key4.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_edit.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_export.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_gen.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_identity.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_import.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_info.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_photo.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_show.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_sign.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_term.png
share/apps/kgpg/icons/oxygen/16x16/actions/document-export-key.png
share/apps/kgpg/icons/oxygen/16x16/actions/document-import-key.png
share/apps/kgpg/icons/oxygen/16x16/actions/document-properties-key.png
share/apps/kgpg/icons/oxygen/16x16/status/key-group.png
share/apps/kgpg/icons/oxygen/16x16/status/key-orphan.png
share/apps/kgpg/icons/oxygen/16x16/status/key-pair.png
share/apps/kgpg/icons/oxygen/16x16/status/key-single.png
share/apps/kgpg/icons/oxygen/22x22/actions/document-export-key.png
share/apps/kgpg/icons/oxygen/22x22/actions/document-import-key.png
share/apps/kgpg/icons/oxygen/22x22/actions/document-properties-key.png
share/apps/kgpg/icons/oxygen/22x22/actions/key-generate-pair.png
share/apps/kgpg/icons/oxygen/22x22/actions/view-key-secret.png
share/apps/kgpg/icons/oxygen/22x22/status/key-group.png
share/apps/kgpg/icons/oxygen/22x22/status/key-pair.png
share/apps/kgpg/icons/oxygen/22x22/status/key-single.png
share/apps/kgpg/icons/oxygen/32x32/actions/document-export-key.png
share/apps/kgpg/icons/oxygen/32x32/actions/document-import-key.png
share/apps/kgpg/icons/oxygen/32x32/actions/document-properties-key.png
share/apps/kgpg/icons/oxygen/32x32/status/key-group.png
share/apps/kgpg/icons/oxygen/32x32/status/key-pair.png
share/apps/kgpg/icons/oxygen/32x32/status/key-single.png
share/apps/kgpg/icons/oxygen/48x48/actions/document-export-key.png
share/apps/kgpg/icons/oxygen/48x48/actions/document-import-key.png
share/apps/kgpg/icons/oxygen/48x48/actions/document-properties-key.png
share/apps/kgpg/icons/oxygen/48x48/status/key-group.png
share/apps/kgpg/icons/oxygen/48x48/status/key-pair.png
share/apps/kgpg/icons/oxygen/48x48/status/key-single.png
share/apps/kgpg/icons/oxygen/scalable/actions/document-export-key.svgz
share/apps/kgpg/icons/oxygen/scalable/actions/document-import-key.svgz
share/apps/kgpg/icons/oxygen/scalable/actions/document-properties-key.svgz
share/apps/kgpg/icons/oxygen/scalable/status/key-group.svgz
share/apps/kgpg/icons/oxygen/scalable/status/key-pair.svgz
share/apps/kgpg/icons/oxygen/scalable/status/key-single.svgz
share/apps/kgpg/keysmanager.rc
share/apps/kgpg/kgpg.rc
share/apps/kgpg/listkeys.rc
share/apps/kgpg/pics/kgpg_anim.gif
share/apps/kgpg/pics/kgpg_blank.png
share/apps/kgpg/pics/kgpg_docked.gif
share/apps/kgpg/pics/kgpg_docked.png
share/apps/kgpg/pics/kgpg_fill.png
share/apps/kgpg/tips
share/apps/khexedit/khexeditui.rc
share/apps/khexedit/pics/hexdrag.png
share/apps/khexedit/pics/hexmask.png
share/apps/khexedit/pics/hexwrite.png
share/apps/khexedit2part/khexedit2partui.rc
share/apps/kicker/applets/kcharselectapplet.desktop
share/apps/kicker/extensions/ksim.desktop
share/apps/kjots/kjotsui.rc
share/apps/kjots/pics/filedel.png
share/apps/konqueror/servicemenus/encryptfile.desktop
share/apps/konqueror/servicemenus/encryptfolder.desktop
share/apps/konqueror/servicemenus/floppy_format.desktop
share/apps/kregexpeditor/pics/altn.png
share/apps/kregexpeditor/pics/anychar.png
share/apps/kregexpeditor/pics/autoverify.png
share/apps/kregexpeditor/pics/begline.png
share/apps/kregexpeditor/pics/characters.png
share/apps/kregexpeditor/pics/compound.png
share/apps/kregexpeditor/pics/endline.png
share/apps/kregexpeditor/pics/error.png
share/apps/kregexpeditor/pics/neglookahead.png
share/apps/kregexpeditor/pics/nonwordboundary.png
share/apps/kregexpeditor/pics/poslookahead.png
share/apps/kregexpeditor/pics/repeat.png
share/apps/kregexpeditor/pics/select.png
share/apps/kregexpeditor/pics/text.png
share/apps/kregexpeditor/pics/verify.png
share/apps/kregexpeditor/pics/wordboundary.png
share/apps/kregexpeditor/predefined/general/anything.regexp
share/apps/kregexpeditor/predefined/general/spaces.regexp
share/apps/ksim/monitors/DFree.desktop
share/apps/ksim/monitors/Lm_sensors.desktop
share/apps/ksim/monitors/Net.desktop
share/apps/ksim/monitors/Snmp.desktop
share/apps/ksim/monitors/cpu.desktop
share/apps/ksim/monitors/disk.desktop
share/apps/ksim/pics/clock.png
share/apps/ksim/pics/uptime.png
share/apps/ksim/themes/ksim/bg_chart.png
share/apps/ksim/themes/ksim/bg_grid.png
share/apps/ksim/themes/ksim/bg_meter.png
share/apps/ksim/themes/ksim/bg_panel.png
share/apps/ksim/themes/ksim/frame_bottom.png
share/apps/ksim/themes/ksim/frame_left.png
share/apps/ksim/themes/ksim/frame_right.png
share/apps/ksim/themes/ksim/frame_top.png
share/apps/ksim/themes/ksim/gkrellmrc
share/apps/ksim/themes/ksim/gkrellmrc_ksim
share/apps/ksim/themes/ksim/host/bg_meter.png
share/apps/ksim/themes/ksim/krell_meter.png
share/apps/ksim/themes/ksim/krell_panel.png
share/apps/ksim/themes/ksim/krell_slider.png
share/apps/ksim/themes/ksim/mail/decal_mail.png
share/apps/ksim/themes/ksim/mail/krell_mail.png
share/apps/ksim/themes/ksim/mail/krell_mail_daemon.png
share/apps/ksim/themes/ksim/net/decal_net_leds.png
share/apps/kwalletmanager/icons/crystalsvg/22x22/actions/folder_closed.png
share/apps/kwalletmanager/icons/crystalsvg/22x22/actions/folder_open.png
share/apps/kwalletmanager/icons/crystalsvg/22x22/actions/wallet_closed.png
share/apps/kwalletmanager/icons/crystalsvg/22x22/actions/wallet_open.png
share/apps/kwalletmanager/icons/oxygen/22x22/actions/folder_closed.png
share/apps/kwalletmanager/icons/oxygen/22x22/actions/folder_open.png
share/apps/kwalletmanager/kwalleteditor.rc
share/apps/kwalletmanager/kwalletmanager.rc
share/apps/profiles/klauncher.profile.xml
share/apps/profiles/konqueror.profile.xml
share/apps/profiles/noatun.profile.xml
share/apps/profiles/profile.dtd
share/apps/remotes/RM-0010.remote.xml
share/apps/remotes/cimr100.remote.xml
share/apps/remotes/hauppauge.remote.xml
share/apps/remotes/remote.dtd
share/apps/remotes/sherwood.remote.xml
share/apps/remotes/sonytv.remote.xml
share/apps/okteta/oktetaui.rc
share/apps/oktetapart/oktetapartui.rc
share/apps/superkaramba/superkarambaui.rc
share/autostart/irkick.desktop
share/apps/sweeper/sweeperui.rc
share/autostart/kgpg.desktop
share/config.kcfg/ark.kcfg
share/config.kcfg/kcalc.kcfg
share/config.kcfg/kedit.kcfg
share/config.kcfg/kgpg.kcfg
share/config.kcfg/kjots.kcfg
share/config/ksim_panelextensionrc
share/doc/HTML/en/KRegExpEditor/altn.png
share/doc/HTML/en/KRegExpEditor/altntool.png
share/doc/HTML/en/KRegExpEditor/anychar.png
share/doc/HTML/en/KRegExpEditor/anychartool.png
share/doc/HTML/en/KRegExpEditor/begline.png
share/doc/HTML/en/KRegExpEditor/boundarytools.png
share/doc/HTML/en/KRegExpEditor/characters.png
share/doc/HTML/en/KRegExpEditor/charactertool.png
share/doc/HTML/en/KRegExpEditor/common
share/doc/HTML/en/KRegExpEditor/compound.png
share/doc/HTML/en/KRegExpEditor/compoundtool.png
share/doc/HTML/en/KRegExpEditor/endline.png
share/doc/HTML/en/KRegExpEditor/index.cache.bz2
share/doc/HTML/en/KRegExpEditor/index.docbook
share/doc/HTML/en/KRegExpEditor/linestartendtool.png
share/doc/HTML/en/KRegExpEditor/lookaheadtools.png
share/doc/HTML/en/KRegExpEditor/neglookahead.png
share/doc/HTML/en/KRegExpEditor/nonwordboundary.png
share/doc/HTML/en/KRegExpEditor/poslookahead.png
share/doc/HTML/en/KRegExpEditor/repeat.png
share/doc/HTML/en/KRegExpEditor/repeattool.png
share/doc/HTML/en/KRegExpEditor/select.png
share/doc/HTML/en/KRegExpEditor/text.png
share/doc/HTML/en/KRegExpEditor/texttool.png
share/doc/HTML/en/KRegExpEditor/theEditor.png
share/doc/HTML/en/KRegExpEditor/wordboundary.png
share/config/superkaramba.knsrc
share/dbus-1/interfaces/org.kde.kgpg.Key.xml
share/dbus-1/interfaces/org.kde.superkaramba.xml
share/dbus-1/interfaces/org.kde.sweeper.xml
share/doc/HTML/en/ark/common
share/doc/HTML/en/ark/index.cache.bz2
share/doc/HTML/en/ark/index.docbook
share/doc/HTML/en/ark/man-ark.1.docbook
share/doc/HTML/en/irkick/common
share/doc/HTML/en/irkick/index.cache.bz2
share/doc/HTML/en/irkick/index.docbook
share/doc/HTML/en/kcalc/commands.docbook
share/doc/HTML/en/kcalc/common
share/doc/HTML/en/kcalc/index.cache.bz2
share/doc/HTML/en/kcalc/index.docbook
share/doc/HTML/en/kcalc/kcalc_on_Aix.txt
share/doc/HTML/en/kcalc/kcalc_on_OSF.txt
share/doc/HTML/en/kcharselect/common
share/doc/HTML/en/kcharselect/index.cache.bz2
share/doc/HTML/en/kcharselect/index.docbook
share/doc/HTML/en/kcmlirc/common
share/doc/HTML/en/kcmlirc/index.cache.bz2
share/doc/HTML/en/kcmlirc/index.docbook
share/doc/HTML/en/kcontrol/kcmlowbatcrit/common
share/doc/HTML/en/kcontrol/kcmlowbatcrit/index.cache.bz2
share/doc/HTML/en/kcontrol/kcmlowbatcrit/index.docbook
share/doc/HTML/en/kcontrol/kcmlowbatwarn/common
share/doc/HTML/en/kcontrol/kcmlowbatwarn/index.cache.bz2
share/doc/HTML/en/kcontrol/kcmlowbatwarn/index.docbook
share/doc/HTML/en/kcontrol/laptop/common
share/doc/HTML/en/kcontrol/laptop/index.cache.bz2
share/doc/HTML/en/kcontrol/laptop/index.docbook
share/doc/HTML/en/kcontrol/powerctrl/common
share/doc/HTML/en/kcontrol/powerctrl/index.cache.bz2
share/doc/HTML/en/kcontrol/powerctrl/index.docbook
share/doc/HTML/en/kdf/common
share/doc/HTML/en/kdf/index.cache.bz2
share/doc/HTML/en/kdf/index.docbook
share/doc/HTML/en/kdf/kdf.png
share/doc/HTML/en/kdf/kdf_config.png
share/doc/HTML/en/kedit/common
share/doc/HTML/en/kedit/index.cache.bz2
share/doc/HTML/en/kedit/index.docbook
share/doc/HTML/en/kfloppy/common
share/doc/HTML/en/kfloppy/index.cache.bz2
share/doc/HTML/en/kfloppy/index.docbook
@ -347,226 +136,187 @@ share/doc/HTML/en/kgpg/index.cache.bz2
share/doc/HTML/en/kgpg/index.docbook
share/doc/HTML/en/kgpg/keygen.png
share/doc/HTML/en/kgpg/keymanage.png
share/doc/HTML/en/kgpg/keyprop.png
share/doc/HTML/en/kgpg/keys.png
share/doc/HTML/en/kgpg/keyserver.png
share/doc/HTML/en/kgpg/kicker.png
share/doc/HTML/en/kgpg/options.png
share/doc/HTML/en/khexedit/common
share/doc/HTML/en/khexedit/index.cache.bz2
share/doc/HTML/en/khexedit/index.docbook
share/doc/HTML/en/khexedit/khexedit1.png
share/doc/HTML/en/kinfocenter/blockdevices/common
share/doc/HTML/en/kinfocenter/blockdevices/index.cache.bz2
share/doc/HTML/en/kinfocenter/blockdevices/index.docbook
share/doc/HTML/en/kjots/common
share/doc/HTML/en/kjots/index.cache.bz2
share/doc/HTML/en/kjots/index.docbook
share/doc/HTML/en/ksim/common
share/doc/HTML/en/ksim/index.cache.bz2
share/doc/HTML/en/ksim/index.docbook
share/doc/HTML/en/ktimer/common
share/doc/HTML/en/ktimer/index.cache.bz2
share/doc/HTML/en/ktimer/index.docbook
share/doc/HTML/en/kwallet/common
share/doc/HTML/en/kwallet/cr22-action-wallet_closed.png
share/doc/HTML/en/kwallet/cr22-action-wallet_open.png
share/doc/HTML/en/kwallet/edit1.png
share/doc/HTML/en/kwallet/edit2.png
share/doc/HTML/en/kwallet/edit3.png
share/doc/HTML/en/kwallet/index.cache.bz2
share/doc/HTML/en/kwallet/index.docbook
share/doc/HTML/en/kwallet/kwalletmanager.png
share/doc/HTML/en/kwallet/ox22-action-wallet_closed.png
share/doc/HTML/en/kwallet/ox22-action-wallet_open.png
share/doc/HTML/en/kwallet/password1.png
share/doc/HTML/en/kwallet/password2.png
share/doc/HTML/en/okteta/basics.docbook
share/doc/HTML/en/okteta/common
share/doc/HTML/en/okteta/credits.docbook
share/doc/HTML/en/okteta/index.cache.bz2
share/doc/HTML/en/okteta/index.docbook
share/doc/HTML/en/okteta/introduction.docbook
share/doc/HTML/en/okteta/menu.docbook
share/doc/HTML/en/okteta/tools.docbook
share/doc/HTML/en/superkaramba/common
share/doc/HTML/en/superkaramba/index.cache.bz2
share/doc/HTML/en/superkaramba/index.docbook
share/icons/crystalsvg/128x128/apps/superkaramba.png
share/icons/crystalsvg/128x128/mimetypes/superkaramba_theme.png
share/icons/crystalsvg/16x16/apps/kcmdf.png
share/icons/crystalsvg/16x16/apps/ksim.png
share/icons/crystalsvg/16x16/apps/superkaramba.png
share/icons/crystalsvg/16x16/devices/ksim_cpu.png
share/icons/crystalsvg/16x16/mimetypes/superkaramba_theme.png
share/icons/crystalsvg/22x22/apps/kcmdf.png
share/icons/crystalsvg/22x22/apps/superkaramba.png
share/icons/crystalsvg/22x22/mimetypes/superkaramba_theme.png
share/icons/crystalsvg/32x32/apps/kcmdf.png
share/icons/crystalsvg/32x32/apps/ksim.png
share/icons/crystalsvg/32x32/apps/superkaramba.png
share/icons/crystalsvg/32x32/mimetypes/superkaramba_theme.png
share/icons/crystalsvg/48x48/apps/ksim.png
share/icons/crystalsvg/48x48/apps/superkaramba.png
share/icons/crystalsvg/48x48/mimetypes/superkaramba_theme.png
share/icons/crystalsvg/64x64/apps/superkaramba.png
share/icons/crystalsvg/64x64/mimetypes/superkaramba_theme.png
share/icons/crystalsvg/scalable/apps/superkaramba.svgz
share/icons/crystalsvg/scalable/mimetypes/superkaramba_theme.svgz
share/icons/hicolor/128x128/apps/ark.png
share/icons/hicolor/128x128/apps/kdf.png
share/icons/hicolor/128x128/apps/kfloppy.png
share/icons/hicolor/128x128/apps/kregexpeditor.png
share/icons/hicolor/128x128/apps/ktimer.png
share/icons/hicolor/128x128/apps/kwalletmanager.png
share/icons/hicolor/128x128/apps/kwalletmanager2.png
share/icons/hicolor/128x128/apps/kwikdisk.png
share/icons/hicolor/16x16/apps/ark.png
share/icons/hicolor/16x16/apps/irkick.png
share/icons/hicolor/128x128/apps/superkaramba.png
share/icons/hicolor/16x16/apps/kcalc.png
share/icons/hicolor/16x16/apps/kcharselect.png
share/icons/hicolor/16x16/apps/kdf.png
share/icons/hicolor/16x16/apps/kedit.png
share/icons/hicolor/16x16/apps/kfloppy.png
share/icons/hicolor/16x16/apps/kgpg.png
share/icons/hicolor/16x16/apps/khexedit.png
share/icons/hicolor/16x16/apps/kjots.png
share/icons/hicolor/16x16/apps/kregexpeditor.png
share/icons/hicolor/16x16/apps/ktimer.png
share/icons/hicolor/16x16/apps/kwalletmanager.png
share/icons/hicolor/16x16/apps/kwalletmanager2.png
share/icons/hicolor/16x16/apps/kwikdisk.png
share/icons/hicolor/22x22/apps/ark.png
share/icons/hicolor/22x22/apps/irkick.png
share/icons/hicolor/16x16/apps/okteta.png
share/icons/hicolor/16x16/apps/superkaramba.png
share/icons/hicolor/22x22/apps/kcalc.png
share/icons/hicolor/22x22/apps/kdf.png
share/icons/hicolor/22x22/apps/kedit.png
share/icons/hicolor/22x22/apps/kfloppy.png
share/icons/hicolor/22x22/apps/kgpg.png
share/icons/hicolor/22x22/apps/kjots.png
share/icons/hicolor/22x22/apps/kregexpeditor.png
share/icons/hicolor/22x22/apps/kwalletmanager.png
share/icons/hicolor/22x22/apps/kwikdisk.png
share/icons/hicolor/32x32/apps/ark.png
share/icons/hicolor/32x32/apps/irkick.png
share/icons/hicolor/22x22/apps/superkaramba.png
share/icons/hicolor/32x32/apps/kcalc.png
share/icons/hicolor/32x32/apps/kcharselect.png
share/icons/hicolor/32x32/apps/kdf.png
share/icons/hicolor/32x32/apps/kedit.png
share/icons/hicolor/32x32/apps/kfloppy.png
share/icons/hicolor/32x32/apps/kgpg.png
share/icons/hicolor/32x32/apps/khexedit.png
share/icons/hicolor/32x32/apps/kjots.png
share/icons/hicolor/32x32/apps/kregexpeditor.png
share/icons/hicolor/32x32/apps/ktimer.png
share/icons/hicolor/32x32/apps/kwalletmanager.png
share/icons/hicolor/32x32/apps/kwalletmanager2.png
share/icons/hicolor/32x32/apps/kwikdisk.png
share/icons/hicolor/48x48/apps/ark.png
share/icons/hicolor/32x32/apps/okteta.png
share/icons/hicolor/32x32/apps/superkaramba.png
share/icons/hicolor/48x48/apps/kcalc.png
share/icons/hicolor/48x48/apps/kcharselect.png
share/icons/hicolor/48x48/apps/kdf.png
share/icons/hicolor/48x48/apps/kedit.png
share/icons/hicolor/48x48/apps/kfloppy.png
share/icons/hicolor/48x48/apps/kgpg.png
share/icons/hicolor/48x48/apps/khexedit.png
share/icons/hicolor/48x48/apps/kjots.png
share/icons/hicolor/48x48/apps/kregexpeditor.png
share/icons/hicolor/48x48/apps/ktimer.png
share/icons/hicolor/48x48/apps/kwalletmanager.png
share/icons/hicolor/48x48/apps/kwalletmanager2.png
share/icons/hicolor/48x48/apps/kwikdisk.png
share/icons/hicolor/64x64/apps/ark.png
share/icons/hicolor/48x48/apps/okteta.png
share/icons/hicolor/48x48/apps/superkaramba.png
share/icons/hicolor/64x64/apps/kcalc.png
share/icons/hicolor/64x64/apps/kdf.png
share/icons/hicolor/64x64/apps/kedit.png
share/icons/hicolor/64x64/apps/kfloppy.png
share/icons/hicolor/64x64/apps/kjots.png
share/icons/hicolor/64x64/apps/kregexpeditor.png
share/icons/hicolor/64x64/apps/kwalletmanager.png
share/icons/hicolor/64x64/apps/kwalletmanager2.png
share/icons/hicolor/64x64/apps/kwikdisk.png
share/icons/hicolor/scalable/apps/ark.svgz
share/icons/hicolor/64x64/apps/superkaramba.png
share/icons/hicolor/scalable/apps/kcalc.svgz
share/icons/locolor/16x16/apps/irkick.png
share/icons/locolor/32x32/apps/irkick.png
share/mimelnk/application/x-superkaramba.desktop
share/services/ark_part.desktop
share/services/kbyteseditwidget.desktop
share/services/khexedit2part.desktop
share/services/kregexpeditorgui.desktop
share/services/kwallet_config.desktop
share/services/kwalletmanager_show.desktop
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/superkaramba/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/superkaramba/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/knumber/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/knumber/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/knumber/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/knumber/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/superkaramba/html
share/icons/hicolor/scalable/apps/superkaramba.svgz
share/icons/oxygen/16x16/apps/kcmdf.png
share/icons/oxygen/22x22/apps/kcmdf.png
share/icons/oxygen/32x32/apps/kcmdf.png
share/kde4/services/ServiceMenus/encryptfile.desktop
share/kde4/services/ServiceMenus/encryptfolder.desktop
share/kde4/services/ServiceMenus/floppy_format.desktop
share/kde4/services/ark_part.desktop
share/kde4/services/kbytearrayedit.desktop
share/kde4/services/kcmdf.desktop
share/kde4/services/kerfuffle_bk.desktop
share/kde4/services/kerfuffle_libarchive.desktop
share/kde4/services/kerfuffle_libzip.desktop
share/kde4/services/kerfuffle_rar.desktop
share/kde4/services/kwalletconfig.desktop
share/kde4/services/kwalletmanager_show.desktop
share/kde4/services/oktetapart.desktop
share/kde4/services/plasma-package-superkaramba.desktop
share/kde4/services/plasma-scriptengine-superkaramba.desktop
share/kde4/servicetypes/kerfufflePlugin.desktop
@dirrmtry share/kde4/servicetypes
@dirrmtry share/kde4/services/ServiceMenus
@dirrmtry share/kde4/services
@dirrmtry share/kde4
@dirrmtry share/icons/oxygen/32x32/apps
@dirrmtry share/icons/oxygen/32x32
@dirrmtry share/icons/oxygen/22x22/apps
@dirrmtry share/icons/oxygen/22x22
@dirrmtry share/icons/oxygen/16x16/apps
@dirrmtry share/icons/oxygen/16x16
@dirrmtry share/icons/oxygen
@dirrmtry share/icons/hicolor/scalable/apps
@dirrmtry share/icons/hicolor/scalable
@dirrmtry share/icons/hicolor/64x64/apps
@dirrmtry share/icons/hicolor/64x64
@dirrmtry share/icons/hicolor/48x48/apps
@dirrmtry share/icons/hicolor/48x48
@dirrmtry share/icons/hicolor/32x32/apps
@dirrmtry share/icons/hicolor/32x32
@dirrmtry share/icons/hicolor/22x22/apps
@dirrmtry share/icons/hicolor/22x22
@dirrmtry share/icons/hicolor/16x16/apps
@dirrmtry share/icons/hicolor/16x16
@dirrmtry share/icons/hicolor/128x128/apps
@dirrmtry share/icons/hicolor/128x128
@dirrmtry share/icons/hicolor
@dirrmtry share/icons
@dirrm share/doc/HTML/en/superkaramba
@dirrm share/doc/HTML/en/okteta
@dirrm share/doc/HTML/en/kwallet
@dirrm share/doc/HTML/en/ktimer
@dirrm share/doc/HTML/en/ksim
@dirrm share/doc/HTML/en/kjots
@dirrm share/doc/HTML/en/kinfocenter/blockdevices
@dirrm share/doc/HTML/en/khexedit
@dirrm share/doc/HTML/en/kgpg
@dirrm share/doc/HTML/en/kfloppy
@dirrm share/doc/HTML/en/kedit
@dirrm share/doc/HTML/en/kdf
@dirrm share/doc/HTML/en/kdeutils-apidocs/superkaramba/html
@dirrm share/doc/HTML/en/kdeutils-apidocs/superkaramba
@dirrm share/doc/HTML/en/kdeutils-apidocs/kcalc/knumber/html
@dirrm share/doc/HTML/en/kdeutils-apidocs/kcalc/knumber
@dirrm share/doc/HTML/en/kdeutils-apidocs/kcalc/html
@dirrm share/doc/HTML/en/kdeutils-apidocs/kcalc
@dirrm share/doc/HTML/en/kdeutils-apidocs
@dirrm share/doc/HTML/en/kcontrol/powerctrl
@dirrm share/doc/HTML/en/kcontrol/laptop
@dirrm share/doc/HTML/en/kcontrol/kcmlowbatwarn
@dirrm share/doc/HTML/en/kcontrol/kcmlowbatcrit
@dirrm share/doc/HTML/en/kcmlirc
@dirrm share/doc/HTML/en/kcharselect
@dirrm share/doc/HTML/en/kcalc
@dirrm share/doc/HTML/en/irkick
@dirrm share/doc/HTML/en/ark
@dirrm share/doc/HTML/en/KRegExpEditor
@dirrmtry share/doc/HTML/en
@dirrmtry share/doc/HTML
@dirrmtry share/dbus-1/interfaces
@dirrmtry share/dbus-1
@dirrmtry share/config.kcfg
@dirrmtry share/config
@dirrmtry share/autostart
@dirrm share/apps/sweeper
@dirrm share/apps/superkaramba
@dirrm share/apps/remotes
@dirrm share/apps/kwalletmanager/icons/crystalsvg/22x22/actions
@dirrm share/apps/kwalletmanager/icons/crystalsvg/22x22
@dirrm share/apps/kwalletmanager/icons/crystalsvg
@dirrm share/apps/oktetapart
@dirrm share/apps/okteta
@dirrm share/apps/kwalletmanager/icons/oxygen/22x22/actions
@dirrm share/apps/kwalletmanager/icons/oxygen/22x22
@dirrm share/apps/kwalletmanager/icons/oxygen
@dirrm share/apps/kwalletmanager/icons
@dirrm share/apps/kwalletmanager
@dirrm share/apps/ksim/themes/ksim/net
@dirrm share/apps/ksim/themes/ksim/mail
@dirrm share/apps/ksim/themes/ksim/host
@dirrm share/apps/ksim/themes/ksim
@dirrm share/apps/ksim/themes
@dirrm share/apps/ksim/pics
@dirrm share/apps/ksim/monitors
@dirrm share/apps/ksim
@dirrm share/apps/kregexpeditor/predefined/general
@dirrm share/apps/kregexpeditor/predefined
@dirrm share/apps/kregexpeditor/pics
@dirrm share/apps/kregexpeditor
@dirrm share/apps/kjots/pics
@dirrm share/apps/kjots
@dirrm share/apps/khexedit2part
@dirrm share/apps/khexedit/pics
@dirrm share/apps/khexedit
@dirrm share/apps/kgpg/pics
@dirrm share/apps/kgpg/icons/crystalsvg/22x22/actions
@dirrm share/apps/kgpg/icons/crystalsvg/22x22
@dirrm share/apps/kgpg/icons/crystalsvg/16x16/actions
@dirrm share/apps/kgpg/icons/crystalsvg/16x16
@dirrm share/apps/kgpg/icons/crystalsvg
@dirrm share/apps/kgpg/icons/oxygen/scalable/status
@dirrm share/apps/kgpg/icons/oxygen/scalable/actions
@dirrm share/apps/kgpg/icons/oxygen/scalable
@dirrm share/apps/kgpg/icons/oxygen/48x48/status
@dirrm share/apps/kgpg/icons/oxygen/48x48/actions
@dirrm share/apps/kgpg/icons/oxygen/48x48
@dirrm share/apps/kgpg/icons/oxygen/32x32/status
@dirrm share/apps/kgpg/icons/oxygen/32x32/actions
@dirrm share/apps/kgpg/icons/oxygen/32x32
@dirrm share/apps/kgpg/icons/oxygen/22x22/status
@dirrm share/apps/kgpg/icons/oxygen/22x22/actions
@dirrm share/apps/kgpg/icons/oxygen/22x22
@dirrm share/apps/kgpg/icons/oxygen/16x16/status
@dirrm share/apps/kgpg/icons/oxygen/16x16/actions
@dirrm share/apps/kgpg/icons/oxygen/16x16
@dirrm share/apps/kgpg/icons/oxygen
@dirrm share/apps/kgpg/icons
@dirrm share/apps/kgpg
@dirrm share/apps/kedit
@dirrm share/apps/kdf/pics
@dirrm share/apps/kdf
@dirrm share/apps/kcharselect
@dirrmtry share/apps/kconf_update
@dirrmtry share/apps/kcharselect
@dirrm share/apps/kcalc
@dirrm share/apps/irkick/icons/hicolor/32x32/actions
@dirrm share/apps/irkick/icons/hicolor/32x32
@dirrm share/apps/irkick/icons/hicolor/16x16/actions
@dirrm share/apps/irkick/icons/hicolor/16x16
@dirrm share/apps/irkick/icons/hicolor
@dirrm share/apps/irkick/icons
@dirrm share/apps/irkick
@dirrm share/apps/ark/icons/crystalsvg/32x32/actions
@dirrm share/apps/ark/icons/crystalsvg/32x32
@dirrm share/apps/ark/icons/crystalsvg/22x22/actions
@dirrm share/apps/ark/icons/crystalsvg/22x22
@dirrm share/apps/ark/icons/crystalsvg
@dirrm share/apps/ark/icons
@dirrm share/apps/ark
@dirrm include/ksim
@dirrmtry share/apps
@dirrmtry share/applications/kde4
@dirrmtry share/applications
@dirrmtry lib/kde4

View File

@ -61,6 +61,8 @@
SUBDIR += kcfonts
SUBDIR += kde3-i18n-zh_CN
SUBDIR += kde3-i18n-zh_TW
SUBDIR += kde4-l10n-zh_CN
SUBDIR += kde4-l10n-zh_TW
SUBDIR += koffice-i18n-zh_CN
SUBDIR += koffice-i18n-zh_TW
SUBDIR += kon2

View File

@ -1,20 +1,20 @@
# New ports collection makefile for: kde3-i18n-zh_CN
# Date created: 05 April 2002
# Whom: Lauri Watts <lauri@kde.org>
# New ports collection makefile for: koffice-i18n-zh_CN
# Date created: 21 January 2004
# Whom: Brad Davis <so14k@so14k.com>
#
# $FreeBSD$
#
PORTNAME= kde-i18n
PORTVERSION= ${KDE_VERSION}
PORTNAME= koffice-i18n
PORTVERSION= 1.6.3
CATEGORIES?= chinese kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n
MASTER_SITE_SUBDIR= stable/koffice-${PORTVERSION}/src/koffice-l10n
PKGNAMEPREFIX= zh_CN-
DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
COMMENT= Simplified Chinese messages and documentation for KDE3
COMMENT= Simplified Chinese messages and documentation for koffice
BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext

View File

@ -1,3 +1,3 @@
MD5 (KDE/kde-i18n/kde-i18n-zh_CN-3.5.8.tar.bz2) = 29e2e6756afa3a6ad1b9014c91137b18
SHA256 (KDE/kde-i18n/kde-i18n-zh_CN-3.5.8.tar.bz2) = a43cff8800e3d5b45364402e6770ad3aac164aa66c7b0a23e59cc9137b8c209e
SIZE (KDE/kde-i18n/kde-i18n-zh_CN-3.5.8.tar.bz2) = 2016922
MD5 (KDE/kde-i18n/koffice-l10n-zh_CN-1.6.3.tar.bz2) = a21490ebc1d0beedc565c070d4bdad25
SHA256 (KDE/kde-i18n/koffice-l10n-zh_CN-1.6.3.tar.bz2) = c436c12c693e9b0c223413d869f1f1f5d84a1f12224de13772308c8fd3b9fa63
SIZE (KDE/kde-i18n/koffice-l10n-zh_CN-1.6.3.tar.bz2) = 353668

View File

@ -1,3 +1,3 @@
Localized messages and documentation for KDE3.
Localized messages and documentation for koffice.
WWW: http://i18n.kde.org/
WWW: http://koffice.kde.org/

View File

@ -1,557 +1,30 @@
share/doc/HTML/zh_CN/docs/common/fdl-translated.html
share/doc/HTML/zh_CN/docs/common/gpl-translated.html
share/doc/HTML/zh_CN/docs/common/kde-localised.css
share/doc/HTML/zh_CN/docs/common/lgpl-translated.html
share/doc/HTML/zh_CN/docs/common/logotp3.png
share/doc/HTML/zh_CN/kdevelop/tip.database
share/locale/zh_CN/LC_MESSAGES/akregator.mo
share/locale/zh_CN/LC_MESSAGES/akregator_konqplugin.mo
share/locale/zh_CN/LC_MESSAGES/alsaplayerui.mo
share/locale/zh_CN/LC_MESSAGES/amor.mo
share/locale/zh_CN/LC_MESSAGES/appletproxy.mo
share/locale/zh_CN/LC_MESSAGES/ark.mo
share/locale/zh_CN/LC_MESSAGES/ark_plugin.mo
share/locale/zh_CN/LC_MESSAGES/artsbuilder.mo
share/locale/zh_CN/LC_MESSAGES/artscontrol.mo
share/locale/zh_CN/LC_MESSAGES/artsmodules.mo
share/locale/zh_CN/LC_MESSAGES/atlantik.mo
share/locale/zh_CN/LC_MESSAGES/atlantikdesigner.mo
share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_lame.mo
share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_vorbis.mo
share/locale/zh_CN/LC_MESSAGES/audiorename_plugin.mo
share/locale/zh_CN/LC_MESSAGES/autorefresh.mo
share/locale/zh_CN/LC_MESSAGES/babelfish.mo
share/locale/zh_CN/LC_MESSAGES/cervisia.mo
share/locale/zh_CN/LC_MESSAGES/charlatanui.mo
share/locale/zh_CN/LC_MESSAGES/clockapplet.mo
share/locale/zh_CN/LC_MESSAGES/crashesplugin.mo
share/locale/zh_CN/LC_MESSAGES/cupsdconf.mo
share/locale/zh_CN/LC_MESSAGES/cvsservice.mo
share/locale/zh_CN/LC_MESSAGES/dcoprss.mo
share/locale/zh_CN/LC_MESSAGES/dirfilterplugin.mo
share/locale/zh_CN/LC_MESSAGES/display.mo
share/locale/zh_CN/LC_MESSAGES/dockbarextension.mo
share/locale/zh_CN/LC_MESSAGES/domtreeviewer.mo
share/locale/zh_CN/LC_MESSAGES/drkonqi.mo
share/locale/zh_CN/LC_MESSAGES/dub.mo
share/locale/zh_CN/LC_MESSAGES/extensionproxy.mo
share/locale/zh_CN/LC_MESSAGES/ffrs.mo
share/locale/zh_CN/LC_MESSAGES/filetypes.mo
share/locale/zh_CN/LC_MESSAGES/fsview.mo
share/locale/zh_CN/LC_MESSAGES/htmlsearch.mo
share/locale/zh_CN/LC_MESSAGES/imagerename_plugin.mo
share/locale/zh_CN/LC_MESSAGES/imgalleryplugin.mo
share/locale/zh_CN/LC_MESSAGES/irkick.mo
share/locale/zh_CN/LC_MESSAGES/joystick.mo
share/locale/zh_CN/LC_MESSAGES/juk.mo
share/locale/zh_CN/LC_MESSAGES/kabc2mutt.mo
share/locale/zh_CN/LC_MESSAGES/kabc_dir.mo
share/locale/zh_CN/LC_MESSAGES/kabc_file.mo
share/locale/zh_CN/LC_MESSAGES/kabc_ldapkio.mo
share/locale/zh_CN/LC_MESSAGES/kabc_net.mo
share/locale/zh_CN/LC_MESSAGES/kabc_slox.mo
share/locale/zh_CN/LC_MESSAGES/kabc_sql.mo
share/locale/zh_CN/LC_MESSAGES/kabcformat_binary.mo
share/locale/zh_CN/LC_MESSAGES/kaboodle.mo
share/locale/zh_CN/LC_MESSAGES/kaccess.mo
share/locale/zh_CN/LC_MESSAGES/kaddressbook.mo
share/locale/zh_CN/LC_MESSAGES/kalarm.mo
share/locale/zh_CN/LC_MESSAGES/kalzium.mo
share/locale/zh_CN/LC_MESSAGES/kandy.mo
share/locale/zh_CN/LC_MESSAGES/kappfinder.mo
share/locale/zh_CN/LC_MESSAGES/karm.mo
share/locale/zh_CN/LC_MESSAGES/kasbarextension.mo
share/locale/zh_CN/LC_MESSAGES/kasteroids.mo
share/locale/zh_CN/LC_MESSAGES/kate.mo
share/locale/zh_CN/LC_MESSAGES/katecppsymbolviewer.mo
share/locale/zh_CN/LC_MESSAGES/katefiletemplates.mo
share/locale/zh_CN/LC_MESSAGES/katefll_initplugin.mo
share/locale/zh_CN/LC_MESSAGES/katefll_plugin.mo
share/locale/zh_CN/LC_MESSAGES/katehelloworld.mo
share/locale/zh_CN/LC_MESSAGES/katehtmltools.mo
share/locale/zh_CN/LC_MESSAGES/kateinsertcommand.mo
share/locale/zh_CN/LC_MESSAGES/katekjswrapper.mo
share/locale/zh_CN/LC_MESSAGES/katemake.mo
share/locale/zh_CN/LC_MESSAGES/katemodeline.mo
share/locale/zh_CN/LC_MESSAGES/kateopenheader.mo
share/locale/zh_CN/LC_MESSAGES/katepart.mo
share/locale/zh_CN/LC_MESSAGES/katepybrowse.mo
share/locale/zh_CN/LC_MESSAGES/katesnippets.mo
share/locale/zh_CN/LC_MESSAGES/katetabbarextension.mo
share/locale/zh_CN/LC_MESSAGES/katetextfilter.mo
share/locale/zh_CN/LC_MESSAGES/katexmlcheck.mo
share/locale/zh_CN/LC_MESSAGES/katexmltools.mo
share/locale/zh_CN/LC_MESSAGES/katomic.mo
share/locale/zh_CN/LC_MESSAGES/kaudiocreator.mo
share/locale/zh_CN/LC_MESSAGES/kay.mo
share/locale/zh_CN/LC_MESSAGES/kbabel.mo
share/locale/zh_CN/LC_MESSAGES/kbackgammon.mo
share/locale/zh_CN/LC_MESSAGES/kbattleship.mo
share/locale/zh_CN/LC_MESSAGES/kbinaryclock.mo
share/locale/zh_CN/LC_MESSAGES/kblackbox.mo
share/locale/zh_CN/LC_MESSAGES/kbounce.mo
share/locale/zh_CN/LC_MESSAGES/kbruch.mo
share/locale/zh_CN/LC_MESSAGES/kbstateapplet.mo
share/locale/zh_CN/LC_MESSAGES/kbugbuster.mo
share/locale/zh_CN/LC_MESSAGES/kcalc.mo
share/locale/zh_CN/LC_MESSAGES/kcharselect.mo
share/locale/zh_CN/LC_MESSAGES/kcharselectapplet.mo
share/locale/zh_CN/LC_MESSAGES/kcm_krfb.mo
share/locale/zh_CN/LC_MESSAGES/kcm_kviewcanvasconfig.mo
share/locale/zh_CN/LC_MESSAGES/kcm_kviewgeneralconfig.mo
share/locale/zh_CN/LC_MESSAGES/kcm_kviewpluginsconfig.mo
share/locale/zh_CN/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo
share/locale/zh_CN/LC_MESSAGES/kcmaccess.mo
share/locale/zh_CN/LC_MESSAGES/kcmaccessibility.mo
share/locale/zh_CN/LC_MESSAGES/kcmarts.mo
share/locale/zh_CN/LC_MESSAGES/kcmaudiocd.mo
share/locale/zh_CN/LC_MESSAGES/kcmbackground.mo
share/locale/zh_CN/LC_MESSAGES/kcmbell.mo
share/locale/zh_CN/LC_MESSAGES/kcmcddb.mo
share/locale/zh_CN/LC_MESSAGES/kcmcgi.mo
share/locale/zh_CN/LC_MESSAGES/kcmcolors.mo
share/locale/zh_CN/LC_MESSAGES/kcmcomponentchooser.mo
share/locale/zh_CN/LC_MESSAGES/kcmcrypto.mo
share/locale/zh_CN/LC_MESSAGES/kcmcss.mo
share/locale/zh_CN/LC_MESSAGES/kcmenergy.mo
share/locale/zh_CN/LC_MESSAGES/kcmfonts.mo
share/locale/zh_CN/LC_MESSAGES/kcmhtmlsearch.mo
share/locale/zh_CN/LC_MESSAGES/kcmicons.mo
share/locale/zh_CN/LC_MESSAGES/kcminfo.mo
share/locale/zh_CN/LC_MESSAGES/kcminput.mo
share/locale/zh_CN/LC_MESSAGES/kcmioslaveinfo.mo
share/locale/zh_CN/LC_MESSAGES/kcmkabconfig.mo
share/locale/zh_CN/LC_MESSAGES/kcmkamera.mo
share/locale/zh_CN/LC_MESSAGES/kcmkclock.mo
share/locale/zh_CN/LC_MESSAGES/kcmkded.mo
share/locale/zh_CN/LC_MESSAGES/kcmkdnssd.mo
share/locale/zh_CN/LC_MESSAGES/kcmkeys.mo
share/locale/zh_CN/LC_MESSAGES/kcmkicker.mo
share/locale/zh_CN/LC_MESSAGES/kcmkio.mo
share/locale/zh_CN/LC_MESSAGES/kcmkonq.mo
share/locale/zh_CN/LC_MESSAGES/kcmkonqhtml.mo
share/locale/zh_CN/LC_MESSAGES/kcmkonsole.mo
share/locale/zh_CN/LC_MESSAGES/kcmkontactnt.mo
share/locale/zh_CN/LC_MESSAGES/kcmktalkd.mo
share/locale/zh_CN/LC_MESSAGES/kcmkuick.mo
share/locale/zh_CN/LC_MESSAGES/kcmkurifilt.mo
share/locale/zh_CN/LC_MESSAGES/kcmkvaio.mo
share/locale/zh_CN/LC_MESSAGES/kcmkwallet.mo
share/locale/zh_CN/LC_MESSAGES/kcmkwindecoration.mo
share/locale/zh_CN/LC_MESSAGES/kcmkwinrules.mo
share/locale/zh_CN/LC_MESSAGES/kcmkwm.mo
share/locale/zh_CN/LC_MESSAGES/kcmlanbrowser.mo
share/locale/zh_CN/LC_MESSAGES/kcmlaptop.mo
share/locale/zh_CN/LC_MESSAGES/kcmlaunch.mo
share/locale/zh_CN/LC_MESSAGES/kcmlayout.mo
share/locale/zh_CN/LC_MESSAGES/kcmlilo.mo
share/locale/zh_CN/LC_MESSAGES/kcmlocale.mo
share/locale/zh_CN/LC_MESSAGES/kcmmedia.mo
share/locale/zh_CN/LC_MESSAGES/kcmnic.mo
share/locale/zh_CN/LC_MESSAGES/kcmnotify.mo
share/locale/zh_CN/LC_MESSAGES/kcmperformance.mo
share/locale/zh_CN/LC_MESSAGES/kcmprintmgr.mo
share/locale/zh_CN/LC_MESSAGES/kcmsamba.mo
share/locale/zh_CN/LC_MESSAGES/kcmscreensaver.mo
share/locale/zh_CN/LC_MESSAGES/kcmshell.mo
share/locale/zh_CN/LC_MESSAGES/kcmsmartcard.mo
share/locale/zh_CN/LC_MESSAGES/kcmsmserver.mo
share/locale/zh_CN/LC_MESSAGES/kcmspellchecking.mo
share/locale/zh_CN/LC_MESSAGES/kcmstyle.mo
share/locale/zh_CN/LC_MESSAGES/kcmtaskbar.mo
share/locale/zh_CN/LC_MESSAGES/kcmthinkpad.mo
share/locale/zh_CN/LC_MESSAGES/kcmusb.mo
share/locale/zh_CN/LC_MESSAGES/kcmview1394.mo
share/locale/zh_CN/LC_MESSAGES/kcmwifi.mo
share/locale/zh_CN/LC_MESSAGES/kcmxinerama.mo
share/locale/zh_CN/LC_MESSAGES/kcoloredit.mo
share/locale/zh_CN/LC_MESSAGES/kcontrol.mo
share/locale/zh_CN/LC_MESSAGES/kcron.mo
share/locale/zh_CN/LC_MESSAGES/kdat.mo
share/locale/zh_CN/LC_MESSAGES/kdcop.mo
share/locale/zh_CN/LC_MESSAGES/kdebugdialog.mo
share/locale/zh_CN/LC_MESSAGES/kdelibs.mo
share/locale/zh_CN/LC_MESSAGES/kdelibs_colors.mo
share/locale/zh_CN/LC_MESSAGES/kdelirc.mo
share/locale/zh_CN/LC_MESSAGES/kdepasswd.mo
share/locale/zh_CN/LC_MESSAGES/kdepimresources.mo
share/locale/zh_CN/LC_MESSAGES/kdepimwizards.mo
share/locale/zh_CN/LC_MESSAGES/kdeprint.mo
share/locale/zh_CN/LC_MESSAGES/kdeprint_part.mo
share/locale/zh_CN/LC_MESSAGES/kdeprintfax.mo
share/locale/zh_CN/LC_MESSAGES/kdesktop.mo
share/locale/zh_CN/LC_MESSAGES/kdessh.mo
share/locale/zh_CN/LC_MESSAGES/kdesu.mo
share/locale/zh_CN/LC_MESSAGES/kdesud.mo
share/locale/zh_CN/LC_MESSAGES/kdevdesigner.mo
share/locale/zh_CN/LC_MESSAGES/kdevelop.mo
share/locale/zh_CN/LC_MESSAGES/kdevtipofday.mo
share/locale/zh_CN/LC_MESSAGES/kdf.mo
share/locale/zh_CN/LC_MESSAGES/kdgantt.mo
share/locale/zh_CN/LC_MESSAGES/kdialog.mo
share/locale/zh_CN/LC_MESSAGES/kdict.mo
share/locale/zh_CN/LC_MESSAGES/kdictapplet.mo
share/locale/zh_CN/LC_MESSAGES/kdjview.mo
share/locale/zh_CN/LC_MESSAGES/kdmconfig.mo
share/locale/zh_CN/LC_MESSAGES/kdmgreet.mo
share/locale/zh_CN/LC_MESSAGES/kdvi.mo
share/locale/zh_CN/LC_MESSAGES/kedit.mo
share/locale/zh_CN/LC_MESSAGES/keduca.mo
share/locale/zh_CN/LC_MESSAGES/kenolaba.mo
share/locale/zh_CN/LC_MESSAGES/kfax.mo
share/locale/zh_CN/LC_MESSAGES/kfaxview.mo
share/locale/zh_CN/LC_MESSAGES/kfifteenapplet.mo
share/locale/zh_CN/LC_MESSAGES/kfile_au.mo
share/locale/zh_CN/LC_MESSAGES/kfile_avi.mo
share/locale/zh_CN/LC_MESSAGES/kfile_bmp.mo
share/locale/zh_CN/LC_MESSAGES/kfile_cert.mo
share/locale/zh_CN/LC_MESSAGES/kfile_cpp.mo
share/locale/zh_CN/LC_MESSAGES/kfile_deb.mo
share/locale/zh_CN/LC_MESSAGES/kfile_desktop.mo
share/locale/zh_CN/LC_MESSAGES/kfile_diff.mo
share/locale/zh_CN/LC_MESSAGES/kfile_dvi.mo
share/locale/zh_CN/LC_MESSAGES/kfile_exr.mo
share/locale/zh_CN/LC_MESSAGES/kfile_flac.mo
share/locale/zh_CN/LC_MESSAGES/kfile_folder.mo
share/locale/zh_CN/LC_MESSAGES/kfile_gif.mo
share/locale/zh_CN/LC_MESSAGES/kfile_html.mo
share/locale/zh_CN/LC_MESSAGES/kfile_ico.mo
share/locale/zh_CN/LC_MESSAGES/kfile_ics.mo
share/locale/zh_CN/LC_MESSAGES/kfile_jpeg.mo
share/locale/zh_CN/LC_MESSAGES/kfile_lnk.mo
share/locale/zh_CN/LC_MESSAGES/kfile_m3u.mo
share/locale/zh_CN/LC_MESSAGES/kfile_mhtml.mo
share/locale/zh_CN/LC_MESSAGES/kfile_mp3.mo
share/locale/zh_CN/LC_MESSAGES/kfile_mpc.mo
share/locale/zh_CN/LC_MESSAGES/kfile_mpeg.mo
share/locale/zh_CN/LC_MESSAGES/kfile_ogg.mo
share/locale/zh_CN/LC_MESSAGES/kfile_palm.mo
share/locale/zh_CN/LC_MESSAGES/kfile_pcx.mo
share/locale/zh_CN/LC_MESSAGES/kfile_pdf.mo
share/locale/zh_CN/LC_MESSAGES/kfile_png.mo
share/locale/zh_CN/LC_MESSAGES/kfile_pnm.mo
share/locale/zh_CN/LC_MESSAGES/kfile_po.mo
share/locale/zh_CN/LC_MESSAGES/kfile_ps.mo
share/locale/zh_CN/LC_MESSAGES/kfile_rfc822.mo
share/locale/zh_CN/LC_MESSAGES/kfile_rgb.mo
share/locale/zh_CN/LC_MESSAGES/kfile_rpm.mo
share/locale/zh_CN/LC_MESSAGES/kfile_sid.mo
share/locale/zh_CN/LC_MESSAGES/kfile_tga.mo
share/locale/zh_CN/LC_MESSAGES/kfile_theora.mo
share/locale/zh_CN/LC_MESSAGES/kfile_tiff.mo
share/locale/zh_CN/LC_MESSAGES/kfile_torrent.mo
share/locale/zh_CN/LC_MESSAGES/kfile_ts.mo
share/locale/zh_CN/LC_MESSAGES/kfile_txt.mo
share/locale/zh_CN/LC_MESSAGES/kfile_vcf.mo
share/locale/zh_CN/LC_MESSAGES/kfile_wav.mo
share/locale/zh_CN/LC_MESSAGES/kfile_xbm.mo
share/locale/zh_CN/LC_MESSAGES/kfile_xpm.mo
share/locale/zh_CN/LC_MESSAGES/kfileaudiopreview.mo
share/locale/zh_CN/LC_MESSAGES/kfilereplace.mo
share/locale/zh_CN/LC_MESSAGES/kfileshare.mo
share/locale/zh_CN/LC_MESSAGES/kfindpart.mo
share/locale/zh_CN/LC_MESSAGES/kfloppy.mo
share/locale/zh_CN/LC_MESSAGES/kfmclient.mo
share/locale/zh_CN/LC_MESSAGES/kfontinst.mo
share/locale/zh_CN/LC_MESSAGES/kfouleggs.mo
share/locale/zh_CN/LC_MESSAGES/kgamma.mo
share/locale/zh_CN/LC_MESSAGES/kgantt.mo
share/locale/zh_CN/LC_MESSAGES/kgeography.mo
share/locale/zh_CN/LC_MESSAGES/kget.mo
share/locale/zh_CN/LC_MESSAGES/kghostview.mo
share/locale/zh_CN/LC_MESSAGES/kgpg.mo
share/locale/zh_CN/LC_MESSAGES/kgreet_classic.mo
share/locale/zh_CN/LC_MESSAGES/kgreet_winbind.mo
share/locale/zh_CN/LC_MESSAGES/khangman.mo
share/locale/zh_CN/LC_MESSAGES/khelpcenter.mo
share/locale/zh_CN/LC_MESSAGES/khexedit.mo
share/locale/zh_CN/LC_MESSAGES/khexedit2part.mo
share/locale/zh_CN/LC_MESSAGES/khotkeys.mo
share/locale/zh_CN/LC_MESSAGES/khtmlkttsd.mo
share/locale/zh_CN/LC_MESSAGES/khtmlsettingsplugin.mo
share/locale/zh_CN/LC_MESSAGES/kicker.mo
share/locale/zh_CN/LC_MESSAGES/kickermenu_kate.mo
share/locale/zh_CN/LC_MESSAGES/kiconedit.mo
share/locale/zh_CN/LC_MESSAGES/kig.mo
share/locale/zh_CN/LC_MESSAGES/kimagemapeditor.mo
share/locale/zh_CN/LC_MESSAGES/kinetd.mo
share/locale/zh_CN/LC_MESSAGES/kio.mo
share/locale/zh_CN/LC_MESSAGES/kio_audiocd.mo
share/locale/zh_CN/LC_MESSAGES/kio_finger.mo
share/locale/zh_CN/LC_MESSAGES/kio_fish.mo
share/locale/zh_CN/LC_MESSAGES/kio_floppy.mo
share/locale/zh_CN/LC_MESSAGES/kio_groupwise.mo
share/locale/zh_CN/LC_MESSAGES/kio_help.mo
share/locale/zh_CN/LC_MESSAGES/kio_home.mo
share/locale/zh_CN/LC_MESSAGES/kio_imap4.mo
share/locale/zh_CN/LC_MESSAGES/kio_jabberdisco.mo
share/locale/zh_CN/LC_MESSAGES/kio_lan.mo
share/locale/zh_CN/LC_MESSAGES/kio_ldap.mo
share/locale/zh_CN/LC_MESSAGES/kio_mac.mo
share/locale/zh_CN/LC_MESSAGES/kio_man.mo
share/locale/zh_CN/LC_MESSAGES/kio_media.mo
share/locale/zh_CN/LC_MESSAGES/kio_mobile.mo
share/locale/zh_CN/LC_MESSAGES/kio_nfs.mo
share/locale/zh_CN/LC_MESSAGES/kio_nntp.mo
share/locale/zh_CN/LC_MESSAGES/kio_pop3.mo
share/locale/zh_CN/LC_MESSAGES/kio_print.mo
share/locale/zh_CN/LC_MESSAGES/kio_remote.mo
share/locale/zh_CN/LC_MESSAGES/kio_settings.mo
share/locale/zh_CN/LC_MESSAGES/kio_sftp.mo
share/locale/zh_CN/LC_MESSAGES/kio_sieve.mo
share/locale/zh_CN/LC_MESSAGES/kio_smb.mo
share/locale/zh_CN/LC_MESSAGES/kio_smtp.mo
share/locale/zh_CN/LC_MESSAGES/kio_svn.mo
share/locale/zh_CN/LC_MESSAGES/kio_system.mo
share/locale/zh_CN/LC_MESSAGES/kio_tar.mo
share/locale/zh_CN/LC_MESSAGES/kio_thumbnail.mo
share/locale/zh_CN/LC_MESSAGES/kio_trash.mo
share/locale/zh_CN/LC_MESSAGES/kio_zeroconf.mo
share/locale/zh_CN/LC_MESSAGES/kioexec.mo
share/locale/zh_CN/LC_MESSAGES/kiten.mo
share/locale/zh_CN/LC_MESSAGES/kjobviewer.mo
share/locale/zh_CN/LC_MESSAGES/kjots.mo
share/locale/zh_CN/LC_MESSAGES/kjumpingcube.mo
share/locale/zh_CN/LC_MESSAGES/klaptopdaemon.mo
share/locale/zh_CN/LC_MESSAGES/klatin.mo
share/locale/zh_CN/LC_MESSAGES/kleopatra.mo
share/locale/zh_CN/LC_MESSAGES/klettres.mo
share/locale/zh_CN/LC_MESSAGES/klickety.mo
share/locale/zh_CN/LC_MESSAGES/klines.mo
share/locale/zh_CN/LC_MESSAGES/klinkstatus.mo
share/locale/zh_CN/LC_MESSAGES/klipper.mo
share/locale/zh_CN/LC_MESSAGES/klock.mo
share/locale/zh_CN/LC_MESSAGES/kmag.mo
share/locale/zh_CN/LC_MESSAGES/kmahjongg.mo
share/locale/zh_CN/LC_MESSAGES/kmail.mo
share/locale/zh_CN/LC_MESSAGES/kmail_text_calendar_plugin.mo
share/locale/zh_CN/LC_MESSAGES/kmail_text_vcard_plugin.mo
share/locale/zh_CN/LC_MESSAGES/kmailcvt.mo
share/locale/zh_CN/LC_MESSAGES/kmathapplet.mo
share/locale/zh_CN/LC_MESSAGES/kmcop.mo
share/locale/zh_CN/LC_MESSAGES/kmenuapplet.mo
share/locale/zh_CN/LC_MESSAGES/kmenuedit.mo
share/locale/zh_CN/LC_MESSAGES/kmid.mo
share/locale/zh_CN/LC_MESSAGES/kmilo_delli8k.mo
share/locale/zh_CN/LC_MESSAGES/kmilo_generic.mo
share/locale/zh_CN/LC_MESSAGES/kmilo_kvaio.mo
share/locale/zh_CN/LC_MESSAGES/kmilo_powerbook.mo
share/locale/zh_CN/LC_MESSAGES/kmilo_thinkpad.mo
share/locale/zh_CN/LC_MESSAGES/kmilod.mo
share/locale/zh_CN/LC_MESSAGES/kmines.mo
share/locale/zh_CN/LC_MESSAGES/kminipagerapplet.mo
share/locale/zh_CN/LC_MESSAGES/kmix.mo
share/locale/zh_CN/LC_MESSAGES/kmobile.mo
share/locale/zh_CN/LC_MESSAGES/kmoon.mo
share/locale/zh_CN/LC_MESSAGES/kmousetool.mo
share/locale/zh_CN/LC_MESSAGES/kmouth.mo
share/locale/zh_CN/LC_MESSAGES/kmplot.mo
share/locale/zh_CN/LC_MESSAGES/kmrml.mo
share/locale/zh_CN/LC_MESSAGES/knetattach.mo
share/locale/zh_CN/LC_MESSAGES/knetworkconf.mo
share/locale/zh_CN/LC_MESSAGES/knewsticker.mo
share/locale/zh_CN/LC_MESSAGES/knode.mo
share/locale/zh_CN/LC_MESSAGES/knotes.mo
share/locale/zh_CN/LC_MESSAGES/knotify.mo
share/locale/zh_CN/LC_MESSAGES/kodo.mo
share/locale/zh_CN/LC_MESSAGES/kolf.mo
share/locale/zh_CN/LC_MESSAGES/kolourpaint.mo
share/locale/zh_CN/LC_MESSAGES/kolourpicker.mo
share/locale/zh_CN/LC_MESSAGES/kommander.mo
share/locale/zh_CN/LC_MESSAGES/kompare.mo
share/locale/zh_CN/LC_MESSAGES/konnector_dummy.mo
share/locale/zh_CN/LC_MESSAGES/konnector_kabc.mo
share/locale/zh_CN/LC_MESSAGES/konnector_kcal.mo
share/locale/zh_CN/LC_MESSAGES/konnector_local.mo
share/locale/zh_CN/LC_MESSAGES/konnector_qtopia.mo
share/locale/zh_CN/LC_MESSAGES/konnector_remote.mo
share/locale/zh_CN/LC_MESSAGES/konqsidebar_delicious.mo
share/locale/zh_CN/LC_MESSAGES/konqsidebar_mediaplayer.mo
share/locale/zh_CN/LC_MESSAGES/konqsidebar_metabar.mo
share/locale/zh_CN/LC_MESSAGES/konqsidebar_news.mo
share/locale/zh_CN/LC_MESSAGES/konqueror.mo
share/locale/zh_CN/LC_MESSAGES/konquest.mo
share/locale/zh_CN/LC_MESSAGES/konsole.mo
share/locale/zh_CN/LC_MESSAGES/konsolekalendar.mo
share/locale/zh_CN/LC_MESSAGES/kontact.mo
share/locale/zh_CN/LC_MESSAGES/kooka.mo
share/locale/zh_CN/LC_MESSAGES/kopete.mo
share/locale/zh_CN/LC_MESSAGES/korganizer.mo
share/locale/zh_CN/LC_MESSAGES/korn.mo
share/locale/zh_CN/LC_MESSAGES/kpackage.mo
share/locale/zh_CN/LC_MESSAGES/kpager.mo
share/locale/zh_CN/LC_MESSAGES/kpartsaver.mo
share/locale/zh_CN/LC_MESSAGES/kpat.mo
share/locale/zh_CN/LC_MESSAGES/kpdf.mo
share/locale/zh_CN/LC_MESSAGES/kpercentage.mo
share/locale/zh_CN/LC_MESSAGES/kpersonalizer.mo
share/locale/zh_CN/LC_MESSAGES/kpf.mo
share/locale/zh_CN/LC_MESSAGES/kpilot.mo
share/locale/zh_CN/LC_MESSAGES/kpoker.mo
share/locale/zh_CN/LC_MESSAGES/kpovmodeler.mo
share/locale/zh_CN/LC_MESSAGES/kppp.mo
share/locale/zh_CN/LC_MESSAGES/kppplogview.mo
share/locale/zh_CN/LC_MESSAGES/kprinter.mo
share/locale/zh_CN/LC_MESSAGES/krandr.mo
share/locale/zh_CN/LC_MESSAGES/krdb.mo
share/locale/zh_CN/LC_MESSAGES/krdc.mo
share/locale/zh_CN/LC_MESSAGES/kreadconfig.mo
share/locale/zh_CN/LC_MESSAGES/krec.mo
share/locale/zh_CN/LC_MESSAGES/kregexpeditor.mo
share/locale/zh_CN/LC_MESSAGES/kres_birthday.mo
share/locale/zh_CN/LC_MESSAGES/kres_blogging.mo
share/locale/zh_CN/LC_MESSAGES/kres_bugzilla.mo
share/locale/zh_CN/LC_MESSAGES/kres_exchange.mo
share/locale/zh_CN/LC_MESSAGES/kres_featureplan.mo
share/locale/zh_CN/LC_MESSAGES/kres_groupware.mo
share/locale/zh_CN/LC_MESSAGES/kres_groupwise.mo
share/locale/zh_CN/LC_MESSAGES/kres_kolab.mo
share/locale/zh_CN/LC_MESSAGES/kres_remote.mo
share/locale/zh_CN/LC_MESSAGES/kres_xmlrpc.mo
share/locale/zh_CN/LC_MESSAGES/kreversi.mo
share/locale/zh_CN/LC_MESSAGES/krfb.mo
share/locale/zh_CN/LC_MESSAGES/kruler.mo
share/locale/zh_CN/LC_MESSAGES/krunapplet.mo
share/locale/zh_CN/LC_MESSAGES/ksame.mo
share/locale/zh_CN/LC_MESSAGES/ksayit.mo
share/locale/zh_CN/LC_MESSAGES/kscd.mo
share/locale/zh_CN/LC_MESSAGES/kscreensaver.mo
share/locale/zh_CN/LC_MESSAGES/kshisen.mo
share/locale/zh_CN/LC_MESSAGES/ksig.mo
share/locale/zh_CN/LC_MESSAGES/ksim.mo
share/locale/zh_CN/LC_MESSAGES/ksirc.mo
share/locale/zh_CN/LC_MESSAGES/ksirtet.mo
share/locale/zh_CN/LC_MESSAGES/ksmiletris.mo
share/locale/zh_CN/LC_MESSAGES/ksmserver.mo
share/locale/zh_CN/LC_MESSAGES/ksnake.mo
share/locale/zh_CN/LC_MESSAGES/ksnapshot.mo
share/locale/zh_CN/LC_MESSAGES/ksokoban.mo
share/locale/zh_CN/LC_MESSAGES/kspaceduel.mo
share/locale/zh_CN/LC_MESSAGES/ksplash.mo
share/locale/zh_CN/LC_MESSAGES/ksplashthemes.mo
share/locale/zh_CN/LC_MESSAGES/kstars.mo
share/locale/zh_CN/LC_MESSAGES/kstart.mo
share/locale/zh_CN/LC_MESSAGES/kstartperf.mo
share/locale/zh_CN/LC_MESSAGES/kstyle_highcontrast_config.mo
share/locale/zh_CN/LC_MESSAGES/kstyle_keramik_config.mo
share/locale/zh_CN/LC_MESSAGES/kstyle_phase_config.mo
share/locale/zh_CN/LC_MESSAGES/kstyle_plastik_config.mo
share/locale/zh_CN/LC_MESSAGES/ksvgplugin.mo
share/locale/zh_CN/LC_MESSAGES/ksysguard.mo
share/locale/zh_CN/LC_MESSAGES/ksystemtrayapplet.mo
share/locale/zh_CN/LC_MESSAGES/ksystraycmd.mo
share/locale/zh_CN/LC_MESSAGES/ksysv.mo
share/locale/zh_CN/LC_MESSAGES/kteatime.mo
share/locale/zh_CN/LC_MESSAGES/ktexteditor_autobookmarker.mo
share/locale/zh_CN/LC_MESSAGES/ktexteditor_docwordcompletion.mo
share/locale/zh_CN/LC_MESSAGES/ktexteditor_insertfile.mo
share/locale/zh_CN/LC_MESSAGES/ktexteditor_isearch.mo
share/locale/zh_CN/LC_MESSAGES/ktexteditor_kdatatool.mo
share/locale/zh_CN/LC_MESSAGES/kthememanager.mo
share/locale/zh_CN/LC_MESSAGES/ktimemon.mo
share/locale/zh_CN/LC_MESSAGES/ktimer.mo
share/locale/zh_CN/LC_MESSAGES/ktip.mo
share/locale/zh_CN/LC_MESSAGES/ktouch.mo
share/locale/zh_CN/LC_MESSAGES/ktron.mo
share/locale/zh_CN/LC_MESSAGES/kttsd.mo
share/locale/zh_CN/LC_MESSAGES/ktuberling.mo
share/locale/zh_CN/LC_MESSAGES/kturtle.mo
share/locale/zh_CN/LC_MESSAGES/ktux.mo
share/locale/zh_CN/LC_MESSAGES/kuick_plugin.mo
share/locale/zh_CN/LC_MESSAGES/kuickshow.mo
share/locale/zh_CN/LC_MESSAGES/kuiviewer.mo
share/locale/zh_CN/LC_MESSAGES/kuser.mo
share/locale/zh_CN/LC_MESSAGES/kverbos.mo
share/locale/zh_CN/LC_MESSAGES/kview.mo
share/locale/zh_CN/LC_MESSAGES/kview_scale.mo
share/locale/zh_CN/LC_MESSAGES/kviewbrowserplugin.mo
share/locale/zh_CN/LC_MESSAGES/kviewcanvas.mo
share/locale/zh_CN/LC_MESSAGES/kvieweffectsplugin.mo
share/locale/zh_CN/LC_MESSAGES/kviewpresenterplugin.mo
share/locale/zh_CN/LC_MESSAGES/kviewscannerplugin.mo
share/locale/zh_CN/LC_MESSAGES/kviewshell.mo
share/locale/zh_CN/LC_MESSAGES/kviewviewer.mo
share/locale/zh_CN/LC_MESSAGES/kvoctrain.mo
share/locale/zh_CN/LC_MESSAGES/kwalletmanager.mo
share/locale/zh_CN/LC_MESSAGES/kwatchgnupg.mo
share/locale/zh_CN/LC_MESSAGES/kweather.mo
share/locale/zh_CN/LC_MESSAGES/kwifimanager.mo
share/locale/zh_CN/LC_MESSAGES/kwin.mo
share/locale/zh_CN/LC_MESSAGES/kwin4.mo
share/locale/zh_CN/LC_MESSAGES/kwin_art_clients.mo
share/locale/zh_CN/LC_MESSAGES/kwin_clients.mo
share/locale/zh_CN/LC_MESSAGES/kwin_lib.mo
share/locale/zh_CN/LC_MESSAGES/kwireless.mo
share/locale/zh_CN/LC_MESSAGES/kwordquiz.mo
share/locale/zh_CN/LC_MESSAGES/kworldclock.mo
share/locale/zh_CN/LC_MESSAGES/kwriteconfig.mo
share/locale/zh_CN/LC_MESSAGES/kxkb.mo
share/locale/zh_CN/LC_MESSAGES/kxsconfig.mo
share/locale/zh_CN/LC_MESSAGES/kxsldbg.mo
share/locale/zh_CN/LC_MESSAGES/libdmctl.mo
share/locale/zh_CN/LC_MESSAGES/libkaddrbk_geo_xxport.mo
share/locale/zh_CN/LC_MESSAGES/libkaddrbk_gmx_xxport.mo
share/locale/zh_CN/LC_MESSAGES/libkcal.mo
share/locale/zh_CN/LC_MESSAGES/libkcddb.mo
share/locale/zh_CN/LC_MESSAGES/libkdegames.mo
share/locale/zh_CN/LC_MESSAGES/libkdepim.mo
share/locale/zh_CN/LC_MESSAGES/libkholidays.mo
share/locale/zh_CN/LC_MESSAGES/libkicker.mo
share/locale/zh_CN/LC_MESSAGES/libkickermenu_kdeprint.mo
share/locale/zh_CN/LC_MESSAGES/libkickermenu_konsole.mo
share/locale/zh_CN/LC_MESSAGES/libkickermenu_prefmenu.mo
share/locale/zh_CN/LC_MESSAGES/libkickermenu_recentdocs.mo
share/locale/zh_CN/LC_MESSAGES/libkickermenu_remotemenu.mo
share/locale/zh_CN/LC_MESSAGES/libkickermenu_systemmenu.mo
share/locale/zh_CN/LC_MESSAGES/libkickermenu_tom.mo
share/locale/zh_CN/LC_MESSAGES/libkleopatra.mo
share/locale/zh_CN/LC_MESSAGES/libkmime.mo
share/locale/zh_CN/LC_MESSAGES/libkonq.mo
share/locale/zh_CN/LC_MESSAGES/libkpimexchange.mo
share/locale/zh_CN/LC_MESSAGES/libkscan.mo
share/locale/zh_CN/LC_MESSAGES/libkscreensaver.mo
share/locale/zh_CN/LC_MESSAGES/libksieve.mo
share/locale/zh_CN/LC_MESSAGES/libksirtet.mo
share/locale/zh_CN/LC_MESSAGES/libksync.mo
share/locale/zh_CN/LC_MESSAGES/libtaskbar.mo
share/locale/zh_CN/LC_MESSAGES/libtaskmanager.mo
share/locale/zh_CN/LC_MESSAGES/lockout.mo
share/locale/zh_CN/LC_MESSAGES/lskat.mo
share/locale/zh_CN/LC_MESSAGES/lyrics.mo
share/locale/zh_CN/LC_MESSAGES/mediaapplet.mo
share/locale/zh_CN/LC_MESSAGES/mediacontrol.mo
share/locale/zh_CN/LC_MESSAGES/mf_konqplugin.mo
share/locale/zh_CN/LC_MESSAGES/minitoolsplugin.mo
share/locale/zh_CN/LC_MESSAGES/multisynk.mo
share/locale/zh_CN/LC_MESSAGES/naughtyapplet.mo
share/locale/zh_CN/LC_MESSAGES/nexscope.mo
share/locale/zh_CN/LC_MESSAGES/noatun.mo
share/locale/zh_CN/LC_MESSAGES/nsplugin.mo
share/locale/zh_CN/LC_MESSAGES/pitchablespeed.mo
share/locale/zh_CN/LC_MESSAGES/ppdtranslations.mo
share/locale/zh_CN/LC_MESSAGES/privacy.mo
share/locale/zh_CN/LC_MESSAGES/quanta.mo
share/locale/zh_CN/LC_MESSAGES/quicklauncher.mo
share/locale/zh_CN/LC_MESSAGES/rellinks.mo
share/locale/zh_CN/LC_MESSAGES/searchbarplugin.mo
share/locale/zh_CN/LC_MESSAGES/secpolicy.mo
share/locale/zh_CN/LC_MESSAGES/spy.mo
share/locale/zh_CN/LC_MESSAGES/superkaramba.mo
share/locale/zh_CN/LC_MESSAGES/synaescope.mo
share/locale/zh_CN/LC_MESSAGES/timezones.mo
share/locale/zh_CN/LC_MESSAGES/tippecanoe.mo
share/locale/zh_CN/LC_MESSAGES/trashapplet.mo
share/locale/zh_CN/LC_MESSAGES/tyler.mo
share/locale/zh_CN/LC_MESSAGES/uachangerplugin.mo
share/locale/zh_CN/LC_MESSAGES/umbrello.mo
share/locale/zh_CN/LC_MESSAGES/useraccount.mo
share/locale/zh_CN/LC_MESSAGES/validatorsplugin.mo
share/locale/zh_CN/LC_MESSAGES/wakeup.mo
share/locale/zh_CN/LC_MESSAGES/wavecapture.mo
share/locale/zh_CN/LC_MESSAGES/webarchiver.mo
share/locale/zh_CN/charset
share/locale/zh_CN/entry.desktop
share/locale/zh_CN/flag.png
@dirrm share/doc/HTML/zh_CN/kdevelop
@dirrm share/doc/HTML/zh_CN/docs/common
@dirrm share/doc/HTML/zh_CN/docs
share/locale/zh_CN/LC_MESSAGES/desktop_koffice.mo
share/locale/zh_CN/LC_MESSAGES/example.mo
share/locale/zh_CN/LC_MESSAGES/karbon.mo
share/locale/zh_CN/LC_MESSAGES/kchart.mo
share/locale/zh_CN/LC_MESSAGES/kexi.mo
share/locale/zh_CN/LC_MESSAGES/kfile_abiword.mo
share/locale/zh_CN/LC_MESSAGES/kfile_gnumeric.mo
share/locale/zh_CN/LC_MESSAGES/kfile_koffice.mo
share/locale/zh_CN/LC_MESSAGES/kfile_ooo.mo
share/locale/zh_CN/LC_MESSAGES/kformdesigner.mo
share/locale/zh_CN/LC_MESSAGES/kformula.mo
share/locale/zh_CN/LC_MESSAGES/kivio.mo
share/locale/zh_CN/LC_MESSAGES/koconverter.mo
share/locale/zh_CN/LC_MESSAGES/koffice.mo
share/locale/zh_CN/LC_MESSAGES/kofficefilters.mo
share/locale/zh_CN/LC_MESSAGES/koproperty.mo
share/locale/zh_CN/LC_MESSAGES/koshell.mo
share/locale/zh_CN/LC_MESSAGES/kounavail.mo
share/locale/zh_CN/LC_MESSAGES/kplato.mo
share/locale/zh_CN/LC_MESSAGES/kpresenter.mo
share/locale/zh_CN/LC_MESSAGES/krita.mo
share/locale/zh_CN/LC_MESSAGES/kscan_plugin.mo
share/locale/zh_CN/LC_MESSAGES/kscreenshot_plugin.mo
share/locale/zh_CN/LC_MESSAGES/kspread.mo
share/locale/zh_CN/LC_MESSAGES/kspreadcalc_calc.mo
share/locale/zh_CN/LC_MESSAGES/kspreadinsertcalendar.mo
share/locale/zh_CN/LC_MESSAGES/kthesaurus.mo
share/locale/zh_CN/LC_MESSAGES/kugar.mo
share/locale/zh_CN/LC_MESSAGES/kword.mo
share/locale/zh_CN/LC_MESSAGES/thesaurus_tool.mo

View File

@ -1,20 +1,20 @@
# New ports collection makefile for: kde3-i18n-zh_TW
# Date created: 05 April 2002
# Whom: Lauri Watts <lauri@kde.org>
# New ports collection makefile for: koffice-i18n-zh_TW
# Date created: 27 April 2003
# Whom: Michael Nottebrock <michaelnottebrock@gmx.net>
#
# $FreeBSD$
#
PORTNAME= kde-i18n
PORTVERSION= ${KDE_VERSION}
PORTNAME= koffice-i18n
PORTVERSION= 1.6.3
CATEGORIES?= chinese kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n
MASTER_SITE_SUBDIR= stable/koffice-${PORTVERSION}/src/koffice-l10n
PKGNAMEPREFIX= zh_TW-
DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
COMMENT= Traditional Chinese messages and documentation for KDE3
COMMENT= Traditional Chinese messages and documentation for koffice
BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext

View File

@ -1,3 +1,3 @@
MD5 (KDE/kde-i18n/kde-i18n-zh_TW-3.5.8.tar.bz2) = 7defcfa0506759695f92e2835b06abeb
SHA256 (KDE/kde-i18n/kde-i18n-zh_TW-3.5.8.tar.bz2) = 0c0cc5df518a9560e2e87258a5d506943c2442be308e14367bc6bb0e8b98d415
SIZE (KDE/kde-i18n/kde-i18n-zh_TW-3.5.8.tar.bz2) = 2271900
MD5 (KDE/kde-i18n/koffice-l10n-zh_TW-1.6.3.tar.bz2) = 7c7c3787a45743ae9d06938829381d2e
SHA256 (KDE/kde-i18n/koffice-l10n-zh_TW-1.6.3.tar.bz2) = f4c3d16903a487ea4127d7deee62b16a7b648aee92338498734da0cff88fc248
SIZE (KDE/kde-i18n/koffice-l10n-zh_TW-1.6.3.tar.bz2) = 365213

View File

@ -1,3 +1,3 @@
Localized messages and documentation for KDE3.
Localized messages and documentation for koffice.
WWW: http://i18n.kde.org/
WWW: http://koffice.kde.org/

View File

@ -1,595 +1,30 @@
share/doc/HTML/zh_TW/docs/common/fdl-translated.html
share/doc/HTML/zh_TW/docs/common/gpl-translated.html
share/doc/HTML/zh_TW/docs/common/kde-localised.css
share/doc/HTML/zh_TW/docs/common/lgpl-translated.html
share/doc/HTML/zh_TW/docs/common/logotp3.png
share/doc/HTML/zh_TW/khelpcenter/contact.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/about.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/common
share/doc/HTML/zh_TW/khelpcenter/faq/configkde.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/contrib.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/desktop.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/filemng.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/getkde.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/index.cache.bz2
share/doc/HTML/zh_TW/khelpcenter/faq/index.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/install.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/intro.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/kdeapps.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/misc.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/moreinfo.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/nonkdeapps.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/notrelated.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/panel.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/qt.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/questions.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/sound.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/tips.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/webbrowse.docbook
share/doc/HTML/zh_TW/khelpcenter/faq/winmng.docbook
share/doc/HTML/zh_TW/khelpcenter/help.docbook
share/doc/HTML/zh_TW/khelpcenter/links.docbook
share/doc/HTML/zh_TW/khelpcenter/support.docbook
share/doc/HTML/zh_TW/khelpcenter/welcome.docbook
share/doc/HTML/zh_TW/khelpcenter/whatiskde.docbook
share/locale/zh_TW/LC_MESSAGES/akregator.mo
share/locale/zh_TW/LC_MESSAGES/akregator_konqplugin.mo
share/locale/zh_TW/LC_MESSAGES/alsaplayerui.mo
share/locale/zh_TW/LC_MESSAGES/amor.mo
share/locale/zh_TW/LC_MESSAGES/appletproxy.mo
share/locale/zh_TW/LC_MESSAGES/ark.mo
share/locale/zh_TW/LC_MESSAGES/ark_plugin.mo
share/locale/zh_TW/LC_MESSAGES/artsbuilder.mo
share/locale/zh_TW/LC_MESSAGES/artscontrol.mo
share/locale/zh_TW/LC_MESSAGES/artsmodules.mo
share/locale/zh_TW/LC_MESSAGES/atlantik.mo
share/locale/zh_TW/LC_MESSAGES/atlantikdesigner.mo
share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_lame.mo
share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_vorbis.mo
share/locale/zh_TW/LC_MESSAGES/audiorename_plugin.mo
share/locale/zh_TW/LC_MESSAGES/autorefresh.mo
share/locale/zh_TW/LC_MESSAGES/babelfish.mo
share/locale/zh_TW/LC_MESSAGES/blinken.mo
share/locale/zh_TW/LC_MESSAGES/cervisia.mo
share/locale/zh_TW/LC_MESSAGES/charlatanui.mo
share/locale/zh_TW/LC_MESSAGES/clockapplet.mo
share/locale/zh_TW/LC_MESSAGES/crashesplugin.mo
share/locale/zh_TW/LC_MESSAGES/cupsdconf.mo
share/locale/zh_TW/LC_MESSAGES/cvsservice.mo
share/locale/zh_TW/LC_MESSAGES/dcoprss.mo
share/locale/zh_TW/LC_MESSAGES/dirfilterplugin.mo
share/locale/zh_TW/LC_MESSAGES/display.mo
share/locale/zh_TW/LC_MESSAGES/dockbarextension.mo
share/locale/zh_TW/LC_MESSAGES/domtreeviewer.mo
share/locale/zh_TW/LC_MESSAGES/drkonqi.mo
share/locale/zh_TW/LC_MESSAGES/dub.mo
share/locale/zh_TW/LC_MESSAGES/extensionproxy.mo
share/locale/zh_TW/LC_MESSAGES/ffrs.mo
share/locale/zh_TW/LC_MESSAGES/filetypes.mo
share/locale/zh_TW/LC_MESSAGES/fsview.mo
share/locale/zh_TW/LC_MESSAGES/htmlsearch.mo
share/locale/zh_TW/LC_MESSAGES/imagerename_plugin.mo
share/locale/zh_TW/LC_MESSAGES/imgalleryplugin.mo
share/locale/zh_TW/LC_MESSAGES/irkick.mo
share/locale/zh_TW/LC_MESSAGES/joystick.mo
share/locale/zh_TW/LC_MESSAGES/juk.mo
share/locale/zh_TW/LC_MESSAGES/kabc2mutt.mo
share/locale/zh_TW/LC_MESSAGES/kabc_dir.mo
share/locale/zh_TW/LC_MESSAGES/kabc_file.mo
share/locale/zh_TW/LC_MESSAGES/kabc_ldapkio.mo
share/locale/zh_TW/LC_MESSAGES/kabc_net.mo
share/locale/zh_TW/LC_MESSAGES/kabc_slox.mo
share/locale/zh_TW/LC_MESSAGES/kabc_sql.mo
share/locale/zh_TW/LC_MESSAGES/kabcformat_binary.mo
share/locale/zh_TW/LC_MESSAGES/kaboodle.mo
share/locale/zh_TW/LC_MESSAGES/kaccess.mo
share/locale/zh_TW/LC_MESSAGES/kaddressbook.mo
share/locale/zh_TW/LC_MESSAGES/kalarm.mo
share/locale/zh_TW/LC_MESSAGES/kalzium.mo
share/locale/zh_TW/LC_MESSAGES/kanagram.mo
share/locale/zh_TW/LC_MESSAGES/kandy.mo
share/locale/zh_TW/LC_MESSAGES/kappfinder.mo
share/locale/zh_TW/LC_MESSAGES/karm.mo
share/locale/zh_TW/LC_MESSAGES/kasbarextension.mo
share/locale/zh_TW/LC_MESSAGES/kasteroids.mo
share/locale/zh_TW/LC_MESSAGES/kate.mo
share/locale/zh_TW/LC_MESSAGES/katecppsymbolviewer.mo
share/locale/zh_TW/LC_MESSAGES/katefiletemplates.mo
share/locale/zh_TW/LC_MESSAGES/katefll_initplugin.mo
share/locale/zh_TW/LC_MESSAGES/katefll_plugin.mo
share/locale/zh_TW/LC_MESSAGES/katehelloworld.mo
share/locale/zh_TW/LC_MESSAGES/katehtmltools.mo
share/locale/zh_TW/LC_MESSAGES/kateinsertcommand.mo
share/locale/zh_TW/LC_MESSAGES/katekjswrapper.mo
share/locale/zh_TW/LC_MESSAGES/katemake.mo
share/locale/zh_TW/LC_MESSAGES/katemodeline.mo
share/locale/zh_TW/LC_MESSAGES/kateopenheader.mo
share/locale/zh_TW/LC_MESSAGES/katepart.mo
share/locale/zh_TW/LC_MESSAGES/katepybrowse.mo
share/locale/zh_TW/LC_MESSAGES/katesnippets.mo
share/locale/zh_TW/LC_MESSAGES/katetabbarextension.mo
share/locale/zh_TW/LC_MESSAGES/katetextfilter.mo
share/locale/zh_TW/LC_MESSAGES/katexmlcheck.mo
share/locale/zh_TW/LC_MESSAGES/katexmltools.mo
share/locale/zh_TW/LC_MESSAGES/katomic.mo
share/locale/zh_TW/LC_MESSAGES/kaudiocreator.mo
share/locale/zh_TW/LC_MESSAGES/kay.mo
share/locale/zh_TW/LC_MESSAGES/kbabel.mo
share/locale/zh_TW/LC_MESSAGES/kbackgammon.mo
share/locale/zh_TW/LC_MESSAGES/kbattleship.mo
share/locale/zh_TW/LC_MESSAGES/kbinaryclock.mo
share/locale/zh_TW/LC_MESSAGES/kblackbox.mo
share/locale/zh_TW/LC_MESSAGES/kbounce.mo
share/locale/zh_TW/LC_MESSAGES/kbruch.mo
share/locale/zh_TW/LC_MESSAGES/kbstateapplet.mo
share/locale/zh_TW/LC_MESSAGES/kbugbuster.mo
share/locale/zh_TW/LC_MESSAGES/kcachegrind.mo
share/locale/zh_TW/LC_MESSAGES/kcalc.mo
share/locale/zh_TW/LC_MESSAGES/kcharselect.mo
share/locale/zh_TW/LC_MESSAGES/kcharselectapplet.mo
share/locale/zh_TW/LC_MESSAGES/kcm_krfb.mo
share/locale/zh_TW/LC_MESSAGES/kcm_kviewcanvasconfig.mo
share/locale/zh_TW/LC_MESSAGES/kcm_kviewgeneralconfig.mo
share/locale/zh_TW/LC_MESSAGES/kcm_kviewpluginsconfig.mo
share/locale/zh_TW/LC_MESSAGES/kcm_kviewviewerpluginsconfig.mo
share/locale/zh_TW/LC_MESSAGES/kcmaccess.mo
share/locale/zh_TW/LC_MESSAGES/kcmaccessibility.mo
share/locale/zh_TW/LC_MESSAGES/kcmarts.mo
share/locale/zh_TW/LC_MESSAGES/kcmaudiocd.mo
share/locale/zh_TW/LC_MESSAGES/kcmbackground.mo
share/locale/zh_TW/LC_MESSAGES/kcmbell.mo
share/locale/zh_TW/LC_MESSAGES/kcmcddb.mo
share/locale/zh_TW/LC_MESSAGES/kcmcgi.mo
share/locale/zh_TW/LC_MESSAGES/kcmcolors.mo
share/locale/zh_TW/LC_MESSAGES/kcmcomponentchooser.mo
share/locale/zh_TW/LC_MESSAGES/kcmcrypto.mo
share/locale/zh_TW/LC_MESSAGES/kcmcss.mo
share/locale/zh_TW/LC_MESSAGES/kcmenergy.mo
share/locale/zh_TW/LC_MESSAGES/kcmfonts.mo
share/locale/zh_TW/LC_MESSAGES/kcmhtmlsearch.mo
share/locale/zh_TW/LC_MESSAGES/kcmicons.mo
share/locale/zh_TW/LC_MESSAGES/kcminfo.mo
share/locale/zh_TW/LC_MESSAGES/kcminput.mo
share/locale/zh_TW/LC_MESSAGES/kcmioslaveinfo.mo
share/locale/zh_TW/LC_MESSAGES/kcmkabconfig.mo
share/locale/zh_TW/LC_MESSAGES/kcmkamera.mo
share/locale/zh_TW/LC_MESSAGES/kcmkclock.mo
share/locale/zh_TW/LC_MESSAGES/kcmkded.mo
share/locale/zh_TW/LC_MESSAGES/kcmkdnssd.mo
share/locale/zh_TW/LC_MESSAGES/kcmkeys.mo
share/locale/zh_TW/LC_MESSAGES/kcmkicker.mo
share/locale/zh_TW/LC_MESSAGES/kcmkio.mo
share/locale/zh_TW/LC_MESSAGES/kcmkonq.mo
share/locale/zh_TW/LC_MESSAGES/kcmkonqhtml.mo
share/locale/zh_TW/LC_MESSAGES/kcmkonsole.mo
share/locale/zh_TW/LC_MESSAGES/kcmkontactnt.mo
share/locale/zh_TW/LC_MESSAGES/kcmktalkd.mo
share/locale/zh_TW/LC_MESSAGES/kcmkuick.mo
share/locale/zh_TW/LC_MESSAGES/kcmkurifilt.mo
share/locale/zh_TW/LC_MESSAGES/kcmkvaio.mo
share/locale/zh_TW/LC_MESSAGES/kcmkwallet.mo
share/locale/zh_TW/LC_MESSAGES/kcmkwindecoration.mo
share/locale/zh_TW/LC_MESSAGES/kcmkwinrules.mo
share/locale/zh_TW/LC_MESSAGES/kcmkwm.mo
share/locale/zh_TW/LC_MESSAGES/kcmlanbrowser.mo
share/locale/zh_TW/LC_MESSAGES/kcmlaptop.mo
share/locale/zh_TW/LC_MESSAGES/kcmlaunch.mo
share/locale/zh_TW/LC_MESSAGES/kcmlayout.mo
share/locale/zh_TW/LC_MESSAGES/kcmlilo.mo
share/locale/zh_TW/LC_MESSAGES/kcmlirc.mo
share/locale/zh_TW/LC_MESSAGES/kcmlocale.mo
share/locale/zh_TW/LC_MESSAGES/kcmmedia.mo
share/locale/zh_TW/LC_MESSAGES/kcmnic.mo
share/locale/zh_TW/LC_MESSAGES/kcmnotify.mo
share/locale/zh_TW/LC_MESSAGES/kcmperformance.mo
share/locale/zh_TW/LC_MESSAGES/kcmprintmgr.mo
share/locale/zh_TW/LC_MESSAGES/kcmsamba.mo
share/locale/zh_TW/LC_MESSAGES/kcmscreensaver.mo
share/locale/zh_TW/LC_MESSAGES/kcmshell.mo
share/locale/zh_TW/LC_MESSAGES/kcmsmartcard.mo
share/locale/zh_TW/LC_MESSAGES/kcmsmserver.mo
share/locale/zh_TW/LC_MESSAGES/kcmspellchecking.mo
share/locale/zh_TW/LC_MESSAGES/kcmstyle.mo
share/locale/zh_TW/LC_MESSAGES/kcmtaskbar.mo
share/locale/zh_TW/LC_MESSAGES/kcmthinkpad.mo
share/locale/zh_TW/LC_MESSAGES/kcmusb.mo
share/locale/zh_TW/LC_MESSAGES/kcmview1394.mo
share/locale/zh_TW/LC_MESSAGES/kcmwifi.mo
share/locale/zh_TW/LC_MESSAGES/kcmxinerama.mo
share/locale/zh_TW/LC_MESSAGES/kcoloredit.mo
share/locale/zh_TW/LC_MESSAGES/kcontrol.mo
share/locale/zh_TW/LC_MESSAGES/kcron.mo
share/locale/zh_TW/LC_MESSAGES/kdat.mo
share/locale/zh_TW/LC_MESSAGES/kdcop.mo
share/locale/zh_TW/LC_MESSAGES/kdebugdialog.mo
share/locale/zh_TW/LC_MESSAGES/kdelibs.mo
share/locale/zh_TW/LC_MESSAGES/kdelibs_colors.mo
share/locale/zh_TW/LC_MESSAGES/kdelirc.mo
share/locale/zh_TW/LC_MESSAGES/kdepasswd.mo
share/locale/zh_TW/LC_MESSAGES/kdepimresources.mo
share/locale/zh_TW/LC_MESSAGES/kdepimwizards.mo
share/locale/zh_TW/LC_MESSAGES/kdeprint.mo
share/locale/zh_TW/LC_MESSAGES/kdeprint_part.mo
share/locale/zh_TW/LC_MESSAGES/kdeprintfax.mo
share/locale/zh_TW/LC_MESSAGES/kdesktop.mo
share/locale/zh_TW/LC_MESSAGES/kdessh.mo
share/locale/zh_TW/LC_MESSAGES/kdesu.mo
share/locale/zh_TW/LC_MESSAGES/kdesud.mo
share/locale/zh_TW/LC_MESSAGES/kdevdesigner.mo
share/locale/zh_TW/LC_MESSAGES/kdevelop.mo
share/locale/zh_TW/LC_MESSAGES/kdevtipofday.mo
share/locale/zh_TW/LC_MESSAGES/kdf.mo
share/locale/zh_TW/LC_MESSAGES/kdgantt.mo
share/locale/zh_TW/LC_MESSAGES/kdialog.mo
share/locale/zh_TW/LC_MESSAGES/kdict.mo
share/locale/zh_TW/LC_MESSAGES/kdictapplet.mo
share/locale/zh_TW/LC_MESSAGES/kdjview.mo
share/locale/zh_TW/LC_MESSAGES/kdmconfig.mo
share/locale/zh_TW/LC_MESSAGES/kdmgreet.mo
share/locale/zh_TW/LC_MESSAGES/kdvi.mo
share/locale/zh_TW/LC_MESSAGES/kedit.mo
share/locale/zh_TW/LC_MESSAGES/keduca.mo
share/locale/zh_TW/LC_MESSAGES/kenolaba.mo
share/locale/zh_TW/LC_MESSAGES/kfax.mo
share/locale/zh_TW/LC_MESSAGES/kfaxview.mo
share/locale/zh_TW/LC_MESSAGES/kfifteenapplet.mo
share/locale/zh_TW/LC_MESSAGES/kfile_au.mo
share/locale/zh_TW/LC_MESSAGES/kfile_avi.mo
share/locale/zh_TW/LC_MESSAGES/kfile_bmp.mo
share/locale/zh_TW/LC_MESSAGES/kfile_cert.mo
share/locale/zh_TW/LC_MESSAGES/kfile_cpp.mo
share/locale/zh_TW/LC_MESSAGES/kfile_dds.mo
share/locale/zh_TW/LC_MESSAGES/kfile_deb.mo
share/locale/zh_TW/LC_MESSAGES/kfile_desktop.mo
share/locale/zh_TW/LC_MESSAGES/kfile_diff.mo
share/locale/zh_TW/LC_MESSAGES/kfile_drgeo.mo
share/locale/zh_TW/LC_MESSAGES/kfile_dvi.mo
share/locale/zh_TW/LC_MESSAGES/kfile_exr.mo
share/locale/zh_TW/LC_MESSAGES/kfile_flac.mo
share/locale/zh_TW/LC_MESSAGES/kfile_folder.mo
share/locale/zh_TW/LC_MESSAGES/kfile_gif.mo
share/locale/zh_TW/LC_MESSAGES/kfile_html.mo
share/locale/zh_TW/LC_MESSAGES/kfile_ico.mo
share/locale/zh_TW/LC_MESSAGES/kfile_ics.mo
share/locale/zh_TW/LC_MESSAGES/kfile_jpeg.mo
share/locale/zh_TW/LC_MESSAGES/kfile_kig.mo
share/locale/zh_TW/LC_MESSAGES/kfile_lnk.mo
share/locale/zh_TW/LC_MESSAGES/kfile_m3u.mo
share/locale/zh_TW/LC_MESSAGES/kfile_mhtml.mo
share/locale/zh_TW/LC_MESSAGES/kfile_mp3.mo
share/locale/zh_TW/LC_MESSAGES/kfile_mpc.mo
share/locale/zh_TW/LC_MESSAGES/kfile_mpeg.mo
share/locale/zh_TW/LC_MESSAGES/kfile_ogg.mo
share/locale/zh_TW/LC_MESSAGES/kfile_palm.mo
share/locale/zh_TW/LC_MESSAGES/kfile_pcx.mo
share/locale/zh_TW/LC_MESSAGES/kfile_pdf.mo
share/locale/zh_TW/LC_MESSAGES/kfile_png.mo
share/locale/zh_TW/LC_MESSAGES/kfile_pnm.mo
share/locale/zh_TW/LC_MESSAGES/kfile_po.mo
share/locale/zh_TW/LC_MESSAGES/kfile_ps.mo
share/locale/zh_TW/LC_MESSAGES/kfile_rfc822.mo
share/locale/zh_TW/LC_MESSAGES/kfile_rgb.mo
share/locale/zh_TW/LC_MESSAGES/kfile_rpm.mo
share/locale/zh_TW/LC_MESSAGES/kfile_sid.mo
share/locale/zh_TW/LC_MESSAGES/kfile_tga.mo
share/locale/zh_TW/LC_MESSAGES/kfile_theora.mo
share/locale/zh_TW/LC_MESSAGES/kfile_tiff.mo
share/locale/zh_TW/LC_MESSAGES/kfile_torrent.mo
share/locale/zh_TW/LC_MESSAGES/kfile_ts.mo
share/locale/zh_TW/LC_MESSAGES/kfile_txt.mo
share/locale/zh_TW/LC_MESSAGES/kfile_vcf.mo
share/locale/zh_TW/LC_MESSAGES/kfile_wav.mo
share/locale/zh_TW/LC_MESSAGES/kfile_xbm.mo
share/locale/zh_TW/LC_MESSAGES/kfile_xpm.mo
share/locale/zh_TW/LC_MESSAGES/kfileaudiopreview.mo
share/locale/zh_TW/LC_MESSAGES/kfilereplace.mo
share/locale/zh_TW/LC_MESSAGES/kfileshare.mo
share/locale/zh_TW/LC_MESSAGES/kfindpart.mo
share/locale/zh_TW/LC_MESSAGES/kfloppy.mo
share/locale/zh_TW/LC_MESSAGES/kfmclient.mo
share/locale/zh_TW/LC_MESSAGES/kfontinst.mo
share/locale/zh_TW/LC_MESSAGES/kfouleggs.mo
share/locale/zh_TW/LC_MESSAGES/kgamma.mo
share/locale/zh_TW/LC_MESSAGES/kgantt.mo
share/locale/zh_TW/LC_MESSAGES/kgeography.mo
share/locale/zh_TW/LC_MESSAGES/kget.mo
share/locale/zh_TW/LC_MESSAGES/kghostview.mo
share/locale/zh_TW/LC_MESSAGES/kgoldrunner.mo
share/locale/zh_TW/LC_MESSAGES/kgpg.mo
share/locale/zh_TW/LC_MESSAGES/kgreet_classic.mo
share/locale/zh_TW/LC_MESSAGES/kgreet_winbind.mo
share/locale/zh_TW/LC_MESSAGES/khangman.mo
share/locale/zh_TW/LC_MESSAGES/khelpcenter.mo
share/locale/zh_TW/LC_MESSAGES/khexedit.mo
share/locale/zh_TW/LC_MESSAGES/khexedit2part.mo
share/locale/zh_TW/LC_MESSAGES/khotkeys.mo
share/locale/zh_TW/LC_MESSAGES/khtmlkttsd.mo
share/locale/zh_TW/LC_MESSAGES/khtmlsettingsplugin.mo
share/locale/zh_TW/LC_MESSAGES/kicker.mo
share/locale/zh_TW/LC_MESSAGES/kickermenu_kate.mo
share/locale/zh_TW/LC_MESSAGES/kiconedit.mo
share/locale/zh_TW/LC_MESSAGES/kig.mo
share/locale/zh_TW/LC_MESSAGES/kimagemapeditor.mo
share/locale/zh_TW/LC_MESSAGES/kinetd.mo
share/locale/zh_TW/LC_MESSAGES/kio.mo
share/locale/zh_TW/LC_MESSAGES/kio_audiocd.mo
share/locale/zh_TW/LC_MESSAGES/kio_finger.mo
share/locale/zh_TW/LC_MESSAGES/kio_fish.mo
share/locale/zh_TW/LC_MESSAGES/kio_floppy.mo
share/locale/zh_TW/LC_MESSAGES/kio_groupwise.mo
share/locale/zh_TW/LC_MESSAGES/kio_help.mo
share/locale/zh_TW/LC_MESSAGES/kio_home.mo
share/locale/zh_TW/LC_MESSAGES/kio_imap4.mo
share/locale/zh_TW/LC_MESSAGES/kio_jabberdisco.mo
share/locale/zh_TW/LC_MESSAGES/kio_lan.mo
share/locale/zh_TW/LC_MESSAGES/kio_ldap.mo
share/locale/zh_TW/LC_MESSAGES/kio_mac.mo
share/locale/zh_TW/LC_MESSAGES/kio_man.mo
share/locale/zh_TW/LC_MESSAGES/kio_media.mo
share/locale/zh_TW/LC_MESSAGES/kio_mobile.mo
share/locale/zh_TW/LC_MESSAGES/kio_nfs.mo
share/locale/zh_TW/LC_MESSAGES/kio_nntp.mo
share/locale/zh_TW/LC_MESSAGES/kio_pop3.mo
share/locale/zh_TW/LC_MESSAGES/kio_print.mo
share/locale/zh_TW/LC_MESSAGES/kio_remote.mo
share/locale/zh_TW/LC_MESSAGES/kio_settings.mo
share/locale/zh_TW/LC_MESSAGES/kio_sftp.mo
share/locale/zh_TW/LC_MESSAGES/kio_sieve.mo
share/locale/zh_TW/LC_MESSAGES/kio_smb.mo
share/locale/zh_TW/LC_MESSAGES/kio_smtp.mo
share/locale/zh_TW/LC_MESSAGES/kio_svn.mo
share/locale/zh_TW/LC_MESSAGES/kio_system.mo
share/locale/zh_TW/LC_MESSAGES/kio_tar.mo
share/locale/zh_TW/LC_MESSAGES/kio_thumbnail.mo
share/locale/zh_TW/LC_MESSAGES/kio_trash.mo
share/locale/zh_TW/LC_MESSAGES/kio_zeroconf.mo
share/locale/zh_TW/LC_MESSAGES/kioexec.mo
share/locale/zh_TW/LC_MESSAGES/kitchensync.mo
share/locale/zh_TW/LC_MESSAGES/kiten.mo
share/locale/zh_TW/LC_MESSAGES/kjobviewer.mo
share/locale/zh_TW/LC_MESSAGES/kjots.mo
share/locale/zh_TW/LC_MESSAGES/kjumpingcube.mo
share/locale/zh_TW/LC_MESSAGES/klaptopdaemon.mo
share/locale/zh_TW/LC_MESSAGES/klatin.mo
share/locale/zh_TW/LC_MESSAGES/kleopatra.mo
share/locale/zh_TW/LC_MESSAGES/klettres.mo
share/locale/zh_TW/LC_MESSAGES/klickety.mo
share/locale/zh_TW/LC_MESSAGES/klines.mo
share/locale/zh_TW/LC_MESSAGES/klinkstatus.mo
share/locale/zh_TW/LC_MESSAGES/klipper.mo
share/locale/zh_TW/LC_MESSAGES/klock.mo
share/locale/zh_TW/LC_MESSAGES/kmag.mo
share/locale/zh_TW/LC_MESSAGES/kmahjongg.mo
share/locale/zh_TW/LC_MESSAGES/kmail.mo
share/locale/zh_TW/LC_MESSAGES/kmail_text_calendar_plugin.mo
share/locale/zh_TW/LC_MESSAGES/kmail_text_vcard_plugin.mo
share/locale/zh_TW/LC_MESSAGES/kmailcvt.mo
share/locale/zh_TW/LC_MESSAGES/kmathapplet.mo
share/locale/zh_TW/LC_MESSAGES/kmcop.mo
share/locale/zh_TW/LC_MESSAGES/kmenuapplet.mo
share/locale/zh_TW/LC_MESSAGES/kmenuedit.mo
share/locale/zh_TW/LC_MESSAGES/kmid.mo
share/locale/zh_TW/LC_MESSAGES/kmilo_delli8k.mo
share/locale/zh_TW/LC_MESSAGES/kmilo_generic.mo
share/locale/zh_TW/LC_MESSAGES/kmilo_kvaio.mo
share/locale/zh_TW/LC_MESSAGES/kmilo_powerbook.mo
share/locale/zh_TW/LC_MESSAGES/kmilo_thinkpad.mo
share/locale/zh_TW/LC_MESSAGES/kmilod.mo
share/locale/zh_TW/LC_MESSAGES/kmines.mo
share/locale/zh_TW/LC_MESSAGES/kminipagerapplet.mo
share/locale/zh_TW/LC_MESSAGES/kmix.mo
share/locale/zh_TW/LC_MESSAGES/kmobile.mo
share/locale/zh_TW/LC_MESSAGES/kmoon.mo
share/locale/zh_TW/LC_MESSAGES/kmousetool.mo
share/locale/zh_TW/LC_MESSAGES/kmouth.mo
share/locale/zh_TW/LC_MESSAGES/kmplot.mo
share/locale/zh_TW/LC_MESSAGES/kmrml.mo
share/locale/zh_TW/LC_MESSAGES/knetattach.mo
share/locale/zh_TW/LC_MESSAGES/knetwalk.mo
share/locale/zh_TW/LC_MESSAGES/knetworkconf.mo
share/locale/zh_TW/LC_MESSAGES/knewsticker.mo
share/locale/zh_TW/LC_MESSAGES/knode.mo
share/locale/zh_TW/LC_MESSAGES/knotes.mo
share/locale/zh_TW/LC_MESSAGES/knotify.mo
share/locale/zh_TW/LC_MESSAGES/kodo.mo
share/locale/zh_TW/LC_MESSAGES/kolf.mo
share/locale/zh_TW/LC_MESSAGES/kolourpaint.mo
share/locale/zh_TW/LC_MESSAGES/kolourpicker.mo
share/locale/zh_TW/LC_MESSAGES/kommander.mo
share/locale/zh_TW/LC_MESSAGES/kompare.mo
share/locale/zh_TW/LC_MESSAGES/konqsidebar_delicious.mo
share/locale/zh_TW/LC_MESSAGES/konqsidebar_mediaplayer.mo
share/locale/zh_TW/LC_MESSAGES/konqsidebar_metabar.mo
share/locale/zh_TW/LC_MESSAGES/konqsidebar_news.mo
share/locale/zh_TW/LC_MESSAGES/konqueror.mo
share/locale/zh_TW/LC_MESSAGES/konquest.mo
share/locale/zh_TW/LC_MESSAGES/konsole.mo
share/locale/zh_TW/LC_MESSAGES/konsolekalendar.mo
share/locale/zh_TW/LC_MESSAGES/kontact.mo
share/locale/zh_TW/LC_MESSAGES/kooka.mo
share/locale/zh_TW/LC_MESSAGES/kopete.mo
share/locale/zh_TW/LC_MESSAGES/korganizer.mo
share/locale/zh_TW/LC_MESSAGES/korn.mo
share/locale/zh_TW/LC_MESSAGES/kpackage.mo
share/locale/zh_TW/LC_MESSAGES/kpager.mo
share/locale/zh_TW/LC_MESSAGES/kpartsaver.mo
share/locale/zh_TW/LC_MESSAGES/kpat.mo
share/locale/zh_TW/LC_MESSAGES/kpdf.mo
share/locale/zh_TW/LC_MESSAGES/kpercentage.mo
share/locale/zh_TW/LC_MESSAGES/kpersonalizer.mo
share/locale/zh_TW/LC_MESSAGES/kpf.mo
share/locale/zh_TW/LC_MESSAGES/kpilot.mo
share/locale/zh_TW/LC_MESSAGES/kpoker.mo
share/locale/zh_TW/LC_MESSAGES/kpovmodeler.mo
share/locale/zh_TW/LC_MESSAGES/kppp.mo
share/locale/zh_TW/LC_MESSAGES/kppplogview.mo
share/locale/zh_TW/LC_MESSAGES/kprinter.mo
share/locale/zh_TW/LC_MESSAGES/krandr.mo
share/locale/zh_TW/LC_MESSAGES/krdb.mo
share/locale/zh_TW/LC_MESSAGES/krdc.mo
share/locale/zh_TW/LC_MESSAGES/kreadconfig.mo
share/locale/zh_TW/LC_MESSAGES/krec.mo
share/locale/zh_TW/LC_MESSAGES/kregexpeditor.mo
share/locale/zh_TW/LC_MESSAGES/kres_birthday.mo
share/locale/zh_TW/LC_MESSAGES/kres_blogging.mo
share/locale/zh_TW/LC_MESSAGES/kres_bugzilla.mo
share/locale/zh_TW/LC_MESSAGES/kres_exchange.mo
share/locale/zh_TW/LC_MESSAGES/kres_featureplan.mo
share/locale/zh_TW/LC_MESSAGES/kres_groupware.mo
share/locale/zh_TW/LC_MESSAGES/kres_groupwise.mo
share/locale/zh_TW/LC_MESSAGES/kres_kolab.mo
share/locale/zh_TW/LC_MESSAGES/kres_remote.mo
share/locale/zh_TW/LC_MESSAGES/kres_tvanytime.mo
share/locale/zh_TW/LC_MESSAGES/kres_xmlrpc.mo
share/locale/zh_TW/LC_MESSAGES/kreversi.mo
share/locale/zh_TW/LC_MESSAGES/krfb.mo
share/locale/zh_TW/LC_MESSAGES/kruler.mo
share/locale/zh_TW/LC_MESSAGES/krunapplet.mo
share/locale/zh_TW/LC_MESSAGES/ksame.mo
share/locale/zh_TW/LC_MESSAGES/ksayit.mo
share/locale/zh_TW/LC_MESSAGES/kscd.mo
share/locale/zh_TW/LC_MESSAGES/kscreensaver.mo
share/locale/zh_TW/LC_MESSAGES/kshisen.mo
share/locale/zh_TW/LC_MESSAGES/ksig.mo
share/locale/zh_TW/LC_MESSAGES/ksim.mo
share/locale/zh_TW/LC_MESSAGES/ksirc.mo
share/locale/zh_TW/LC_MESSAGES/ksirtet.mo
share/locale/zh_TW/LC_MESSAGES/ksmiletris.mo
share/locale/zh_TW/LC_MESSAGES/ksmserver.mo
share/locale/zh_TW/LC_MESSAGES/ksnake.mo
share/locale/zh_TW/LC_MESSAGES/ksnapshot.mo
share/locale/zh_TW/LC_MESSAGES/ksokoban.mo
share/locale/zh_TW/LC_MESSAGES/kspaceduel.mo
share/locale/zh_TW/LC_MESSAGES/ksplash.mo
share/locale/zh_TW/LC_MESSAGES/ksplashthemes.mo
share/locale/zh_TW/LC_MESSAGES/kstars.mo
share/locale/zh_TW/LC_MESSAGES/kstart.mo
share/locale/zh_TW/LC_MESSAGES/kstartperf.mo
share/locale/zh_TW/LC_MESSAGES/kstyle_highcontrast_config.mo
share/locale/zh_TW/LC_MESSAGES/kstyle_keramik_config.mo
share/locale/zh_TW/LC_MESSAGES/kstyle_phase_config.mo
share/locale/zh_TW/LC_MESSAGES/kstyle_plastik_config.mo
share/locale/zh_TW/LC_MESSAGES/ksvgplugin.mo
share/locale/zh_TW/LC_MESSAGES/ksysguard.mo
share/locale/zh_TW/LC_MESSAGES/ksystemtrayapplet.mo
share/locale/zh_TW/LC_MESSAGES/ksystraycmd.mo
share/locale/zh_TW/LC_MESSAGES/ksysv.mo
share/locale/zh_TW/LC_MESSAGES/kteatime.mo
share/locale/zh_TW/LC_MESSAGES/ktexteditor_autobookmarker.mo
share/locale/zh_TW/LC_MESSAGES/ktexteditor_docwordcompletion.mo
share/locale/zh_TW/LC_MESSAGES/ktexteditor_insertfile.mo
share/locale/zh_TW/LC_MESSAGES/ktexteditor_isearch.mo
share/locale/zh_TW/LC_MESSAGES/ktexteditor_kdatatool.mo
share/locale/zh_TW/LC_MESSAGES/kthememanager.mo
share/locale/zh_TW/LC_MESSAGES/ktimemon.mo
share/locale/zh_TW/LC_MESSAGES/ktimer.mo
share/locale/zh_TW/LC_MESSAGES/ktip.mo
share/locale/zh_TW/LC_MESSAGES/ktnef.mo
share/locale/zh_TW/LC_MESSAGES/ktouch.mo
share/locale/zh_TW/LC_MESSAGES/ktron.mo
share/locale/zh_TW/LC_MESSAGES/kttsd.mo
share/locale/zh_TW/LC_MESSAGES/ktuberling.mo
share/locale/zh_TW/LC_MESSAGES/kturtle.mo
share/locale/zh_TW/LC_MESSAGES/ktux.mo
share/locale/zh_TW/LC_MESSAGES/kuick_plugin.mo
share/locale/zh_TW/LC_MESSAGES/kuickshow.mo
share/locale/zh_TW/LC_MESSAGES/kuiviewer.mo
share/locale/zh_TW/LC_MESSAGES/kuser.mo
share/locale/zh_TW/LC_MESSAGES/kverbos.mo
share/locale/zh_TW/LC_MESSAGES/kview.mo
share/locale/zh_TW/LC_MESSAGES/kview_scale.mo
share/locale/zh_TW/LC_MESSAGES/kviewbrowserplugin.mo
share/locale/zh_TW/LC_MESSAGES/kviewcanvas.mo
share/locale/zh_TW/LC_MESSAGES/kvieweffectsplugin.mo
share/locale/zh_TW/LC_MESSAGES/kviewpresenterplugin.mo
share/locale/zh_TW/LC_MESSAGES/kviewscannerplugin.mo
share/locale/zh_TW/LC_MESSAGES/kviewshell.mo
share/locale/zh_TW/LC_MESSAGES/kviewviewer.mo
share/locale/zh_TW/LC_MESSAGES/kvoctrain.mo
share/locale/zh_TW/LC_MESSAGES/kwalletmanager.mo
share/locale/zh_TW/LC_MESSAGES/kwatchgnupg.mo
share/locale/zh_TW/LC_MESSAGES/kweather.mo
share/locale/zh_TW/LC_MESSAGES/kwifimanager.mo
share/locale/zh_TW/LC_MESSAGES/kwin.mo
share/locale/zh_TW/LC_MESSAGES/kwin4.mo
share/locale/zh_TW/LC_MESSAGES/kwin_art_clients.mo
share/locale/zh_TW/LC_MESSAGES/kwin_clients.mo
share/locale/zh_TW/LC_MESSAGES/kwin_lib.mo
share/locale/zh_TW/LC_MESSAGES/kwireless.mo
share/locale/zh_TW/LC_MESSAGES/kwordquiz.mo
share/locale/zh_TW/LC_MESSAGES/kworldclock.mo
share/locale/zh_TW/LC_MESSAGES/kwriteconfig.mo
share/locale/zh_TW/LC_MESSAGES/kxkb.mo
share/locale/zh_TW/LC_MESSAGES/kxsconfig.mo
share/locale/zh_TW/LC_MESSAGES/kxsldbg.mo
share/locale/zh_TW/LC_MESSAGES/libKTTSD.mo
share/locale/zh_TW/LC_MESSAGES/libdmctl.mo
share/locale/zh_TW/LC_MESSAGES/libkaddrbk_geo_xxport.mo
share/locale/zh_TW/LC_MESSAGES/libkaddrbk_gmx_xxport.mo
share/locale/zh_TW/LC_MESSAGES/libkcal.mo
share/locale/zh_TW/LC_MESSAGES/libkcddb.mo
share/locale/zh_TW/LC_MESSAGES/libkdeedu.mo
share/locale/zh_TW/LC_MESSAGES/libkdegames.mo
share/locale/zh_TW/LC_MESSAGES/libkdepim.mo
share/locale/zh_TW/LC_MESSAGES/libkfaximgage.mo
share/locale/zh_TW/LC_MESSAGES/libkholidays.mo
share/locale/zh_TW/LC_MESSAGES/libkicker.mo
share/locale/zh_TW/LC_MESSAGES/libkickermenu_kdeprint.mo
share/locale/zh_TW/LC_MESSAGES/libkickermenu_konsole.mo
share/locale/zh_TW/LC_MESSAGES/libkickermenu_prefmenu.mo
share/locale/zh_TW/LC_MESSAGES/libkickermenu_recentdocs.mo
share/locale/zh_TW/LC_MESSAGES/libkickermenu_remotemenu.mo
share/locale/zh_TW/LC_MESSAGES/libkickermenu_systemmenu.mo
share/locale/zh_TW/LC_MESSAGES/libkickermenu_tom.mo
share/locale/zh_TW/LC_MESSAGES/libkleopatra.mo
share/locale/zh_TW/LC_MESSAGES/libkmime.mo
share/locale/zh_TW/LC_MESSAGES/libkonq.mo
share/locale/zh_TW/LC_MESSAGES/libkpgp.mo
share/locale/zh_TW/LC_MESSAGES/libkpimexchange.mo
share/locale/zh_TW/LC_MESSAGES/libkscan.mo
share/locale/zh_TW/LC_MESSAGES/libkscreensaver.mo
share/locale/zh_TW/LC_MESSAGES/libksieve.mo
share/locale/zh_TW/LC_MESSAGES/libksirtet.mo
share/locale/zh_TW/LC_MESSAGES/libksync.mo
share/locale/zh_TW/LC_MESSAGES/libtaskbar.mo
share/locale/zh_TW/LC_MESSAGES/libtaskmanager.mo
share/locale/zh_TW/LC_MESSAGES/lockout.mo
share/locale/zh_TW/LC_MESSAGES/lskat.mo
share/locale/zh_TW/LC_MESSAGES/lyrics.mo
share/locale/zh_TW/LC_MESSAGES/mediaapplet.mo
share/locale/zh_TW/LC_MESSAGES/mediacontrol.mo
share/locale/zh_TW/LC_MESSAGES/mf_konqplugin.mo
share/locale/zh_TW/LC_MESSAGES/minitoolsplugin.mo
share/locale/zh_TW/LC_MESSAGES/naughtyapplet.mo
share/locale/zh_TW/LC_MESSAGES/nexscope.mo
share/locale/zh_TW/LC_MESSAGES/noatun.mo
share/locale/zh_TW/LC_MESSAGES/nsplugin.mo
share/locale/zh_TW/LC_MESSAGES/pitchablespeed.mo
share/locale/zh_TW/LC_MESSAGES/ppdtranslations.mo
share/locale/zh_TW/LC_MESSAGES/privacy.mo
share/locale/zh_TW/LC_MESSAGES/quanta.mo
share/locale/zh_TW/LC_MESSAGES/quicklauncher.mo
share/locale/zh_TW/LC_MESSAGES/rellinks.mo
share/locale/zh_TW/LC_MESSAGES/searchbarplugin.mo
share/locale/zh_TW/LC_MESSAGES/secpolicy.mo
share/locale/zh_TW/LC_MESSAGES/spy.mo
share/locale/zh_TW/LC_MESSAGES/superkaramba.mo
share/locale/zh_TW/LC_MESSAGES/synaescope.mo
share/locale/zh_TW/LC_MESSAGES/timezones.mo
share/locale/zh_TW/LC_MESSAGES/tippecanoe.mo
share/locale/zh_TW/LC_MESSAGES/trashapplet.mo
share/locale/zh_TW/LC_MESSAGES/tyler.mo
share/locale/zh_TW/LC_MESSAGES/uachangerplugin.mo
share/locale/zh_TW/LC_MESSAGES/umbrello.mo
share/locale/zh_TW/LC_MESSAGES/useraccount.mo
share/locale/zh_TW/LC_MESSAGES/validatorsplugin.mo
share/locale/zh_TW/LC_MESSAGES/wakeup.mo
share/locale/zh_TW/LC_MESSAGES/wavecapture.mo
share/locale/zh_TW/LC_MESSAGES/webarchiver.mo
share/locale/zh_TW/charset
share/locale/zh_TW/entry.desktop
share/locale/zh_TW/flag.png
@dirrm share/doc/HTML/zh_TW/khelpcenter/faq
@dirrm share/doc/HTML/zh_TW/khelpcenter
@dirrm share/doc/HTML/zh_TW/docs/common
@dirrm share/doc/HTML/zh_TW/docs
share/locale/zh_TW/LC_MESSAGES/desktop_koffice.mo
share/locale/zh_TW/LC_MESSAGES/example.mo
share/locale/zh_TW/LC_MESSAGES/karbon.mo
share/locale/zh_TW/LC_MESSAGES/kchart.mo
share/locale/zh_TW/LC_MESSAGES/kexi.mo
share/locale/zh_TW/LC_MESSAGES/kfile_abiword.mo
share/locale/zh_TW/LC_MESSAGES/kfile_gnumeric.mo
share/locale/zh_TW/LC_MESSAGES/kfile_koffice.mo
share/locale/zh_TW/LC_MESSAGES/kfile_ooo.mo
share/locale/zh_TW/LC_MESSAGES/kformdesigner.mo
share/locale/zh_TW/LC_MESSAGES/kformula.mo
share/locale/zh_TW/LC_MESSAGES/kivio.mo
share/locale/zh_TW/LC_MESSAGES/koconverter.mo
share/locale/zh_TW/LC_MESSAGES/koffice.mo
share/locale/zh_TW/LC_MESSAGES/kofficefilters.mo
share/locale/zh_TW/LC_MESSAGES/koproperty.mo
share/locale/zh_TW/LC_MESSAGES/koshell.mo
share/locale/zh_TW/LC_MESSAGES/kounavail.mo
share/locale/zh_TW/LC_MESSAGES/kplato.mo
share/locale/zh_TW/LC_MESSAGES/kpresenter.mo
share/locale/zh_TW/LC_MESSAGES/krita.mo
share/locale/zh_TW/LC_MESSAGES/kscan_plugin.mo
share/locale/zh_TW/LC_MESSAGES/kscreenshot_plugin.mo
share/locale/zh_TW/LC_MESSAGES/kspread.mo
share/locale/zh_TW/LC_MESSAGES/kspreadcalc_calc.mo
share/locale/zh_TW/LC_MESSAGES/kspreadinsertcalendar.mo
share/locale/zh_TW/LC_MESSAGES/kthesaurus.mo
share/locale/zh_TW/LC_MESSAGES/kugar.mo
share/locale/zh_TW/LC_MESSAGES/kword.mo
share/locale/zh_TW/LC_MESSAGES/thesaurus_tool.mo

View File

@ -1,50 +1,34 @@
# New ports collection makefile for: kdeutils3
# Date created: 3 November 2001
# Whom: will@cvs.kde.org
# New ports collection Makefile for: kdeutils
# Date created: 2008-01-31
# Whom: Martin Wilke <miwi@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= kdeutils
PORTVERSION= ${KDE_VERSION}
CATEGORIES?= misc kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src
PORTVERSION= ${KDE4_VERSION}
CATEGORIES= misc kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
DIST_SUBDIR= KDE
MAINTAINER?= kde@FreeBSD.org
COMMENT= Utilities for the KDE integrated X11 desktop
MAINTAINER= kde@FreeBSD.org
COMMENT= Utilities for the KDE4 integrated X11 Desktop
LIB_DEPENDS= gmp.7:${PORTSDIR}/math/libgmp4 \
netsnmp:${PORTSDIR}/net-mgmt/net-snmp
RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg
LIB_DEPENDS= gmp.7:${PORTSDIR}/math/libgmp4 \
netsnmp:${PORTSDIR}/net-mgmt/net-snmp \
qimageblitz.4:${PORTSDIR}/x11/qimageblitz \
zip.1:${PORTSDIR}/archivers/libzip
RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg
CONFLICTS= kgpg-[0-9]* superkaramba-[0-9]*
LATEST_LINK= ${PORTNAME}4
USE_KDELIBS_VER=3
USE_KDEBASE_VER=3
PREFIX= ${KDE_PREFIX}
USE_PYTHON= yes
USE_BZIP2= yes
USE_GMAKE= yes
USE_AUTOTOOLS= libtool:15
DO_NOT_COMPILE+=klaptopdaemon kmilo
CONFIGURE_ENV+= DO_NOT_COMPILE="${DO_NOT_COMPILE}"
CONFIGURE_ARGS+=--with-pythondir=${LOCALBASE}
USE_QT_VER= 4
KDE4_BUILDENV= yes
USE_KDE4= kdelibs pimlibs workspace kdeprefix kdehier automoc4
QT_COMPONENTS= network gui moc rcc uic porting xml
USE_LDCONFIG= yes
LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3
post-extract:
${MKDIR} ${WRKSRC}
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
.include <bsd.port.pre.mk>
.if ${OSVERSION} > 501102
. if ${OSVERSION} > 600021
RUN_DEPENDS+= gtar:${PORTSDIR}/archivers/gtar
. endif
post-patch:
${REINPLACE_CMD} -e 's|>tar<|>gtar<|g' ${WRKSRC}/ark/ark.kcfg
.endif
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (KDE/kdeutils-3.5.8.tar.bz2) = d1a0fcc83f35428a76cf7523a04ba19c
SHA256 (KDE/kdeutils-3.5.8.tar.bz2) = 7dcbe3361cc53f9dac4c1bf6f45952d3d2518bec56cd8c07b8e07b4c4f12d0ac
SIZE (KDE/kdeutils-3.5.8.tar.bz2) = 3059172
MD5 (KDE/kdeutils-4.1.0.tar.bz2) = 456d811618e5417e224476089df9a3b3
SHA256 (KDE/kdeutils-4.1.0.tar.bz2) = e004cc66372156a70be2291f68400fe0caa4ae821d70cd5ded5a861e4e7e8cab
SIZE (KDE/kdeutils-4.1.0.tar.bz2) = 2279856

View File

@ -1,92 +0,0 @@
--- configure.orig 2007-10-08 14:31:38.000000000 +0000
+++ configure 2008-05-30 00:26:52.000000000 +0000
@@ -35789,89 +35789,6 @@
fi
-have_l_funcs=yes
-
-{ echo "$as_me:$LINENO: checking for sqrtl in -lm" >&5
-echo $ECHO_N "checking for sqrtl in -lm... $ECHO_C" >&6; }
-if test "${ac_cv_lib_m_sqrtl+set}" = set; then
- echo $ECHO_N "(cached) $ECHO_C" >&6
-else
- ac_check_lib_save_LIBS=$LIBS
-LIBS="-lm $LIBS"
-cat >conftest.$ac_ext <<_ACEOF
-/* confdefs.h. */
-_ACEOF
-cat confdefs.h >>conftest.$ac_ext
-cat >>conftest.$ac_ext <<_ACEOF
-/* end confdefs.h. */
-
-/* Override any GCC internal prototype to avoid an error.
- Use char because int might match the return type of a GCC
- builtin and then its argument prototype would still apply. */
-#ifdef __cplusplus
-extern "C"
-#endif
-char sqrtl ();
-int
-main ()
-{
-return sqrtl ();
- ;
- return 0;
-}
-_ACEOF
-rm -f conftest.$ac_objext conftest$ac_exeext
-if { (ac_try="$ac_link"
-case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
- (eval "$ac_link") 2>conftest.er1
- ac_status=$?
- grep -v '^ *+' conftest.er1 >conftest.err
- rm -f conftest.er1
- cat conftest.err >&5
- echo "$as_me:$LINENO: \$? = $ac_status" >&5
- (exit $ac_status); } && {
- test -z "$ac_c_werror_flag" ||
- test ! -s conftest.err
- } && test -s conftest$ac_exeext &&
- $as_test_x conftest$ac_exeext; then
- ac_cv_lib_m_sqrtl=yes
-else
- echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
- ac_cv_lib_m_sqrtl=no
-fi
-
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
- conftest$ac_exeext conftest.$ac_ext
-LIBS=$ac_check_lib_save_LIBS
-fi
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_m_sqrtl" >&5
-echo "${ECHO_T}$ac_cv_lib_m_sqrtl" >&6; }
-if test $ac_cv_lib_m_sqrtl = yes; then
- cat >>confdefs.h <<_ACEOF
-#define HAVE_LIBM 1
-_ACEOF
-
- LIBS="-lm $LIBS"
-
-else
- have_l_funcs=no
-fi
-
-
-if test "xyes" = "x$have_l_funcs" ; then
-
-cat >>confdefs.h <<\_ACEOF
-#define HAVE_L_FUNCS 1
-_ACEOF
-
-fi
-
LIBGMP=
kde_safe_cppflags=$CPPFLAGS

View File

@ -1,20 +0,0 @@
--- kdelirc/irkick/klircclient.cpp.orig Sat Sep 10 10:21:34 2005
+++ kdelirc/irkick/klircclient.cpp Mon Jun 5 16:16:51 2006
@@ -55,15 +55,10 @@
sockaddr_un addr;
addr.sun_family = AF_UNIX;
- strcpy(addr.sun_path, "/dev/lircd");
+ strcpy(addr.sun_path, "/var/run/lirc/lircd");
if(::connect(sock, (struct sockaddr *)(&addr), sizeof(addr)) == -1)
{ ::close(sock);
- // in case of mandrake...
- strcpy(addr.sun_path, "/tmp/.lircd");
- if(::connect(sock, (struct sockaddr *)(&addr), sizeof(addr)) == -1)
- { ::close(sock);
- return false;
- }
+ return false;
}
theSocket = new QSocket;

View File

@ -1,46 +0,0 @@
--- ksim/monitors/filesystem/filesystemstats.cpp.orig 2007-10-08 11:49:45.000000000 +0200
+++ ksim/monitors/filesystem/filesystemstats.cpp 2007-10-26 19:32:09.000000000 +0200
@@ -30,7 +30,7 @@
#include <sys/types.h>
#include <sys/param.h>
-#if defined(HAVE_SYS_STATVFS_H) && !defined(__DragonFly__)
+#ifdef HAVE_SYS_STATVFS_H
#include <sys/statvfs.h>
#elif defined( HAVE_SYS_STATFS_H )
#include <sys/statfs.h>
@@ -59,12 +59,10 @@
#include <stdio.h>
#include <unistd.h>
-#if defined(HAVE_STATVFS) && !defined(__DragonFly__)
+#ifdef HAVE_STATVFS
typedef struct statvfs ksim_statfs;
-#define ksim_getfsstat getvfsstat
#elif defined( HAVE_STATFS ) || defined( Q_OS_FREEBSD )
typedef struct statfs ksim_statfs;
-#define ksim_getfsstat getfsstat
#else
typedef struct // fall back for (possibly) non-supported systems
{
@@ -75,7 +73,7 @@
int fsystemStats( const char * file, ksim_statfs & stats )
{
-#if defined(HAVE_STATVFS) && !defined(__DragonFly__)
+#ifdef HAVE_STATVFS
return statvfs( file, &stats );
#elif defined( HAVE_STATFS ) || defined( Q_OS_FREEBSD )
return statfs( file, &stats );
@@ -164,9 +162,9 @@
#endif
#ifdef USE_FSSTAT
- ksim_statfs sfs[32];
+ struct statfs sfs[32];
int fs_count;
- if ( ( fs_count = ksim_getfsstat( sfs, sizeof( sfs ), 0 ) ) != -1 )
+ if ( ( fs_count = getfsstat( sfs, sizeof( sfs ), 0 ) ) != -1 )
{
for ( int i = 0; i < fs_count; i++ )
{

View File

@ -1,343 +1,132 @@
bin/ark
bin/irkick
bin/kcalc
bin/kcharselect
bin/kdessh
bin/kdf
bin/kedit
bin/kfloppy
bin/kgpg
bin/khexedit
bin/kjots
bin/kregexpeditor
bin/ktimer
bin/kwalletmanager
bin/kwikdisk
bin/okteta
bin/superkaramba
include/kmultiformlistbox.h
include/kmultiformlistboxentry.h
include/kmultiformlistboxfactory.h
include/ksim/chart.h
include/ksim/common.h
include/ksim/ksimconfig.h
include/ksim/label.h
include/ksim/led.h
include/ksim/pluginglobal.h
include/ksim/pluginloader.h
include/ksim/pluginmodule.h
include/ksim/progress.h
include/ksim/themeloader.h
include/ksim/themetypes.h
include/kwidgetstreamer.h
lib/kde3/ark.a
lib/kde3/ark.la
lib/kde3/ark.so
lib/kde3/irkick.a
lib/kde3/irkick.la
lib/kde3/irkick.so
lib/kde3/kcalc.a
lib/kde3/kcalc.la
lib/kde3/kcalc.so
lib/kde3/kcharselect_panelapplet.a
lib/kde3/kcharselect_panelapplet.la
lib/kde3/kcharselect_panelapplet.so
lib/kde3/kcm_kcmlirc.a
lib/kde3/kcm_kcmlirc.la
lib/kde3/kcm_kcmlirc.so
lib/kde3/kcm_kdf.a
lib/kde3/kcm_kdf.la
lib/kde3/kcm_kdf.so
lib/kde3/kcm_kwallet.a
lib/kde3/kcm_kwallet.la
lib/kde3/kcm_kwallet.so
lib/kde3/kedit.a
lib/kde3/kedit.la
lib/kde3/kedit.so
lib/kde3/ksim_cpu.a
lib/kde3/ksim_cpu.la
lib/kde3/ksim_cpu.so
lib/kde3/ksim_disk.a
lib/kde3/ksim_disk.la
lib/kde3/ksim_disk.so
lib/kde3/ksim_filesystem.a
lib/kde3/ksim_filesystem.la
lib/kde3/ksim_filesystem.so
lib/kde3/ksim_net.a
lib/kde3/ksim_net.la
lib/kde3/ksim_net.so
lib/kde3/ksim_panelextension.a
lib/kde3/ksim_panelextension.la
lib/kde3/ksim_panelextension.so
lib/kde3/ksim_sensors.a
lib/kde3/ksim_sensors.la
lib/kde3/ksim_sensors.so
lib/kde3/ksim_snmp.a
lib/kde3/ksim_snmp.la
lib/kde3/ksim_snmp.so
lib/kde3/libarkpart.a
lib/kde3/libarkpart.la
lib/kde3/libarkpart.so
lib/kde3/libkbyteseditwidget.a
lib/kde3/libkbyteseditwidget.la
lib/kde3/libkbyteseditwidget.so
lib/kde3/libkhexedit2part.a
lib/kde3/libkhexedit2part.la
lib/kde3/libkhexedit2part.so
lib/kde3/libkregexpeditorgui.a
lib/kde3/libkregexpeditorgui.la
lib/kde3/libkregexpeditorgui.so
lib/libkdeinit_ark.a
lib/libkdeinit_ark.la
lib/libkdeinit_ark.so
lib/libkdeinit_irkick.a
lib/libkdeinit_irkick.la
lib/libkdeinit_irkick.so
lib/libkdeinit_kcalc.a
lib/libkdeinit_kcalc.la
lib/libkdeinit_kcalc.so
lib/libkdeinit_kedit.a
lib/libkdeinit_kedit.la
lib/libkdeinit_kedit.so
lib/libkhexeditcommon.a
lib/libkhexeditcommon.la
lib/libkhexeditcommon.so
lib/libkhexeditcommon.so.0
lib/libkregexpeditorcommon.a
lib/libkregexpeditorcommon.la
lib/libkregexpeditorcommon.so
lib/libkregexpeditorcommon.so.1
lib/libksimcore.a
lib/libksimcore.la
lib/libksimcore.so
lib/libksimcore.so.1
share/applications/kde/KCharSelect.desktop
share/applications/kde/KEdit.desktop
share/applications/kde/KFloppy.desktop
share/applications/kde/Kjots.desktop
share/applications/kde/ark.desktop
share/applications/kde/irkick.desktop
share/applications/kde/kcalc.desktop
share/applications/kde/kcmdf.desktop
share/applications/kde/kcmlirc.desktop
share/applications/kde/kdf.desktop
share/applications/kde/kgpg.desktop
share/applications/kde/khexedit.desktop
share/applications/kde/kregexpeditor.desktop
share/applications/kde/ktimer.desktop
share/applications/kde/kwalletconfig.desktop
share/applications/kde/kwalletmanager-kwalletd.desktop
share/applications/kde/kwalletmanager.desktop
share/applications/kde/kwikdisk.desktop
share/applnk/Utilities/superkaramba.desktop
bin/sweeper
lib/kde4/kcm_kdf.so
lib/kde4/kcm_kwallet.so
lib/kde4/kerfuffle_bk.so
lib/kde4/kerfuffle_libarchive.so
lib/kde4/kerfuffle_libzip.so
lib/kde4/kerfuffle_rar.so
lib/kde4/libarkpart.so
lib/kde4/libkbytearrayedit.so
lib/kde4/liboktetapart.so
lib/kde4/plasma_package_superkaramba.so
lib/kde4/plasma_scriptengine_superkaramba.so
lib/libkdeinit4_kcalc.so
lib/libkerfuffle.so
lib/libkerfuffle.so.5
lib/libkerfuffle.so.5.0.0
lib/liboktetacore.so
lib/liboktetacore.so.5
lib/liboktetacore.so.5.0.0
lib/liboktetagui.so
lib/liboktetagui.so.5
lib/liboktetagui.so.5.0.0
lib/libsuperkaramba.so
lib/libsuperkaramba.so.5
lib/libsuperkaramba.so.5.0.0
share/applications/kde4/KCharSelect.desktop
share/applications/kde4/KFloppy.desktop
share/applications/kde4/ark.desktop
share/applications/kde4/kcalc.desktop
share/applications/kde4/kdf.desktop
share/applications/kde4/kgpg.desktop
share/applications/kde4/ktimer.desktop
share/applications/kde4/kwalletmanager-kwalletd.desktop
share/applications/kde4/kwalletmanager.desktop
share/applications/kde4/kwikdisk.desktop
share/applications/kde4/okteta.desktop
share/applications/kde4/superkaramba.desktop
share/applications/kde4/sweeper.desktop
share/apps/ark/ark_part.rc
share/apps/ark/ark_part_readonly.rc
share/apps/ark/arkui.rc
share/apps/ark/icons/crystalsvg/22x22/actions/ark_adddir.png
share/apps/ark/icons/crystalsvg/22x22/actions/ark_addfile.png
share/apps/ark/icons/crystalsvg/22x22/actions/ark_delete.png
share/apps/ark/icons/crystalsvg/22x22/actions/ark_extract.png
share/apps/ark/icons/crystalsvg/22x22/actions/ark_selectall.png
share/apps/ark/icons/crystalsvg/22x22/actions/ark_view.png
share/apps/ark/icons/crystalsvg/32x32/actions/ark_adddir.png
share/apps/ark/icons/crystalsvg/32x32/actions/ark_addfile.png
share/apps/ark/icons/crystalsvg/32x32/actions/ark_delete.png
share/apps/ark/icons/crystalsvg/32x32/actions/ark_extract.png
share/apps/ark/icons/crystalsvg/32x32/actions/ark_view.png
share/apps/irkick/icons/hicolor/16x16/actions/irkick.png
share/apps/irkick/icons/hicolor/16x16/actions/irkickflash.png
share/apps/irkick/icons/hicolor/16x16/actions/irkickoff.png
share/apps/irkick/icons/hicolor/16x16/actions/ledblue.png
share/apps/irkick/icons/hicolor/16x16/actions/ledgreen.png
share/apps/irkick/icons/hicolor/16x16/actions/ledlightblue.png
share/apps/irkick/icons/hicolor/16x16/actions/ledlightgreen.png
share/apps/irkick/icons/hicolor/16x16/actions/ledorange.png
share/apps/irkick/icons/hicolor/16x16/actions/ledpurple.png
share/apps/irkick/icons/hicolor/16x16/actions/ledred.png
share/apps/irkick/icons/hicolor/16x16/actions/ledyellow.png
share/apps/irkick/icons/hicolor/32x32/actions/ledblue.png
share/apps/irkick/icons/hicolor/32x32/actions/ledgreen.png
share/apps/irkick/icons/hicolor/32x32/actions/ledlightblue.png
share/apps/irkick/icons/hicolor/32x32/actions/ledlightgreen.png
share/apps/irkick/icons/hicolor/32x32/actions/ledorange.png
share/apps/irkick/icons/hicolor/32x32/actions/ledpurple.png
share/apps/irkick/icons/hicolor/32x32/actions/ledred.png
share/apps/irkick/icons/hicolor/32x32/actions/ledyellow.png
share/apps/kcalc/kcalcui.rc
share/apps/kcalc/scienceconstants.xml
share/apps/kcharselect/kcharselectui.rc
share/apps/kconf_update/kcalcrc.upd
share/apps/kconf_update/kcharselect.upd
share/apps/kdf/kdfui.rc
share/apps/kdf/pics/delete.png
share/apps/kdf/pics/tick.png
share/apps/kedit/keditui.rc
share/apps/kgpg/icons/crystalsvg/16x16/actions/kgpg_key1.png
share/apps/kgpg/icons/crystalsvg/16x16/actions/kgpg_key2.png
share/apps/kgpg/icons/crystalsvg/16x16/actions/kgpg_key3.png
share/apps/kgpg/icons/crystalsvg/16x16/actions/kgpg_key4.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_edit.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_export.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_gen.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_identity.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_import.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_info.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_photo.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_show.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_sign.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_term.png
share/apps/kgpg/icons/oxygen/16x16/actions/document-export-key.png
share/apps/kgpg/icons/oxygen/16x16/actions/document-import-key.png
share/apps/kgpg/icons/oxygen/16x16/actions/document-properties-key.png
share/apps/kgpg/icons/oxygen/16x16/status/key-group.png
share/apps/kgpg/icons/oxygen/16x16/status/key-orphan.png
share/apps/kgpg/icons/oxygen/16x16/status/key-pair.png
share/apps/kgpg/icons/oxygen/16x16/status/key-single.png
share/apps/kgpg/icons/oxygen/22x22/actions/document-export-key.png
share/apps/kgpg/icons/oxygen/22x22/actions/document-import-key.png
share/apps/kgpg/icons/oxygen/22x22/actions/document-properties-key.png
share/apps/kgpg/icons/oxygen/22x22/actions/key-generate-pair.png
share/apps/kgpg/icons/oxygen/22x22/actions/view-key-secret.png
share/apps/kgpg/icons/oxygen/22x22/status/key-group.png
share/apps/kgpg/icons/oxygen/22x22/status/key-pair.png
share/apps/kgpg/icons/oxygen/22x22/status/key-single.png
share/apps/kgpg/icons/oxygen/32x32/actions/document-export-key.png
share/apps/kgpg/icons/oxygen/32x32/actions/document-import-key.png
share/apps/kgpg/icons/oxygen/32x32/actions/document-properties-key.png
share/apps/kgpg/icons/oxygen/32x32/status/key-group.png
share/apps/kgpg/icons/oxygen/32x32/status/key-pair.png
share/apps/kgpg/icons/oxygen/32x32/status/key-single.png
share/apps/kgpg/icons/oxygen/48x48/actions/document-export-key.png
share/apps/kgpg/icons/oxygen/48x48/actions/document-import-key.png
share/apps/kgpg/icons/oxygen/48x48/actions/document-properties-key.png
share/apps/kgpg/icons/oxygen/48x48/status/key-group.png
share/apps/kgpg/icons/oxygen/48x48/status/key-pair.png
share/apps/kgpg/icons/oxygen/48x48/status/key-single.png
share/apps/kgpg/icons/oxygen/scalable/actions/document-export-key.svgz
share/apps/kgpg/icons/oxygen/scalable/actions/document-import-key.svgz
share/apps/kgpg/icons/oxygen/scalable/actions/document-properties-key.svgz
share/apps/kgpg/icons/oxygen/scalable/status/key-group.svgz
share/apps/kgpg/icons/oxygen/scalable/status/key-pair.svgz
share/apps/kgpg/icons/oxygen/scalable/status/key-single.svgz
share/apps/kgpg/keysmanager.rc
share/apps/kgpg/kgpg.rc
share/apps/kgpg/listkeys.rc
share/apps/kgpg/pics/kgpg_anim.gif
share/apps/kgpg/pics/kgpg_blank.png
share/apps/kgpg/pics/kgpg_docked.gif
share/apps/kgpg/pics/kgpg_docked.png
share/apps/kgpg/pics/kgpg_fill.png
share/apps/kgpg/tips
share/apps/khexedit/khexeditui.rc
share/apps/khexedit/pics/hexdrag.png
share/apps/khexedit/pics/hexmask.png
share/apps/khexedit/pics/hexwrite.png
share/apps/khexedit2part/khexedit2partui.rc
share/apps/kicker/applets/kcharselectapplet.desktop
share/apps/kicker/extensions/ksim.desktop
share/apps/kjots/kjotsui.rc
share/apps/kjots/pics/filedel.png
share/apps/konqueror/servicemenus/encryptfile.desktop
share/apps/konqueror/servicemenus/encryptfolder.desktop
share/apps/konqueror/servicemenus/floppy_format.desktop
share/apps/kregexpeditor/pics/altn.png
share/apps/kregexpeditor/pics/anychar.png
share/apps/kregexpeditor/pics/autoverify.png
share/apps/kregexpeditor/pics/begline.png
share/apps/kregexpeditor/pics/characters.png
share/apps/kregexpeditor/pics/compound.png
share/apps/kregexpeditor/pics/endline.png
share/apps/kregexpeditor/pics/error.png
share/apps/kregexpeditor/pics/neglookahead.png
share/apps/kregexpeditor/pics/nonwordboundary.png
share/apps/kregexpeditor/pics/poslookahead.png
share/apps/kregexpeditor/pics/repeat.png
share/apps/kregexpeditor/pics/select.png
share/apps/kregexpeditor/pics/text.png
share/apps/kregexpeditor/pics/verify.png
share/apps/kregexpeditor/pics/wordboundary.png
share/apps/kregexpeditor/predefined/general/anything.regexp
share/apps/kregexpeditor/predefined/general/spaces.regexp
share/apps/ksim/monitors/DFree.desktop
share/apps/ksim/monitors/Lm_sensors.desktop
share/apps/ksim/monitors/Net.desktop
share/apps/ksim/monitors/Snmp.desktop
share/apps/ksim/monitors/cpu.desktop
share/apps/ksim/monitors/disk.desktop
share/apps/ksim/pics/clock.png
share/apps/ksim/pics/uptime.png
share/apps/ksim/themes/ksim/bg_chart.png
share/apps/ksim/themes/ksim/bg_grid.png
share/apps/ksim/themes/ksim/bg_meter.png
share/apps/ksim/themes/ksim/bg_panel.png
share/apps/ksim/themes/ksim/frame_bottom.png
share/apps/ksim/themes/ksim/frame_left.png
share/apps/ksim/themes/ksim/frame_right.png
share/apps/ksim/themes/ksim/frame_top.png
share/apps/ksim/themes/ksim/gkrellmrc
share/apps/ksim/themes/ksim/gkrellmrc_ksim
share/apps/ksim/themes/ksim/host/bg_meter.png
share/apps/ksim/themes/ksim/krell_meter.png
share/apps/ksim/themes/ksim/krell_panel.png
share/apps/ksim/themes/ksim/krell_slider.png
share/apps/ksim/themes/ksim/mail/decal_mail.png
share/apps/ksim/themes/ksim/mail/krell_mail.png
share/apps/ksim/themes/ksim/mail/krell_mail_daemon.png
share/apps/ksim/themes/ksim/net/decal_net_leds.png
share/apps/kwalletmanager/icons/crystalsvg/22x22/actions/folder_closed.png
share/apps/kwalletmanager/icons/crystalsvg/22x22/actions/folder_open.png
share/apps/kwalletmanager/icons/crystalsvg/22x22/actions/wallet_closed.png
share/apps/kwalletmanager/icons/crystalsvg/22x22/actions/wallet_open.png
share/apps/kwalletmanager/icons/oxygen/22x22/actions/folder_closed.png
share/apps/kwalletmanager/icons/oxygen/22x22/actions/folder_open.png
share/apps/kwalletmanager/kwalleteditor.rc
share/apps/kwalletmanager/kwalletmanager.rc
share/apps/profiles/klauncher.profile.xml
share/apps/profiles/konqueror.profile.xml
share/apps/profiles/noatun.profile.xml
share/apps/profiles/profile.dtd
share/apps/remotes/RM-0010.remote.xml
share/apps/remotes/cimr100.remote.xml
share/apps/remotes/hauppauge.remote.xml
share/apps/remotes/remote.dtd
share/apps/remotes/sherwood.remote.xml
share/apps/remotes/sonytv.remote.xml
share/apps/okteta/oktetaui.rc
share/apps/oktetapart/oktetapartui.rc
share/apps/superkaramba/superkarambaui.rc
share/autostart/irkick.desktop
share/apps/sweeper/sweeperui.rc
share/autostart/kgpg.desktop
share/config.kcfg/ark.kcfg
share/config.kcfg/kcalc.kcfg
share/config.kcfg/kedit.kcfg
share/config.kcfg/kgpg.kcfg
share/config.kcfg/kjots.kcfg
share/config/ksim_panelextensionrc
share/doc/HTML/en/KRegExpEditor/altn.png
share/doc/HTML/en/KRegExpEditor/altntool.png
share/doc/HTML/en/KRegExpEditor/anychar.png
share/doc/HTML/en/KRegExpEditor/anychartool.png
share/doc/HTML/en/KRegExpEditor/begline.png
share/doc/HTML/en/KRegExpEditor/boundarytools.png
share/doc/HTML/en/KRegExpEditor/characters.png
share/doc/HTML/en/KRegExpEditor/charactertool.png
share/doc/HTML/en/KRegExpEditor/common
share/doc/HTML/en/KRegExpEditor/compound.png
share/doc/HTML/en/KRegExpEditor/compoundtool.png
share/doc/HTML/en/KRegExpEditor/endline.png
share/doc/HTML/en/KRegExpEditor/index.cache.bz2
share/doc/HTML/en/KRegExpEditor/index.docbook
share/doc/HTML/en/KRegExpEditor/linestartendtool.png
share/doc/HTML/en/KRegExpEditor/lookaheadtools.png
share/doc/HTML/en/KRegExpEditor/neglookahead.png
share/doc/HTML/en/KRegExpEditor/nonwordboundary.png
share/doc/HTML/en/KRegExpEditor/poslookahead.png
share/doc/HTML/en/KRegExpEditor/repeat.png
share/doc/HTML/en/KRegExpEditor/repeattool.png
share/doc/HTML/en/KRegExpEditor/select.png
share/doc/HTML/en/KRegExpEditor/text.png
share/doc/HTML/en/KRegExpEditor/texttool.png
share/doc/HTML/en/KRegExpEditor/theEditor.png
share/doc/HTML/en/KRegExpEditor/wordboundary.png
share/config/superkaramba.knsrc
share/dbus-1/interfaces/org.kde.kgpg.Key.xml
share/dbus-1/interfaces/org.kde.superkaramba.xml
share/dbus-1/interfaces/org.kde.sweeper.xml
share/doc/HTML/en/ark/common
share/doc/HTML/en/ark/index.cache.bz2
share/doc/HTML/en/ark/index.docbook
share/doc/HTML/en/ark/man-ark.1.docbook
share/doc/HTML/en/irkick/common
share/doc/HTML/en/irkick/index.cache.bz2
share/doc/HTML/en/irkick/index.docbook
share/doc/HTML/en/kcalc/commands.docbook
share/doc/HTML/en/kcalc/common
share/doc/HTML/en/kcalc/index.cache.bz2
share/doc/HTML/en/kcalc/index.docbook
share/doc/HTML/en/kcalc/kcalc_on_Aix.txt
share/doc/HTML/en/kcalc/kcalc_on_OSF.txt
share/doc/HTML/en/kcharselect/common
share/doc/HTML/en/kcharselect/index.cache.bz2
share/doc/HTML/en/kcharselect/index.docbook
share/doc/HTML/en/kcmlirc/common
share/doc/HTML/en/kcmlirc/index.cache.bz2
share/doc/HTML/en/kcmlirc/index.docbook
share/doc/HTML/en/kcontrol/kcmlowbatcrit/common
share/doc/HTML/en/kcontrol/kcmlowbatcrit/index.cache.bz2
share/doc/HTML/en/kcontrol/kcmlowbatcrit/index.docbook
share/doc/HTML/en/kcontrol/kcmlowbatwarn/common
share/doc/HTML/en/kcontrol/kcmlowbatwarn/index.cache.bz2
share/doc/HTML/en/kcontrol/kcmlowbatwarn/index.docbook
share/doc/HTML/en/kcontrol/laptop/common
share/doc/HTML/en/kcontrol/laptop/index.cache.bz2
share/doc/HTML/en/kcontrol/laptop/index.docbook
share/doc/HTML/en/kcontrol/powerctrl/common
share/doc/HTML/en/kcontrol/powerctrl/index.cache.bz2
share/doc/HTML/en/kcontrol/powerctrl/index.docbook
share/doc/HTML/en/kdf/common
share/doc/HTML/en/kdf/index.cache.bz2
share/doc/HTML/en/kdf/index.docbook
share/doc/HTML/en/kdf/kdf.png
share/doc/HTML/en/kdf/kdf_config.png
share/doc/HTML/en/kedit/common
share/doc/HTML/en/kedit/index.cache.bz2
share/doc/HTML/en/kedit/index.docbook
share/doc/HTML/en/kfloppy/common
share/doc/HTML/en/kfloppy/index.cache.bz2
share/doc/HTML/en/kfloppy/index.docbook
@ -347,226 +136,187 @@ share/doc/HTML/en/kgpg/index.cache.bz2
share/doc/HTML/en/kgpg/index.docbook
share/doc/HTML/en/kgpg/keygen.png
share/doc/HTML/en/kgpg/keymanage.png
share/doc/HTML/en/kgpg/keyprop.png
share/doc/HTML/en/kgpg/keys.png
share/doc/HTML/en/kgpg/keyserver.png
share/doc/HTML/en/kgpg/kicker.png
share/doc/HTML/en/kgpg/options.png
share/doc/HTML/en/khexedit/common
share/doc/HTML/en/khexedit/index.cache.bz2
share/doc/HTML/en/khexedit/index.docbook
share/doc/HTML/en/khexedit/khexedit1.png
share/doc/HTML/en/kinfocenter/blockdevices/common
share/doc/HTML/en/kinfocenter/blockdevices/index.cache.bz2
share/doc/HTML/en/kinfocenter/blockdevices/index.docbook
share/doc/HTML/en/kjots/common
share/doc/HTML/en/kjots/index.cache.bz2
share/doc/HTML/en/kjots/index.docbook
share/doc/HTML/en/ksim/common
share/doc/HTML/en/ksim/index.cache.bz2
share/doc/HTML/en/ksim/index.docbook
share/doc/HTML/en/ktimer/common
share/doc/HTML/en/ktimer/index.cache.bz2
share/doc/HTML/en/ktimer/index.docbook
share/doc/HTML/en/kwallet/common
share/doc/HTML/en/kwallet/cr22-action-wallet_closed.png
share/doc/HTML/en/kwallet/cr22-action-wallet_open.png
share/doc/HTML/en/kwallet/edit1.png
share/doc/HTML/en/kwallet/edit2.png
share/doc/HTML/en/kwallet/edit3.png
share/doc/HTML/en/kwallet/index.cache.bz2
share/doc/HTML/en/kwallet/index.docbook
share/doc/HTML/en/kwallet/kwalletmanager.png
share/doc/HTML/en/kwallet/ox22-action-wallet_closed.png
share/doc/HTML/en/kwallet/ox22-action-wallet_open.png
share/doc/HTML/en/kwallet/password1.png
share/doc/HTML/en/kwallet/password2.png
share/doc/HTML/en/okteta/basics.docbook
share/doc/HTML/en/okteta/common
share/doc/HTML/en/okteta/credits.docbook
share/doc/HTML/en/okteta/index.cache.bz2
share/doc/HTML/en/okteta/index.docbook
share/doc/HTML/en/okteta/introduction.docbook
share/doc/HTML/en/okteta/menu.docbook
share/doc/HTML/en/okteta/tools.docbook
share/doc/HTML/en/superkaramba/common
share/doc/HTML/en/superkaramba/index.cache.bz2
share/doc/HTML/en/superkaramba/index.docbook
share/icons/crystalsvg/128x128/apps/superkaramba.png
share/icons/crystalsvg/128x128/mimetypes/superkaramba_theme.png
share/icons/crystalsvg/16x16/apps/kcmdf.png
share/icons/crystalsvg/16x16/apps/ksim.png
share/icons/crystalsvg/16x16/apps/superkaramba.png
share/icons/crystalsvg/16x16/devices/ksim_cpu.png
share/icons/crystalsvg/16x16/mimetypes/superkaramba_theme.png
share/icons/crystalsvg/22x22/apps/kcmdf.png
share/icons/crystalsvg/22x22/apps/superkaramba.png
share/icons/crystalsvg/22x22/mimetypes/superkaramba_theme.png
share/icons/crystalsvg/32x32/apps/kcmdf.png
share/icons/crystalsvg/32x32/apps/ksim.png
share/icons/crystalsvg/32x32/apps/superkaramba.png
share/icons/crystalsvg/32x32/mimetypes/superkaramba_theme.png
share/icons/crystalsvg/48x48/apps/ksim.png
share/icons/crystalsvg/48x48/apps/superkaramba.png
share/icons/crystalsvg/48x48/mimetypes/superkaramba_theme.png
share/icons/crystalsvg/64x64/apps/superkaramba.png
share/icons/crystalsvg/64x64/mimetypes/superkaramba_theme.png
share/icons/crystalsvg/scalable/apps/superkaramba.svgz
share/icons/crystalsvg/scalable/mimetypes/superkaramba_theme.svgz
share/icons/hicolor/128x128/apps/ark.png
share/icons/hicolor/128x128/apps/kdf.png
share/icons/hicolor/128x128/apps/kfloppy.png
share/icons/hicolor/128x128/apps/kregexpeditor.png
share/icons/hicolor/128x128/apps/ktimer.png
share/icons/hicolor/128x128/apps/kwalletmanager.png
share/icons/hicolor/128x128/apps/kwalletmanager2.png
share/icons/hicolor/128x128/apps/kwikdisk.png
share/icons/hicolor/16x16/apps/ark.png
share/icons/hicolor/16x16/apps/irkick.png
share/icons/hicolor/128x128/apps/superkaramba.png
share/icons/hicolor/16x16/apps/kcalc.png
share/icons/hicolor/16x16/apps/kcharselect.png
share/icons/hicolor/16x16/apps/kdf.png
share/icons/hicolor/16x16/apps/kedit.png
share/icons/hicolor/16x16/apps/kfloppy.png
share/icons/hicolor/16x16/apps/kgpg.png
share/icons/hicolor/16x16/apps/khexedit.png
share/icons/hicolor/16x16/apps/kjots.png
share/icons/hicolor/16x16/apps/kregexpeditor.png
share/icons/hicolor/16x16/apps/ktimer.png
share/icons/hicolor/16x16/apps/kwalletmanager.png
share/icons/hicolor/16x16/apps/kwalletmanager2.png
share/icons/hicolor/16x16/apps/kwikdisk.png
share/icons/hicolor/22x22/apps/ark.png
share/icons/hicolor/22x22/apps/irkick.png
share/icons/hicolor/16x16/apps/okteta.png
share/icons/hicolor/16x16/apps/superkaramba.png
share/icons/hicolor/22x22/apps/kcalc.png
share/icons/hicolor/22x22/apps/kdf.png
share/icons/hicolor/22x22/apps/kedit.png
share/icons/hicolor/22x22/apps/kfloppy.png
share/icons/hicolor/22x22/apps/kgpg.png
share/icons/hicolor/22x22/apps/kjots.png
share/icons/hicolor/22x22/apps/kregexpeditor.png
share/icons/hicolor/22x22/apps/kwalletmanager.png
share/icons/hicolor/22x22/apps/kwikdisk.png
share/icons/hicolor/32x32/apps/ark.png
share/icons/hicolor/32x32/apps/irkick.png
share/icons/hicolor/22x22/apps/superkaramba.png
share/icons/hicolor/32x32/apps/kcalc.png
share/icons/hicolor/32x32/apps/kcharselect.png
share/icons/hicolor/32x32/apps/kdf.png
share/icons/hicolor/32x32/apps/kedit.png
share/icons/hicolor/32x32/apps/kfloppy.png
share/icons/hicolor/32x32/apps/kgpg.png
share/icons/hicolor/32x32/apps/khexedit.png
share/icons/hicolor/32x32/apps/kjots.png
share/icons/hicolor/32x32/apps/kregexpeditor.png
share/icons/hicolor/32x32/apps/ktimer.png
share/icons/hicolor/32x32/apps/kwalletmanager.png
share/icons/hicolor/32x32/apps/kwalletmanager2.png
share/icons/hicolor/32x32/apps/kwikdisk.png
share/icons/hicolor/48x48/apps/ark.png
share/icons/hicolor/32x32/apps/okteta.png
share/icons/hicolor/32x32/apps/superkaramba.png
share/icons/hicolor/48x48/apps/kcalc.png
share/icons/hicolor/48x48/apps/kcharselect.png
share/icons/hicolor/48x48/apps/kdf.png
share/icons/hicolor/48x48/apps/kedit.png
share/icons/hicolor/48x48/apps/kfloppy.png
share/icons/hicolor/48x48/apps/kgpg.png
share/icons/hicolor/48x48/apps/khexedit.png
share/icons/hicolor/48x48/apps/kjots.png
share/icons/hicolor/48x48/apps/kregexpeditor.png
share/icons/hicolor/48x48/apps/ktimer.png
share/icons/hicolor/48x48/apps/kwalletmanager.png
share/icons/hicolor/48x48/apps/kwalletmanager2.png
share/icons/hicolor/48x48/apps/kwikdisk.png
share/icons/hicolor/64x64/apps/ark.png
share/icons/hicolor/48x48/apps/okteta.png
share/icons/hicolor/48x48/apps/superkaramba.png
share/icons/hicolor/64x64/apps/kcalc.png
share/icons/hicolor/64x64/apps/kdf.png
share/icons/hicolor/64x64/apps/kedit.png
share/icons/hicolor/64x64/apps/kfloppy.png
share/icons/hicolor/64x64/apps/kjots.png
share/icons/hicolor/64x64/apps/kregexpeditor.png
share/icons/hicolor/64x64/apps/kwalletmanager.png
share/icons/hicolor/64x64/apps/kwalletmanager2.png
share/icons/hicolor/64x64/apps/kwikdisk.png
share/icons/hicolor/scalable/apps/ark.svgz
share/icons/hicolor/64x64/apps/superkaramba.png
share/icons/hicolor/scalable/apps/kcalc.svgz
share/icons/locolor/16x16/apps/irkick.png
share/icons/locolor/32x32/apps/irkick.png
share/mimelnk/application/x-superkaramba.desktop
share/services/ark_part.desktop
share/services/kbyteseditwidget.desktop
share/services/khexedit2part.desktop
share/services/kregexpeditorgui.desktop
share/services/kwallet_config.desktop
share/services/kwalletmanager_show.desktop
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/superkaramba/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/superkaramba/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/knumber/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/knumber/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/knumber/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/knumber/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/superkaramba/html
share/icons/hicolor/scalable/apps/superkaramba.svgz
share/icons/oxygen/16x16/apps/kcmdf.png
share/icons/oxygen/22x22/apps/kcmdf.png
share/icons/oxygen/32x32/apps/kcmdf.png
share/kde4/services/ServiceMenus/encryptfile.desktop
share/kde4/services/ServiceMenus/encryptfolder.desktop
share/kde4/services/ServiceMenus/floppy_format.desktop
share/kde4/services/ark_part.desktop
share/kde4/services/kbytearrayedit.desktop
share/kde4/services/kcmdf.desktop
share/kde4/services/kerfuffle_bk.desktop
share/kde4/services/kerfuffle_libarchive.desktop
share/kde4/services/kerfuffle_libzip.desktop
share/kde4/services/kerfuffle_rar.desktop
share/kde4/services/kwalletconfig.desktop
share/kde4/services/kwalletmanager_show.desktop
share/kde4/services/oktetapart.desktop
share/kde4/services/plasma-package-superkaramba.desktop
share/kde4/services/plasma-scriptengine-superkaramba.desktop
share/kde4/servicetypes/kerfufflePlugin.desktop
@dirrmtry share/kde4/servicetypes
@dirrmtry share/kde4/services/ServiceMenus
@dirrmtry share/kde4/services
@dirrmtry share/kde4
@dirrmtry share/icons/oxygen/32x32/apps
@dirrmtry share/icons/oxygen/32x32
@dirrmtry share/icons/oxygen/22x22/apps
@dirrmtry share/icons/oxygen/22x22
@dirrmtry share/icons/oxygen/16x16/apps
@dirrmtry share/icons/oxygen/16x16
@dirrmtry share/icons/oxygen
@dirrmtry share/icons/hicolor/scalable/apps
@dirrmtry share/icons/hicolor/scalable
@dirrmtry share/icons/hicolor/64x64/apps
@dirrmtry share/icons/hicolor/64x64
@dirrmtry share/icons/hicolor/48x48/apps
@dirrmtry share/icons/hicolor/48x48
@dirrmtry share/icons/hicolor/32x32/apps
@dirrmtry share/icons/hicolor/32x32
@dirrmtry share/icons/hicolor/22x22/apps
@dirrmtry share/icons/hicolor/22x22
@dirrmtry share/icons/hicolor/16x16/apps
@dirrmtry share/icons/hicolor/16x16
@dirrmtry share/icons/hicolor/128x128/apps
@dirrmtry share/icons/hicolor/128x128
@dirrmtry share/icons/hicolor
@dirrmtry share/icons
@dirrm share/doc/HTML/en/superkaramba
@dirrm share/doc/HTML/en/okteta
@dirrm share/doc/HTML/en/kwallet
@dirrm share/doc/HTML/en/ktimer
@dirrm share/doc/HTML/en/ksim
@dirrm share/doc/HTML/en/kjots
@dirrm share/doc/HTML/en/kinfocenter/blockdevices
@dirrm share/doc/HTML/en/khexedit
@dirrm share/doc/HTML/en/kgpg
@dirrm share/doc/HTML/en/kfloppy
@dirrm share/doc/HTML/en/kedit
@dirrm share/doc/HTML/en/kdf
@dirrm share/doc/HTML/en/kdeutils-apidocs/superkaramba/html
@dirrm share/doc/HTML/en/kdeutils-apidocs/superkaramba
@dirrm share/doc/HTML/en/kdeutils-apidocs/kcalc/knumber/html
@dirrm share/doc/HTML/en/kdeutils-apidocs/kcalc/knumber
@dirrm share/doc/HTML/en/kdeutils-apidocs/kcalc/html
@dirrm share/doc/HTML/en/kdeutils-apidocs/kcalc
@dirrm share/doc/HTML/en/kdeutils-apidocs
@dirrm share/doc/HTML/en/kcontrol/powerctrl
@dirrm share/doc/HTML/en/kcontrol/laptop
@dirrm share/doc/HTML/en/kcontrol/kcmlowbatwarn
@dirrm share/doc/HTML/en/kcontrol/kcmlowbatcrit
@dirrm share/doc/HTML/en/kcmlirc
@dirrm share/doc/HTML/en/kcharselect
@dirrm share/doc/HTML/en/kcalc
@dirrm share/doc/HTML/en/irkick
@dirrm share/doc/HTML/en/ark
@dirrm share/doc/HTML/en/KRegExpEditor
@dirrmtry share/doc/HTML/en
@dirrmtry share/doc/HTML
@dirrmtry share/dbus-1/interfaces
@dirrmtry share/dbus-1
@dirrmtry share/config.kcfg
@dirrmtry share/config
@dirrmtry share/autostart
@dirrm share/apps/sweeper
@dirrm share/apps/superkaramba
@dirrm share/apps/remotes
@dirrm share/apps/kwalletmanager/icons/crystalsvg/22x22/actions
@dirrm share/apps/kwalletmanager/icons/crystalsvg/22x22
@dirrm share/apps/kwalletmanager/icons/crystalsvg
@dirrm share/apps/oktetapart
@dirrm share/apps/okteta
@dirrm share/apps/kwalletmanager/icons/oxygen/22x22/actions
@dirrm share/apps/kwalletmanager/icons/oxygen/22x22
@dirrm share/apps/kwalletmanager/icons/oxygen
@dirrm share/apps/kwalletmanager/icons
@dirrm share/apps/kwalletmanager
@dirrm share/apps/ksim/themes/ksim/net
@dirrm share/apps/ksim/themes/ksim/mail
@dirrm share/apps/ksim/themes/ksim/host
@dirrm share/apps/ksim/themes/ksim
@dirrm share/apps/ksim/themes
@dirrm share/apps/ksim/pics
@dirrm share/apps/ksim/monitors
@dirrm share/apps/ksim
@dirrm share/apps/kregexpeditor/predefined/general
@dirrm share/apps/kregexpeditor/predefined
@dirrm share/apps/kregexpeditor/pics
@dirrm share/apps/kregexpeditor
@dirrm share/apps/kjots/pics
@dirrm share/apps/kjots
@dirrm share/apps/khexedit2part
@dirrm share/apps/khexedit/pics
@dirrm share/apps/khexedit
@dirrm share/apps/kgpg/pics
@dirrm share/apps/kgpg/icons/crystalsvg/22x22/actions
@dirrm share/apps/kgpg/icons/crystalsvg/22x22
@dirrm share/apps/kgpg/icons/crystalsvg/16x16/actions
@dirrm share/apps/kgpg/icons/crystalsvg/16x16
@dirrm share/apps/kgpg/icons/crystalsvg
@dirrm share/apps/kgpg/icons/oxygen/scalable/status
@dirrm share/apps/kgpg/icons/oxygen/scalable/actions
@dirrm share/apps/kgpg/icons/oxygen/scalable
@dirrm share/apps/kgpg/icons/oxygen/48x48/status
@dirrm share/apps/kgpg/icons/oxygen/48x48/actions
@dirrm share/apps/kgpg/icons/oxygen/48x48
@dirrm share/apps/kgpg/icons/oxygen/32x32/status
@dirrm share/apps/kgpg/icons/oxygen/32x32/actions
@dirrm share/apps/kgpg/icons/oxygen/32x32
@dirrm share/apps/kgpg/icons/oxygen/22x22/status
@dirrm share/apps/kgpg/icons/oxygen/22x22/actions
@dirrm share/apps/kgpg/icons/oxygen/22x22
@dirrm share/apps/kgpg/icons/oxygen/16x16/status
@dirrm share/apps/kgpg/icons/oxygen/16x16/actions
@dirrm share/apps/kgpg/icons/oxygen/16x16
@dirrm share/apps/kgpg/icons/oxygen
@dirrm share/apps/kgpg/icons
@dirrm share/apps/kgpg
@dirrm share/apps/kedit
@dirrm share/apps/kdf/pics
@dirrm share/apps/kdf
@dirrm share/apps/kcharselect
@dirrmtry share/apps/kconf_update
@dirrmtry share/apps/kcharselect
@dirrm share/apps/kcalc
@dirrm share/apps/irkick/icons/hicolor/32x32/actions
@dirrm share/apps/irkick/icons/hicolor/32x32
@dirrm share/apps/irkick/icons/hicolor/16x16/actions
@dirrm share/apps/irkick/icons/hicolor/16x16
@dirrm share/apps/irkick/icons/hicolor
@dirrm share/apps/irkick/icons
@dirrm share/apps/irkick
@dirrm share/apps/ark/icons/crystalsvg/32x32/actions
@dirrm share/apps/ark/icons/crystalsvg/32x32
@dirrm share/apps/ark/icons/crystalsvg/22x22/actions
@dirrm share/apps/ark/icons/crystalsvg/22x22
@dirrm share/apps/ark/icons/crystalsvg
@dirrm share/apps/ark/icons
@dirrm share/apps/ark
@dirrm include/ksim
@dirrmtry share/apps
@dirrmtry share/applications/kde4
@dirrmtry share/applications
@dirrmtry lib/kde4

View File

@ -7,6 +7,7 @@
SUBDIR += adodb
SUBDIR += adodb5
SUBDIR += adstudio
SUBDIR += akonadi
SUBDIR += animenfo-client
SUBDIR += animenfo-client-gtk
SUBDIR += aolserver-nsmysql

View File

@ -0,0 +1,62 @@
# New ports collection Makefile for: akonadi
# Date created: 2008-01-20
# Whom: miwi
#
# $FreeBSD$
PORTNAME= akonadi
PORTVERSION= 1.0.0
CATEGORIES= databases kde ipv6
MASTER_SITES= http://akonadi.omat.nl/
DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
COMMENT= Storage server for kdepim
BUILD_DEPENDS+= xsltproc:${PORTSDIR}/textproc/libxslt \
${LOCALBASE}/lib/qt4/plugins/sqldrivers/libqsqlmysql.so:${PORTSDIR}/databases/qt4-mysql-plugin \
${LOCALBASE}/bin/mysqld_safe:${PORTSDIR}/databases/mysql${MYSQL_VER}-server
RUN_DEPENDS+= update-mime-database:${PORTSDIR}/misc/shared-mime-info \
${LOCALBASE}/bin/mysqld_safe:${PORTSDIR}/databases/mysql${MYSQL_VER}-server
USE_BZIP2= yes
USE_QT_VER= 4
USE_XORG= x11
QT_COMPONENTS= corelib network qtestlib moc rcc uic qmake dbus
USE_MYSQL= yes
USE_KDE4= kdeprefix kdehier automoc4 sharedmime
KDE4_BUILDENV= yes
PATCH_WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
post-extract:
${MKDIR} ${WRKSRC}
post-patch:
#fix finding automoc when PREFIX is not matched KDE4_PREFIX
${REINPLACE_CMD} -e 's|NO_DEFAULT_PATH|${KDE4_PREFIX} NO_DEFAULT_PATH|' \
${WRKSRC}/../cmake/modules/FindAutomoc4.cmake
${REINPLACE_CMD} -e '/akonadi.pc/s|pkgconfig|../libdata/pkgconfig|' \
${PATCH_WRKSRC}/CMakeLists.txt
${CP} ${PATCH_WRKSRC}/server/src/storage/entities-header.xsl \
${PATCH_WRKSRC}/server/src/storage/entitiesKDE4.header.xsl
cd ${PATCH_WRKSRC}/server && \
${REINPLACE_CMD} -e 's|entities.h|entitiesKDE4.h|g' \
CMakeLists.txt \
src/storage/entities.xsl \
src/storage/doxygen-preprocess-entities.sh
# graphics/gd installs entities.h to ${LOCALBASE}/include, rename kde's entities.h to fix build
.for ext in *.cpp *.h
${FIND} ${PATCH_WRKSRC} -name ${ext} | ${XARGS} \
${REINPLACE_CMD} -e 's|include "entities.h"|include <entitiesKDE4.h>|g' \
-e 's|include <entities.h>|include <entitiesKDE4.h>|g'
.endfor
${REINPLACE_CMD} -e 's| MYSQLD_EXECUTABLE mysqld | MYSQLD_EXECUTABLE mysqld_safe /usr/local/bin |g' \
${PATCH_WRKSRC}/server/CMakeLists.txt
#prevent updating mime during build
${REINPLACE_CMD} -e '/^update_xdg_mimetypes/d; /SharedMimeInfo/d' \
${PATCH_WRKSRC}/CMakeLists.txt
post-install:
@-update-mime-database ${KDE4_PREFIX}/share/mime
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (KDE/akonadi-1.0.0.tar.bz2) = 90039928f818a55a7e2a1bf852a32f2d
SHA256 (KDE/akonadi-1.0.0.tar.bz2) = fab1f59019d277ad461acaa866a520350240927c3c526cbfdebe825cc6be55fd
SIZE (KDE/akonadi-1.0.0.tar.bz2) = 122815

View File

@ -0,0 +1,25 @@
Akonadi - The PIM Storage Service
* Common PIM data cache
o Type agnostic design
o Extensible
o Generic offline access, change recording and replay
o Generic conflict detection and resolution
o Resources are groupable by profile
o Items composed of independently retrievable multiple parts
o Zero-copy retrieval possible
* Concurrent access allows background activity independent of UI client
o Syncing mail, calendar, addressbooks to remote servers
o Syncing with mobile devices
o Permits semantic desktop infrastructure to access PIM data
o Archiving
o Indexing
o Out-of-process search
* Multi-process design
o Crash isolation
o Large items can't block whole system
o Linkage by IPC allows proprietary components
o Thin client installations can share components for scalability
WWW: http://pim.kde.org/akonadi/

View File

@ -0,0 +1,41 @@
bin/akonadi_control
bin/akonadictl
bin/akonadiserver
include/akonadi/private/akonadiprotocolinternals_export.h
include/akonadi/private/imapparser_p.h
include/akonadi/private/imapset_p.h
include/akonadi/private/notificationmessage_p.h
include/akonadi/private/protocol_p.h
include/akonadi/private/xdgbasedirs_p.h
lib/libakonadiprivate.so
lib/libakonadiprivate.so.1
lib/libakonadiprivate.so.1.0.0
lib/libakonadiprotocolinternals.so
lib/libakonadiprotocolinternals.so.1
lib/libakonadiprotocolinternals.so.1.0.0
libdata/pkgconfig/akonadi.pc
share/config/akonadi/mysql-global.conf
share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Control.xml
share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Status.xml
share/dbus-1/interfaces/org.freedesktop.Akonadi.AgentManager.xml
share/dbus-1/interfaces/org.freedesktop.Akonadi.ControlManager.xml
share/dbus-1/interfaces/org.freedesktop.Akonadi.NotificationManager.xml
share/dbus-1/interfaces/org.freedesktop.Akonadi.Resource.xml
share/dbus-1/interfaces/org.freedesktop.Akonadi.Search.xml
share/dbus-1/interfaces/org.freedesktop.Akonadi.SearchQuery.xml
share/dbus-1/interfaces/org.freedesktop.Akonadi.SearchQueryIterator.xml
share/dbus-1/interfaces/org.freedesktop.Akonadi.Server.xml
share/dbus-1/interfaces/org.freedesktop.Akonadi.Tracer.xml
share/dbus-1/interfaces/org.freedesktop.Akonadi.TracerNotification.xml
share/dbus-1/services/org.freedesktop.Akonadi.Control.service
share/mime/packages/akonadi-mime.xml
@dirrmtry share/mime/packages
@dirrmtry share/mime
@dirrmtry share/dbus-1/services
@dirrm share/config/akonadi
@dirrmtry share/config
@dirrmtry share/pixmaps
@dirrm include/akonadi/private
@dirrm include/akonadi
@exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime > /dev/null || /usr/bin/true
@unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime > /dev/null || /usr/bin/true

View File

@ -113,6 +113,10 @@
SUBDIR += kchm
SUBDIR += kchmviewer
SUBDIR += kdepim3
SUBDIR += kdepim3
SUBDIR += kdepim4
SUBDIR += kdepimlibs4
SUBDIR += kdeplasma-addons
SUBDIR += kdissert
SUBDIR += kickpim
SUBDIR += kio_locate

View File

@ -1,50 +1,34 @@
# New ports collection makefile for: kdeutils3
# Date created: 3 November 2001
# Whom: will@cvs.kde.org
# New ports collection Makefile for: kdeutils
# Date created: 2008-01-31
# Whom: Martin Wilke <miwi@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= kdeutils
PORTVERSION= ${KDE_VERSION}
CATEGORIES?= misc kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src
PORTVERSION= ${KDE4_VERSION}
CATEGORIES= misc kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
DIST_SUBDIR= KDE
MAINTAINER?= kde@FreeBSD.org
COMMENT= Utilities for the KDE integrated X11 desktop
MAINTAINER= kde@FreeBSD.org
COMMENT= Utilities for the KDE4 integrated X11 Desktop
LIB_DEPENDS= gmp.7:${PORTSDIR}/math/libgmp4 \
netsnmp:${PORTSDIR}/net-mgmt/net-snmp
RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg
LIB_DEPENDS= gmp.7:${PORTSDIR}/math/libgmp4 \
netsnmp:${PORTSDIR}/net-mgmt/net-snmp \
qimageblitz.4:${PORTSDIR}/x11/qimageblitz \
zip.1:${PORTSDIR}/archivers/libzip
RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg
CONFLICTS= kgpg-[0-9]* superkaramba-[0-9]*
LATEST_LINK= ${PORTNAME}4
USE_KDELIBS_VER=3
USE_KDEBASE_VER=3
PREFIX= ${KDE_PREFIX}
USE_PYTHON= yes
USE_BZIP2= yes
USE_GMAKE= yes
USE_AUTOTOOLS= libtool:15
DO_NOT_COMPILE+=klaptopdaemon kmilo
CONFIGURE_ENV+= DO_NOT_COMPILE="${DO_NOT_COMPILE}"
CONFIGURE_ARGS+=--with-pythondir=${LOCALBASE}
USE_QT_VER= 4
KDE4_BUILDENV= yes
USE_KDE4= kdelibs pimlibs workspace kdeprefix kdehier automoc4
QT_COMPONENTS= network gui moc rcc uic porting xml
USE_LDCONFIG= yes
LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3
post-extract:
${MKDIR} ${WRKSRC}
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
.include <bsd.port.pre.mk>
.if ${OSVERSION} > 501102
. if ${OSVERSION} > 600021
RUN_DEPENDS+= gtar:${PORTSDIR}/archivers/gtar
. endif
post-patch:
${REINPLACE_CMD} -e 's|>tar<|>gtar<|g' ${WRKSRC}/ark/ark.kcfg
.endif
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (KDE/kdeutils-3.5.8.tar.bz2) = d1a0fcc83f35428a76cf7523a04ba19c
SHA256 (KDE/kdeutils-3.5.8.tar.bz2) = 7dcbe3361cc53f9dac4c1bf6f45952d3d2518bec56cd8c07b8e07b4c4f12d0ac
SIZE (KDE/kdeutils-3.5.8.tar.bz2) = 3059172
MD5 (KDE/kdeutils-4.1.0.tar.bz2) = 456d811618e5417e224476089df9a3b3
SHA256 (KDE/kdeutils-4.1.0.tar.bz2) = e004cc66372156a70be2291f68400fe0caa4ae821d70cd5ded5a861e4e7e8cab
SIZE (KDE/kdeutils-4.1.0.tar.bz2) = 2279856

View File

@ -1,92 +0,0 @@
--- configure.orig 2007-10-08 14:31:38.000000000 +0000
+++ configure 2008-05-30 00:26:52.000000000 +0000
@@ -35789,89 +35789,6 @@
fi
-have_l_funcs=yes
-
-{ echo "$as_me:$LINENO: checking for sqrtl in -lm" >&5
-echo $ECHO_N "checking for sqrtl in -lm... $ECHO_C" >&6; }
-if test "${ac_cv_lib_m_sqrtl+set}" = set; then
- echo $ECHO_N "(cached) $ECHO_C" >&6
-else
- ac_check_lib_save_LIBS=$LIBS
-LIBS="-lm $LIBS"
-cat >conftest.$ac_ext <<_ACEOF
-/* confdefs.h. */
-_ACEOF
-cat confdefs.h >>conftest.$ac_ext
-cat >>conftest.$ac_ext <<_ACEOF
-/* end confdefs.h. */
-
-/* Override any GCC internal prototype to avoid an error.
- Use char because int might match the return type of a GCC
- builtin and then its argument prototype would still apply. */
-#ifdef __cplusplus
-extern "C"
-#endif
-char sqrtl ();
-int
-main ()
-{
-return sqrtl ();
- ;
- return 0;
-}
-_ACEOF
-rm -f conftest.$ac_objext conftest$ac_exeext
-if { (ac_try="$ac_link"
-case "(($ac_try" in
- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- *) ac_try_echo=$ac_try;;
-esac
-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
- (eval "$ac_link") 2>conftest.er1
- ac_status=$?
- grep -v '^ *+' conftest.er1 >conftest.err
- rm -f conftest.er1
- cat conftest.err >&5
- echo "$as_me:$LINENO: \$? = $ac_status" >&5
- (exit $ac_status); } && {
- test -z "$ac_c_werror_flag" ||
- test ! -s conftest.err
- } && test -s conftest$ac_exeext &&
- $as_test_x conftest$ac_exeext; then
- ac_cv_lib_m_sqrtl=yes
-else
- echo "$as_me: failed program was:" >&5
-sed 's/^/| /' conftest.$ac_ext >&5
-
- ac_cv_lib_m_sqrtl=no
-fi
-
-rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
- conftest$ac_exeext conftest.$ac_ext
-LIBS=$ac_check_lib_save_LIBS
-fi
-{ echo "$as_me:$LINENO: result: $ac_cv_lib_m_sqrtl" >&5
-echo "${ECHO_T}$ac_cv_lib_m_sqrtl" >&6; }
-if test $ac_cv_lib_m_sqrtl = yes; then
- cat >>confdefs.h <<_ACEOF
-#define HAVE_LIBM 1
-_ACEOF
-
- LIBS="-lm $LIBS"
-
-else
- have_l_funcs=no
-fi
-
-
-if test "xyes" = "x$have_l_funcs" ; then
-
-cat >>confdefs.h <<\_ACEOF
-#define HAVE_L_FUNCS 1
-_ACEOF
-
-fi
-
LIBGMP=
kde_safe_cppflags=$CPPFLAGS

View File

@ -1,20 +0,0 @@
--- kdelirc/irkick/klircclient.cpp.orig Sat Sep 10 10:21:34 2005
+++ kdelirc/irkick/klircclient.cpp Mon Jun 5 16:16:51 2006
@@ -55,15 +55,10 @@
sockaddr_un addr;
addr.sun_family = AF_UNIX;
- strcpy(addr.sun_path, "/dev/lircd");
+ strcpy(addr.sun_path, "/var/run/lirc/lircd");
if(::connect(sock, (struct sockaddr *)(&addr), sizeof(addr)) == -1)
{ ::close(sock);
- // in case of mandrake...
- strcpy(addr.sun_path, "/tmp/.lircd");
- if(::connect(sock, (struct sockaddr *)(&addr), sizeof(addr)) == -1)
- { ::close(sock);
- return false;
- }
+ return false;
}
theSocket = new QSocket;

View File

@ -1,46 +0,0 @@
--- ksim/monitors/filesystem/filesystemstats.cpp.orig 2007-10-08 11:49:45.000000000 +0200
+++ ksim/monitors/filesystem/filesystemstats.cpp 2007-10-26 19:32:09.000000000 +0200
@@ -30,7 +30,7 @@
#include <sys/types.h>
#include <sys/param.h>
-#if defined(HAVE_SYS_STATVFS_H) && !defined(__DragonFly__)
+#ifdef HAVE_SYS_STATVFS_H
#include <sys/statvfs.h>
#elif defined( HAVE_SYS_STATFS_H )
#include <sys/statfs.h>
@@ -59,12 +59,10 @@
#include <stdio.h>
#include <unistd.h>
-#if defined(HAVE_STATVFS) && !defined(__DragonFly__)
+#ifdef HAVE_STATVFS
typedef struct statvfs ksim_statfs;
-#define ksim_getfsstat getvfsstat
#elif defined( HAVE_STATFS ) || defined( Q_OS_FREEBSD )
typedef struct statfs ksim_statfs;
-#define ksim_getfsstat getfsstat
#else
typedef struct // fall back for (possibly) non-supported systems
{
@@ -75,7 +73,7 @@
int fsystemStats( const char * file, ksim_statfs & stats )
{
-#if defined(HAVE_STATVFS) && !defined(__DragonFly__)
+#ifdef HAVE_STATVFS
return statvfs( file, &stats );
#elif defined( HAVE_STATFS ) || defined( Q_OS_FREEBSD )
return statfs( file, &stats );
@@ -164,9 +162,9 @@
#endif
#ifdef USE_FSSTAT
- ksim_statfs sfs[32];
+ struct statfs sfs[32];
int fs_count;
- if ( ( fs_count = ksim_getfsstat( sfs, sizeof( sfs ), 0 ) ) != -1 )
+ if ( ( fs_count = getfsstat( sfs, sizeof( sfs ), 0 ) ) != -1 )
{
for ( int i = 0; i < fs_count; i++ )
{

View File

@ -1,343 +1,132 @@
bin/ark
bin/irkick
bin/kcalc
bin/kcharselect
bin/kdessh
bin/kdf
bin/kedit
bin/kfloppy
bin/kgpg
bin/khexedit
bin/kjots
bin/kregexpeditor
bin/ktimer
bin/kwalletmanager
bin/kwikdisk
bin/okteta
bin/superkaramba
include/kmultiformlistbox.h
include/kmultiformlistboxentry.h
include/kmultiformlistboxfactory.h
include/ksim/chart.h
include/ksim/common.h
include/ksim/ksimconfig.h
include/ksim/label.h
include/ksim/led.h
include/ksim/pluginglobal.h
include/ksim/pluginloader.h
include/ksim/pluginmodule.h
include/ksim/progress.h
include/ksim/themeloader.h
include/ksim/themetypes.h
include/kwidgetstreamer.h
lib/kde3/ark.a
lib/kde3/ark.la
lib/kde3/ark.so
lib/kde3/irkick.a
lib/kde3/irkick.la
lib/kde3/irkick.so
lib/kde3/kcalc.a
lib/kde3/kcalc.la
lib/kde3/kcalc.so
lib/kde3/kcharselect_panelapplet.a
lib/kde3/kcharselect_panelapplet.la
lib/kde3/kcharselect_panelapplet.so
lib/kde3/kcm_kcmlirc.a
lib/kde3/kcm_kcmlirc.la
lib/kde3/kcm_kcmlirc.so
lib/kde3/kcm_kdf.a
lib/kde3/kcm_kdf.la
lib/kde3/kcm_kdf.so
lib/kde3/kcm_kwallet.a
lib/kde3/kcm_kwallet.la
lib/kde3/kcm_kwallet.so
lib/kde3/kedit.a
lib/kde3/kedit.la
lib/kde3/kedit.so
lib/kde3/ksim_cpu.a
lib/kde3/ksim_cpu.la
lib/kde3/ksim_cpu.so
lib/kde3/ksim_disk.a
lib/kde3/ksim_disk.la
lib/kde3/ksim_disk.so
lib/kde3/ksim_filesystem.a
lib/kde3/ksim_filesystem.la
lib/kde3/ksim_filesystem.so
lib/kde3/ksim_net.a
lib/kde3/ksim_net.la
lib/kde3/ksim_net.so
lib/kde3/ksim_panelextension.a
lib/kde3/ksim_panelextension.la
lib/kde3/ksim_panelextension.so
lib/kde3/ksim_sensors.a
lib/kde3/ksim_sensors.la
lib/kde3/ksim_sensors.so
lib/kde3/ksim_snmp.a
lib/kde3/ksim_snmp.la
lib/kde3/ksim_snmp.so
lib/kde3/libarkpart.a
lib/kde3/libarkpart.la
lib/kde3/libarkpart.so
lib/kde3/libkbyteseditwidget.a
lib/kde3/libkbyteseditwidget.la
lib/kde3/libkbyteseditwidget.so
lib/kde3/libkhexedit2part.a
lib/kde3/libkhexedit2part.la
lib/kde3/libkhexedit2part.so
lib/kde3/libkregexpeditorgui.a
lib/kde3/libkregexpeditorgui.la
lib/kde3/libkregexpeditorgui.so
lib/libkdeinit_ark.a
lib/libkdeinit_ark.la
lib/libkdeinit_ark.so
lib/libkdeinit_irkick.a
lib/libkdeinit_irkick.la
lib/libkdeinit_irkick.so
lib/libkdeinit_kcalc.a
lib/libkdeinit_kcalc.la
lib/libkdeinit_kcalc.so
lib/libkdeinit_kedit.a
lib/libkdeinit_kedit.la
lib/libkdeinit_kedit.so
lib/libkhexeditcommon.a
lib/libkhexeditcommon.la
lib/libkhexeditcommon.so
lib/libkhexeditcommon.so.0
lib/libkregexpeditorcommon.a
lib/libkregexpeditorcommon.la
lib/libkregexpeditorcommon.so
lib/libkregexpeditorcommon.so.1
lib/libksimcore.a
lib/libksimcore.la
lib/libksimcore.so
lib/libksimcore.so.1
share/applications/kde/KCharSelect.desktop
share/applications/kde/KEdit.desktop
share/applications/kde/KFloppy.desktop
share/applications/kde/Kjots.desktop
share/applications/kde/ark.desktop
share/applications/kde/irkick.desktop
share/applications/kde/kcalc.desktop
share/applications/kde/kcmdf.desktop
share/applications/kde/kcmlirc.desktop
share/applications/kde/kdf.desktop
share/applications/kde/kgpg.desktop
share/applications/kde/khexedit.desktop
share/applications/kde/kregexpeditor.desktop
share/applications/kde/ktimer.desktop
share/applications/kde/kwalletconfig.desktop
share/applications/kde/kwalletmanager-kwalletd.desktop
share/applications/kde/kwalletmanager.desktop
share/applications/kde/kwikdisk.desktop
share/applnk/Utilities/superkaramba.desktop
bin/sweeper
lib/kde4/kcm_kdf.so
lib/kde4/kcm_kwallet.so
lib/kde4/kerfuffle_bk.so
lib/kde4/kerfuffle_libarchive.so
lib/kde4/kerfuffle_libzip.so
lib/kde4/kerfuffle_rar.so
lib/kde4/libarkpart.so
lib/kde4/libkbytearrayedit.so
lib/kde4/liboktetapart.so
lib/kde4/plasma_package_superkaramba.so
lib/kde4/plasma_scriptengine_superkaramba.so
lib/libkdeinit4_kcalc.so
lib/libkerfuffle.so
lib/libkerfuffle.so.5
lib/libkerfuffle.so.5.0.0
lib/liboktetacore.so
lib/liboktetacore.so.5
lib/liboktetacore.so.5.0.0
lib/liboktetagui.so
lib/liboktetagui.so.5
lib/liboktetagui.so.5.0.0
lib/libsuperkaramba.so
lib/libsuperkaramba.so.5
lib/libsuperkaramba.so.5.0.0
share/applications/kde4/KCharSelect.desktop
share/applications/kde4/KFloppy.desktop
share/applications/kde4/ark.desktop
share/applications/kde4/kcalc.desktop
share/applications/kde4/kdf.desktop
share/applications/kde4/kgpg.desktop
share/applications/kde4/ktimer.desktop
share/applications/kde4/kwalletmanager-kwalletd.desktop
share/applications/kde4/kwalletmanager.desktop
share/applications/kde4/kwikdisk.desktop
share/applications/kde4/okteta.desktop
share/applications/kde4/superkaramba.desktop
share/applications/kde4/sweeper.desktop
share/apps/ark/ark_part.rc
share/apps/ark/ark_part_readonly.rc
share/apps/ark/arkui.rc
share/apps/ark/icons/crystalsvg/22x22/actions/ark_adddir.png
share/apps/ark/icons/crystalsvg/22x22/actions/ark_addfile.png
share/apps/ark/icons/crystalsvg/22x22/actions/ark_delete.png
share/apps/ark/icons/crystalsvg/22x22/actions/ark_extract.png
share/apps/ark/icons/crystalsvg/22x22/actions/ark_selectall.png
share/apps/ark/icons/crystalsvg/22x22/actions/ark_view.png
share/apps/ark/icons/crystalsvg/32x32/actions/ark_adddir.png
share/apps/ark/icons/crystalsvg/32x32/actions/ark_addfile.png
share/apps/ark/icons/crystalsvg/32x32/actions/ark_delete.png
share/apps/ark/icons/crystalsvg/32x32/actions/ark_extract.png
share/apps/ark/icons/crystalsvg/32x32/actions/ark_view.png
share/apps/irkick/icons/hicolor/16x16/actions/irkick.png
share/apps/irkick/icons/hicolor/16x16/actions/irkickflash.png
share/apps/irkick/icons/hicolor/16x16/actions/irkickoff.png
share/apps/irkick/icons/hicolor/16x16/actions/ledblue.png
share/apps/irkick/icons/hicolor/16x16/actions/ledgreen.png
share/apps/irkick/icons/hicolor/16x16/actions/ledlightblue.png
share/apps/irkick/icons/hicolor/16x16/actions/ledlightgreen.png
share/apps/irkick/icons/hicolor/16x16/actions/ledorange.png
share/apps/irkick/icons/hicolor/16x16/actions/ledpurple.png
share/apps/irkick/icons/hicolor/16x16/actions/ledred.png
share/apps/irkick/icons/hicolor/16x16/actions/ledyellow.png
share/apps/irkick/icons/hicolor/32x32/actions/ledblue.png
share/apps/irkick/icons/hicolor/32x32/actions/ledgreen.png
share/apps/irkick/icons/hicolor/32x32/actions/ledlightblue.png
share/apps/irkick/icons/hicolor/32x32/actions/ledlightgreen.png
share/apps/irkick/icons/hicolor/32x32/actions/ledorange.png
share/apps/irkick/icons/hicolor/32x32/actions/ledpurple.png
share/apps/irkick/icons/hicolor/32x32/actions/ledred.png
share/apps/irkick/icons/hicolor/32x32/actions/ledyellow.png
share/apps/kcalc/kcalcui.rc
share/apps/kcalc/scienceconstants.xml
share/apps/kcharselect/kcharselectui.rc
share/apps/kconf_update/kcalcrc.upd
share/apps/kconf_update/kcharselect.upd
share/apps/kdf/kdfui.rc
share/apps/kdf/pics/delete.png
share/apps/kdf/pics/tick.png
share/apps/kedit/keditui.rc
share/apps/kgpg/icons/crystalsvg/16x16/actions/kgpg_key1.png
share/apps/kgpg/icons/crystalsvg/16x16/actions/kgpg_key2.png
share/apps/kgpg/icons/crystalsvg/16x16/actions/kgpg_key3.png
share/apps/kgpg/icons/crystalsvg/16x16/actions/kgpg_key4.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_edit.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_export.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_gen.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_identity.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_import.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_info.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_photo.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_show.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_sign.png
share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_term.png
share/apps/kgpg/icons/oxygen/16x16/actions/document-export-key.png
share/apps/kgpg/icons/oxygen/16x16/actions/document-import-key.png
share/apps/kgpg/icons/oxygen/16x16/actions/document-properties-key.png
share/apps/kgpg/icons/oxygen/16x16/status/key-group.png
share/apps/kgpg/icons/oxygen/16x16/status/key-orphan.png
share/apps/kgpg/icons/oxygen/16x16/status/key-pair.png
share/apps/kgpg/icons/oxygen/16x16/status/key-single.png
share/apps/kgpg/icons/oxygen/22x22/actions/document-export-key.png
share/apps/kgpg/icons/oxygen/22x22/actions/document-import-key.png
share/apps/kgpg/icons/oxygen/22x22/actions/document-properties-key.png
share/apps/kgpg/icons/oxygen/22x22/actions/key-generate-pair.png
share/apps/kgpg/icons/oxygen/22x22/actions/view-key-secret.png
share/apps/kgpg/icons/oxygen/22x22/status/key-group.png
share/apps/kgpg/icons/oxygen/22x22/status/key-pair.png
share/apps/kgpg/icons/oxygen/22x22/status/key-single.png
share/apps/kgpg/icons/oxygen/32x32/actions/document-export-key.png
share/apps/kgpg/icons/oxygen/32x32/actions/document-import-key.png
share/apps/kgpg/icons/oxygen/32x32/actions/document-properties-key.png
share/apps/kgpg/icons/oxygen/32x32/status/key-group.png
share/apps/kgpg/icons/oxygen/32x32/status/key-pair.png
share/apps/kgpg/icons/oxygen/32x32/status/key-single.png
share/apps/kgpg/icons/oxygen/48x48/actions/document-export-key.png
share/apps/kgpg/icons/oxygen/48x48/actions/document-import-key.png
share/apps/kgpg/icons/oxygen/48x48/actions/document-properties-key.png
share/apps/kgpg/icons/oxygen/48x48/status/key-group.png
share/apps/kgpg/icons/oxygen/48x48/status/key-pair.png
share/apps/kgpg/icons/oxygen/48x48/status/key-single.png
share/apps/kgpg/icons/oxygen/scalable/actions/document-export-key.svgz
share/apps/kgpg/icons/oxygen/scalable/actions/document-import-key.svgz
share/apps/kgpg/icons/oxygen/scalable/actions/document-properties-key.svgz
share/apps/kgpg/icons/oxygen/scalable/status/key-group.svgz
share/apps/kgpg/icons/oxygen/scalable/status/key-pair.svgz
share/apps/kgpg/icons/oxygen/scalable/status/key-single.svgz
share/apps/kgpg/keysmanager.rc
share/apps/kgpg/kgpg.rc
share/apps/kgpg/listkeys.rc
share/apps/kgpg/pics/kgpg_anim.gif
share/apps/kgpg/pics/kgpg_blank.png
share/apps/kgpg/pics/kgpg_docked.gif
share/apps/kgpg/pics/kgpg_docked.png
share/apps/kgpg/pics/kgpg_fill.png
share/apps/kgpg/tips
share/apps/khexedit/khexeditui.rc
share/apps/khexedit/pics/hexdrag.png
share/apps/khexedit/pics/hexmask.png
share/apps/khexedit/pics/hexwrite.png
share/apps/khexedit2part/khexedit2partui.rc
share/apps/kicker/applets/kcharselectapplet.desktop
share/apps/kicker/extensions/ksim.desktop
share/apps/kjots/kjotsui.rc
share/apps/kjots/pics/filedel.png
share/apps/konqueror/servicemenus/encryptfile.desktop
share/apps/konqueror/servicemenus/encryptfolder.desktop
share/apps/konqueror/servicemenus/floppy_format.desktop
share/apps/kregexpeditor/pics/altn.png
share/apps/kregexpeditor/pics/anychar.png
share/apps/kregexpeditor/pics/autoverify.png
share/apps/kregexpeditor/pics/begline.png
share/apps/kregexpeditor/pics/characters.png
share/apps/kregexpeditor/pics/compound.png
share/apps/kregexpeditor/pics/endline.png
share/apps/kregexpeditor/pics/error.png
share/apps/kregexpeditor/pics/neglookahead.png
share/apps/kregexpeditor/pics/nonwordboundary.png
share/apps/kregexpeditor/pics/poslookahead.png
share/apps/kregexpeditor/pics/repeat.png
share/apps/kregexpeditor/pics/select.png
share/apps/kregexpeditor/pics/text.png
share/apps/kregexpeditor/pics/verify.png
share/apps/kregexpeditor/pics/wordboundary.png
share/apps/kregexpeditor/predefined/general/anything.regexp
share/apps/kregexpeditor/predefined/general/spaces.regexp
share/apps/ksim/monitors/DFree.desktop
share/apps/ksim/monitors/Lm_sensors.desktop
share/apps/ksim/monitors/Net.desktop
share/apps/ksim/monitors/Snmp.desktop
share/apps/ksim/monitors/cpu.desktop
share/apps/ksim/monitors/disk.desktop
share/apps/ksim/pics/clock.png
share/apps/ksim/pics/uptime.png
share/apps/ksim/themes/ksim/bg_chart.png
share/apps/ksim/themes/ksim/bg_grid.png
share/apps/ksim/themes/ksim/bg_meter.png
share/apps/ksim/themes/ksim/bg_panel.png
share/apps/ksim/themes/ksim/frame_bottom.png
share/apps/ksim/themes/ksim/frame_left.png
share/apps/ksim/themes/ksim/frame_right.png
share/apps/ksim/themes/ksim/frame_top.png
share/apps/ksim/themes/ksim/gkrellmrc
share/apps/ksim/themes/ksim/gkrellmrc_ksim
share/apps/ksim/themes/ksim/host/bg_meter.png
share/apps/ksim/themes/ksim/krell_meter.png
share/apps/ksim/themes/ksim/krell_panel.png
share/apps/ksim/themes/ksim/krell_slider.png
share/apps/ksim/themes/ksim/mail/decal_mail.png
share/apps/ksim/themes/ksim/mail/krell_mail.png
share/apps/ksim/themes/ksim/mail/krell_mail_daemon.png
share/apps/ksim/themes/ksim/net/decal_net_leds.png
share/apps/kwalletmanager/icons/crystalsvg/22x22/actions/folder_closed.png
share/apps/kwalletmanager/icons/crystalsvg/22x22/actions/folder_open.png
share/apps/kwalletmanager/icons/crystalsvg/22x22/actions/wallet_closed.png
share/apps/kwalletmanager/icons/crystalsvg/22x22/actions/wallet_open.png
share/apps/kwalletmanager/icons/oxygen/22x22/actions/folder_closed.png
share/apps/kwalletmanager/icons/oxygen/22x22/actions/folder_open.png
share/apps/kwalletmanager/kwalleteditor.rc
share/apps/kwalletmanager/kwalletmanager.rc
share/apps/profiles/klauncher.profile.xml
share/apps/profiles/konqueror.profile.xml
share/apps/profiles/noatun.profile.xml
share/apps/profiles/profile.dtd
share/apps/remotes/RM-0010.remote.xml
share/apps/remotes/cimr100.remote.xml
share/apps/remotes/hauppauge.remote.xml
share/apps/remotes/remote.dtd
share/apps/remotes/sherwood.remote.xml
share/apps/remotes/sonytv.remote.xml
share/apps/okteta/oktetaui.rc
share/apps/oktetapart/oktetapartui.rc
share/apps/superkaramba/superkarambaui.rc
share/autostart/irkick.desktop
share/apps/sweeper/sweeperui.rc
share/autostart/kgpg.desktop
share/config.kcfg/ark.kcfg
share/config.kcfg/kcalc.kcfg
share/config.kcfg/kedit.kcfg
share/config.kcfg/kgpg.kcfg
share/config.kcfg/kjots.kcfg
share/config/ksim_panelextensionrc
share/doc/HTML/en/KRegExpEditor/altn.png
share/doc/HTML/en/KRegExpEditor/altntool.png
share/doc/HTML/en/KRegExpEditor/anychar.png
share/doc/HTML/en/KRegExpEditor/anychartool.png
share/doc/HTML/en/KRegExpEditor/begline.png
share/doc/HTML/en/KRegExpEditor/boundarytools.png
share/doc/HTML/en/KRegExpEditor/characters.png
share/doc/HTML/en/KRegExpEditor/charactertool.png
share/doc/HTML/en/KRegExpEditor/common
share/doc/HTML/en/KRegExpEditor/compound.png
share/doc/HTML/en/KRegExpEditor/compoundtool.png
share/doc/HTML/en/KRegExpEditor/endline.png
share/doc/HTML/en/KRegExpEditor/index.cache.bz2
share/doc/HTML/en/KRegExpEditor/index.docbook
share/doc/HTML/en/KRegExpEditor/linestartendtool.png
share/doc/HTML/en/KRegExpEditor/lookaheadtools.png
share/doc/HTML/en/KRegExpEditor/neglookahead.png
share/doc/HTML/en/KRegExpEditor/nonwordboundary.png
share/doc/HTML/en/KRegExpEditor/poslookahead.png
share/doc/HTML/en/KRegExpEditor/repeat.png
share/doc/HTML/en/KRegExpEditor/repeattool.png
share/doc/HTML/en/KRegExpEditor/select.png
share/doc/HTML/en/KRegExpEditor/text.png
share/doc/HTML/en/KRegExpEditor/texttool.png
share/doc/HTML/en/KRegExpEditor/theEditor.png
share/doc/HTML/en/KRegExpEditor/wordboundary.png
share/config/superkaramba.knsrc
share/dbus-1/interfaces/org.kde.kgpg.Key.xml
share/dbus-1/interfaces/org.kde.superkaramba.xml
share/dbus-1/interfaces/org.kde.sweeper.xml
share/doc/HTML/en/ark/common
share/doc/HTML/en/ark/index.cache.bz2
share/doc/HTML/en/ark/index.docbook
share/doc/HTML/en/ark/man-ark.1.docbook
share/doc/HTML/en/irkick/common
share/doc/HTML/en/irkick/index.cache.bz2
share/doc/HTML/en/irkick/index.docbook
share/doc/HTML/en/kcalc/commands.docbook
share/doc/HTML/en/kcalc/common
share/doc/HTML/en/kcalc/index.cache.bz2
share/doc/HTML/en/kcalc/index.docbook
share/doc/HTML/en/kcalc/kcalc_on_Aix.txt
share/doc/HTML/en/kcalc/kcalc_on_OSF.txt
share/doc/HTML/en/kcharselect/common
share/doc/HTML/en/kcharselect/index.cache.bz2
share/doc/HTML/en/kcharselect/index.docbook
share/doc/HTML/en/kcmlirc/common
share/doc/HTML/en/kcmlirc/index.cache.bz2
share/doc/HTML/en/kcmlirc/index.docbook
share/doc/HTML/en/kcontrol/kcmlowbatcrit/common
share/doc/HTML/en/kcontrol/kcmlowbatcrit/index.cache.bz2
share/doc/HTML/en/kcontrol/kcmlowbatcrit/index.docbook
share/doc/HTML/en/kcontrol/kcmlowbatwarn/common
share/doc/HTML/en/kcontrol/kcmlowbatwarn/index.cache.bz2
share/doc/HTML/en/kcontrol/kcmlowbatwarn/index.docbook
share/doc/HTML/en/kcontrol/laptop/common
share/doc/HTML/en/kcontrol/laptop/index.cache.bz2
share/doc/HTML/en/kcontrol/laptop/index.docbook
share/doc/HTML/en/kcontrol/powerctrl/common
share/doc/HTML/en/kcontrol/powerctrl/index.cache.bz2
share/doc/HTML/en/kcontrol/powerctrl/index.docbook
share/doc/HTML/en/kdf/common
share/doc/HTML/en/kdf/index.cache.bz2
share/doc/HTML/en/kdf/index.docbook
share/doc/HTML/en/kdf/kdf.png
share/doc/HTML/en/kdf/kdf_config.png
share/doc/HTML/en/kedit/common
share/doc/HTML/en/kedit/index.cache.bz2
share/doc/HTML/en/kedit/index.docbook
share/doc/HTML/en/kfloppy/common
share/doc/HTML/en/kfloppy/index.cache.bz2
share/doc/HTML/en/kfloppy/index.docbook
@ -347,226 +136,187 @@ share/doc/HTML/en/kgpg/index.cache.bz2
share/doc/HTML/en/kgpg/index.docbook
share/doc/HTML/en/kgpg/keygen.png
share/doc/HTML/en/kgpg/keymanage.png
share/doc/HTML/en/kgpg/keyprop.png
share/doc/HTML/en/kgpg/keys.png
share/doc/HTML/en/kgpg/keyserver.png
share/doc/HTML/en/kgpg/kicker.png
share/doc/HTML/en/kgpg/options.png
share/doc/HTML/en/khexedit/common
share/doc/HTML/en/khexedit/index.cache.bz2
share/doc/HTML/en/khexedit/index.docbook
share/doc/HTML/en/khexedit/khexedit1.png
share/doc/HTML/en/kinfocenter/blockdevices/common
share/doc/HTML/en/kinfocenter/blockdevices/index.cache.bz2
share/doc/HTML/en/kinfocenter/blockdevices/index.docbook
share/doc/HTML/en/kjots/common
share/doc/HTML/en/kjots/index.cache.bz2
share/doc/HTML/en/kjots/index.docbook
share/doc/HTML/en/ksim/common
share/doc/HTML/en/ksim/index.cache.bz2
share/doc/HTML/en/ksim/index.docbook
share/doc/HTML/en/ktimer/common
share/doc/HTML/en/ktimer/index.cache.bz2
share/doc/HTML/en/ktimer/index.docbook
share/doc/HTML/en/kwallet/common
share/doc/HTML/en/kwallet/cr22-action-wallet_closed.png
share/doc/HTML/en/kwallet/cr22-action-wallet_open.png
share/doc/HTML/en/kwallet/edit1.png
share/doc/HTML/en/kwallet/edit2.png
share/doc/HTML/en/kwallet/edit3.png
share/doc/HTML/en/kwallet/index.cache.bz2
share/doc/HTML/en/kwallet/index.docbook
share/doc/HTML/en/kwallet/kwalletmanager.png
share/doc/HTML/en/kwallet/ox22-action-wallet_closed.png
share/doc/HTML/en/kwallet/ox22-action-wallet_open.png
share/doc/HTML/en/kwallet/password1.png
share/doc/HTML/en/kwallet/password2.png
share/doc/HTML/en/okteta/basics.docbook
share/doc/HTML/en/okteta/common
share/doc/HTML/en/okteta/credits.docbook
share/doc/HTML/en/okteta/index.cache.bz2
share/doc/HTML/en/okteta/index.docbook
share/doc/HTML/en/okteta/introduction.docbook
share/doc/HTML/en/okteta/menu.docbook
share/doc/HTML/en/okteta/tools.docbook
share/doc/HTML/en/superkaramba/common
share/doc/HTML/en/superkaramba/index.cache.bz2
share/doc/HTML/en/superkaramba/index.docbook
share/icons/crystalsvg/128x128/apps/superkaramba.png
share/icons/crystalsvg/128x128/mimetypes/superkaramba_theme.png
share/icons/crystalsvg/16x16/apps/kcmdf.png
share/icons/crystalsvg/16x16/apps/ksim.png
share/icons/crystalsvg/16x16/apps/superkaramba.png
share/icons/crystalsvg/16x16/devices/ksim_cpu.png
share/icons/crystalsvg/16x16/mimetypes/superkaramba_theme.png
share/icons/crystalsvg/22x22/apps/kcmdf.png
share/icons/crystalsvg/22x22/apps/superkaramba.png
share/icons/crystalsvg/22x22/mimetypes/superkaramba_theme.png
share/icons/crystalsvg/32x32/apps/kcmdf.png
share/icons/crystalsvg/32x32/apps/ksim.png
share/icons/crystalsvg/32x32/apps/superkaramba.png
share/icons/crystalsvg/32x32/mimetypes/superkaramba_theme.png
share/icons/crystalsvg/48x48/apps/ksim.png
share/icons/crystalsvg/48x48/apps/superkaramba.png
share/icons/crystalsvg/48x48/mimetypes/superkaramba_theme.png
share/icons/crystalsvg/64x64/apps/superkaramba.png
share/icons/crystalsvg/64x64/mimetypes/superkaramba_theme.png
share/icons/crystalsvg/scalable/apps/superkaramba.svgz
share/icons/crystalsvg/scalable/mimetypes/superkaramba_theme.svgz
share/icons/hicolor/128x128/apps/ark.png
share/icons/hicolor/128x128/apps/kdf.png
share/icons/hicolor/128x128/apps/kfloppy.png
share/icons/hicolor/128x128/apps/kregexpeditor.png
share/icons/hicolor/128x128/apps/ktimer.png
share/icons/hicolor/128x128/apps/kwalletmanager.png
share/icons/hicolor/128x128/apps/kwalletmanager2.png
share/icons/hicolor/128x128/apps/kwikdisk.png
share/icons/hicolor/16x16/apps/ark.png
share/icons/hicolor/16x16/apps/irkick.png
share/icons/hicolor/128x128/apps/superkaramba.png
share/icons/hicolor/16x16/apps/kcalc.png
share/icons/hicolor/16x16/apps/kcharselect.png
share/icons/hicolor/16x16/apps/kdf.png
share/icons/hicolor/16x16/apps/kedit.png
share/icons/hicolor/16x16/apps/kfloppy.png
share/icons/hicolor/16x16/apps/kgpg.png
share/icons/hicolor/16x16/apps/khexedit.png
share/icons/hicolor/16x16/apps/kjots.png
share/icons/hicolor/16x16/apps/kregexpeditor.png
share/icons/hicolor/16x16/apps/ktimer.png
share/icons/hicolor/16x16/apps/kwalletmanager.png
share/icons/hicolor/16x16/apps/kwalletmanager2.png
share/icons/hicolor/16x16/apps/kwikdisk.png
share/icons/hicolor/22x22/apps/ark.png
share/icons/hicolor/22x22/apps/irkick.png
share/icons/hicolor/16x16/apps/okteta.png
share/icons/hicolor/16x16/apps/superkaramba.png
share/icons/hicolor/22x22/apps/kcalc.png
share/icons/hicolor/22x22/apps/kdf.png
share/icons/hicolor/22x22/apps/kedit.png
share/icons/hicolor/22x22/apps/kfloppy.png
share/icons/hicolor/22x22/apps/kgpg.png
share/icons/hicolor/22x22/apps/kjots.png
share/icons/hicolor/22x22/apps/kregexpeditor.png
share/icons/hicolor/22x22/apps/kwalletmanager.png
share/icons/hicolor/22x22/apps/kwikdisk.png
share/icons/hicolor/32x32/apps/ark.png
share/icons/hicolor/32x32/apps/irkick.png
share/icons/hicolor/22x22/apps/superkaramba.png
share/icons/hicolor/32x32/apps/kcalc.png
share/icons/hicolor/32x32/apps/kcharselect.png
share/icons/hicolor/32x32/apps/kdf.png
share/icons/hicolor/32x32/apps/kedit.png
share/icons/hicolor/32x32/apps/kfloppy.png
share/icons/hicolor/32x32/apps/kgpg.png
share/icons/hicolor/32x32/apps/khexedit.png
share/icons/hicolor/32x32/apps/kjots.png
share/icons/hicolor/32x32/apps/kregexpeditor.png
share/icons/hicolor/32x32/apps/ktimer.png
share/icons/hicolor/32x32/apps/kwalletmanager.png
share/icons/hicolor/32x32/apps/kwalletmanager2.png
share/icons/hicolor/32x32/apps/kwikdisk.png
share/icons/hicolor/48x48/apps/ark.png
share/icons/hicolor/32x32/apps/okteta.png
share/icons/hicolor/32x32/apps/superkaramba.png
share/icons/hicolor/48x48/apps/kcalc.png
share/icons/hicolor/48x48/apps/kcharselect.png
share/icons/hicolor/48x48/apps/kdf.png
share/icons/hicolor/48x48/apps/kedit.png
share/icons/hicolor/48x48/apps/kfloppy.png
share/icons/hicolor/48x48/apps/kgpg.png
share/icons/hicolor/48x48/apps/khexedit.png
share/icons/hicolor/48x48/apps/kjots.png
share/icons/hicolor/48x48/apps/kregexpeditor.png
share/icons/hicolor/48x48/apps/ktimer.png
share/icons/hicolor/48x48/apps/kwalletmanager.png
share/icons/hicolor/48x48/apps/kwalletmanager2.png
share/icons/hicolor/48x48/apps/kwikdisk.png
share/icons/hicolor/64x64/apps/ark.png
share/icons/hicolor/48x48/apps/okteta.png
share/icons/hicolor/48x48/apps/superkaramba.png
share/icons/hicolor/64x64/apps/kcalc.png
share/icons/hicolor/64x64/apps/kdf.png
share/icons/hicolor/64x64/apps/kedit.png
share/icons/hicolor/64x64/apps/kfloppy.png
share/icons/hicolor/64x64/apps/kjots.png
share/icons/hicolor/64x64/apps/kregexpeditor.png
share/icons/hicolor/64x64/apps/kwalletmanager.png
share/icons/hicolor/64x64/apps/kwalletmanager2.png
share/icons/hicolor/64x64/apps/kwikdisk.png
share/icons/hicolor/scalable/apps/ark.svgz
share/icons/hicolor/64x64/apps/superkaramba.png
share/icons/hicolor/scalable/apps/kcalc.svgz
share/icons/locolor/16x16/apps/irkick.png
share/icons/locolor/32x32/apps/irkick.png
share/mimelnk/application/x-superkaramba.desktop
share/services/ark_part.desktop
share/services/kbyteseditwidget.desktop
share/services/khexedit2part.desktop
share/services/kregexpeditorgui.desktop
share/services/kwallet_config.desktop
share/services/kwalletmanager_show.desktop
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/superkaramba/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/superkaramba/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/knumber/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/knumber/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/knumber/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/knumber/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/kcalc/html
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdeutils-apidocs/superkaramba/html
share/icons/hicolor/scalable/apps/superkaramba.svgz
share/icons/oxygen/16x16/apps/kcmdf.png
share/icons/oxygen/22x22/apps/kcmdf.png
share/icons/oxygen/32x32/apps/kcmdf.png
share/kde4/services/ServiceMenus/encryptfile.desktop
share/kde4/services/ServiceMenus/encryptfolder.desktop
share/kde4/services/ServiceMenus/floppy_format.desktop
share/kde4/services/ark_part.desktop
share/kde4/services/kbytearrayedit.desktop
share/kde4/services/kcmdf.desktop
share/kde4/services/kerfuffle_bk.desktop
share/kde4/services/kerfuffle_libarchive.desktop
share/kde4/services/kerfuffle_libzip.desktop
share/kde4/services/kerfuffle_rar.desktop
share/kde4/services/kwalletconfig.desktop
share/kde4/services/kwalletmanager_show.desktop
share/kde4/services/oktetapart.desktop
share/kde4/services/plasma-package-superkaramba.desktop
share/kde4/services/plasma-scriptengine-superkaramba.desktop
share/kde4/servicetypes/kerfufflePlugin.desktop
@dirrmtry share/kde4/servicetypes
@dirrmtry share/kde4/services/ServiceMenus
@dirrmtry share/kde4/services
@dirrmtry share/kde4
@dirrmtry share/icons/oxygen/32x32/apps
@dirrmtry share/icons/oxygen/32x32
@dirrmtry share/icons/oxygen/22x22/apps
@dirrmtry share/icons/oxygen/22x22
@dirrmtry share/icons/oxygen/16x16/apps
@dirrmtry share/icons/oxygen/16x16
@dirrmtry share/icons/oxygen
@dirrmtry share/icons/hicolor/scalable/apps
@dirrmtry share/icons/hicolor/scalable
@dirrmtry share/icons/hicolor/64x64/apps
@dirrmtry share/icons/hicolor/64x64
@dirrmtry share/icons/hicolor/48x48/apps
@dirrmtry share/icons/hicolor/48x48
@dirrmtry share/icons/hicolor/32x32/apps
@dirrmtry share/icons/hicolor/32x32
@dirrmtry share/icons/hicolor/22x22/apps
@dirrmtry share/icons/hicolor/22x22
@dirrmtry share/icons/hicolor/16x16/apps
@dirrmtry share/icons/hicolor/16x16
@dirrmtry share/icons/hicolor/128x128/apps
@dirrmtry share/icons/hicolor/128x128
@dirrmtry share/icons/hicolor
@dirrmtry share/icons
@dirrm share/doc/HTML/en/superkaramba
@dirrm share/doc/HTML/en/okteta
@dirrm share/doc/HTML/en/kwallet
@dirrm share/doc/HTML/en/ktimer
@dirrm share/doc/HTML/en/ksim
@dirrm share/doc/HTML/en/kjots
@dirrm share/doc/HTML/en/kinfocenter/blockdevices
@dirrm share/doc/HTML/en/khexedit
@dirrm share/doc/HTML/en/kgpg
@dirrm share/doc/HTML/en/kfloppy
@dirrm share/doc/HTML/en/kedit
@dirrm share/doc/HTML/en/kdf
@dirrm share/doc/HTML/en/kdeutils-apidocs/superkaramba/html
@dirrm share/doc/HTML/en/kdeutils-apidocs/superkaramba
@dirrm share/doc/HTML/en/kdeutils-apidocs/kcalc/knumber/html
@dirrm share/doc/HTML/en/kdeutils-apidocs/kcalc/knumber
@dirrm share/doc/HTML/en/kdeutils-apidocs/kcalc/html
@dirrm share/doc/HTML/en/kdeutils-apidocs/kcalc
@dirrm share/doc/HTML/en/kdeutils-apidocs
@dirrm share/doc/HTML/en/kcontrol/powerctrl
@dirrm share/doc/HTML/en/kcontrol/laptop
@dirrm share/doc/HTML/en/kcontrol/kcmlowbatwarn
@dirrm share/doc/HTML/en/kcontrol/kcmlowbatcrit
@dirrm share/doc/HTML/en/kcmlirc
@dirrm share/doc/HTML/en/kcharselect
@dirrm share/doc/HTML/en/kcalc
@dirrm share/doc/HTML/en/irkick
@dirrm share/doc/HTML/en/ark
@dirrm share/doc/HTML/en/KRegExpEditor
@dirrmtry share/doc/HTML/en
@dirrmtry share/doc/HTML
@dirrmtry share/dbus-1/interfaces
@dirrmtry share/dbus-1
@dirrmtry share/config.kcfg
@dirrmtry share/config
@dirrmtry share/autostart
@dirrm share/apps/sweeper
@dirrm share/apps/superkaramba
@dirrm share/apps/remotes
@dirrm share/apps/kwalletmanager/icons/crystalsvg/22x22/actions
@dirrm share/apps/kwalletmanager/icons/crystalsvg/22x22
@dirrm share/apps/kwalletmanager/icons/crystalsvg
@dirrm share/apps/oktetapart
@dirrm share/apps/okteta
@dirrm share/apps/kwalletmanager/icons/oxygen/22x22/actions
@dirrm share/apps/kwalletmanager/icons/oxygen/22x22
@dirrm share/apps/kwalletmanager/icons/oxygen
@dirrm share/apps/kwalletmanager/icons
@dirrm share/apps/kwalletmanager
@dirrm share/apps/ksim/themes/ksim/net
@dirrm share/apps/ksim/themes/ksim/mail
@dirrm share/apps/ksim/themes/ksim/host
@dirrm share/apps/ksim/themes/ksim
@dirrm share/apps/ksim/themes
@dirrm share/apps/ksim/pics
@dirrm share/apps/ksim/monitors
@dirrm share/apps/ksim
@dirrm share/apps/kregexpeditor/predefined/general
@dirrm share/apps/kregexpeditor/predefined
@dirrm share/apps/kregexpeditor/pics
@dirrm share/apps/kregexpeditor
@dirrm share/apps/kjots/pics
@dirrm share/apps/kjots
@dirrm share/apps/khexedit2part
@dirrm share/apps/khexedit/pics
@dirrm share/apps/khexedit
@dirrm share/apps/kgpg/pics
@dirrm share/apps/kgpg/icons/crystalsvg/22x22/actions
@dirrm share/apps/kgpg/icons/crystalsvg/22x22
@dirrm share/apps/kgpg/icons/crystalsvg/16x16/actions
@dirrm share/apps/kgpg/icons/crystalsvg/16x16
@dirrm share/apps/kgpg/icons/crystalsvg
@dirrm share/apps/kgpg/icons/oxygen/scalable/status
@dirrm share/apps/kgpg/icons/oxygen/scalable/actions
@dirrm share/apps/kgpg/icons/oxygen/scalable
@dirrm share/apps/kgpg/icons/oxygen/48x48/status
@dirrm share/apps/kgpg/icons/oxygen/48x48/actions
@dirrm share/apps/kgpg/icons/oxygen/48x48
@dirrm share/apps/kgpg/icons/oxygen/32x32/status
@dirrm share/apps/kgpg/icons/oxygen/32x32/actions
@dirrm share/apps/kgpg/icons/oxygen/32x32
@dirrm share/apps/kgpg/icons/oxygen/22x22/status
@dirrm share/apps/kgpg/icons/oxygen/22x22/actions
@dirrm share/apps/kgpg/icons/oxygen/22x22
@dirrm share/apps/kgpg/icons/oxygen/16x16/status
@dirrm share/apps/kgpg/icons/oxygen/16x16/actions
@dirrm share/apps/kgpg/icons/oxygen/16x16
@dirrm share/apps/kgpg/icons/oxygen
@dirrm share/apps/kgpg/icons
@dirrm share/apps/kgpg
@dirrm share/apps/kedit
@dirrm share/apps/kdf/pics
@dirrm share/apps/kdf
@dirrm share/apps/kcharselect
@dirrmtry share/apps/kconf_update
@dirrmtry share/apps/kcharselect
@dirrm share/apps/kcalc
@dirrm share/apps/irkick/icons/hicolor/32x32/actions
@dirrm share/apps/irkick/icons/hicolor/32x32
@dirrm share/apps/irkick/icons/hicolor/16x16/actions
@dirrm share/apps/irkick/icons/hicolor/16x16
@dirrm share/apps/irkick/icons/hicolor
@dirrm share/apps/irkick/icons
@dirrm share/apps/irkick
@dirrm share/apps/ark/icons/crystalsvg/32x32/actions
@dirrm share/apps/ark/icons/crystalsvg/32x32
@dirrm share/apps/ark/icons/crystalsvg/22x22/actions
@dirrm share/apps/ark/icons/crystalsvg/22x22
@dirrm share/apps/ark/icons/crystalsvg
@dirrm share/apps/ark/icons
@dirrm share/apps/ark
@dirrm include/ksim
@dirrmtry share/apps
@dirrmtry share/applications/kde4
@dirrmtry share/applications
@dirrmtry lib/kde4

View File

@ -1,71 +1,57 @@
# New ports collection makefile for: KDE PIM
# Date created: 2 March 2001
# Whom: Dmitry Sivachenko <demon@FreeBSD.org>
# New ports collection Makefile for: kdepimp4
# Date created: 2008-31-05
# Whom: miwi
#
# $FreeBSD$
#
PORTNAME= kdepim
PORTVERSION= ${KDE_VERSION}
PORTREVISION= 1
CATEGORIES= deskutils mail news palm kde
PORTVERSION= ${KDE4_VERSION}
CATEGORIES= deskutils kde ipv6
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
COMMENT= Personal Information Management tools for KDE
COMMENT= Libraries for KDE-PIM applications
BUILD_DEPENDS= libassuan>=1.0.4:${PORTSDIR}/security/libassuan
LIB_DEPENDS= gpgme:${PORTSDIR}/security/gpgme \
opensync.0:${PORTSDIR}/devel/libopensync022 \
pisock:${PORTSDIR}/palm/pilot-link \
sasl2:${PORTSDIR}/security/cyrus-sasl2
sasl2:${PORTSDIR}/security/cyrus-sasl2 \
boost_python:${PORTSDIR}/devel/boost-python \
mal.1:${PORTSDIR}/palm/libmal \
pisock.9:${PORTSDIR}/palm/pilot-link
CONFLICTS= akregator-[0-9]* kdenetwork-3.1.* kdeaddons-kontact-plugins-[0-9]* kdepim-kpilot-3.2.3
USE_KDEBASE_VER=3
PREFIX= ${KDE_PREFIX}
LATEST_LINK= ${PORTNAME}4
USE_KDE4= kdelibs pimlibs kdebase akonadi kdeprefix kdehier automoc4
KDE4_BUILDENV= yes
USE_BZIP2= yes
USE_BISON= build
USE_OPENSSL= yes
USE_AUTOTOOLS= libtool:15
USE_GMAKE= yes
USE_QT_VER= 4
QT_COMPONENTS= corelib opengl moc rcc uic dbus qt3support designer network svg qtestlib
USE_OPENLDAP= yes
USE_LDCONFIG= yes
LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3
CONFIGURE_ARGS= --with-gpg=${LOCALBASE}/bin/gpg \
--with-gpgsm=${LOCALBASE}/bin/gpgsm \
--with-ssl-dir=${OPENSSLBASE}
OPTIONS= GNOKII "KAdressbook import/export for Nokia phones" off \
KITCHENSYNC "PIM synchronization utility" off
OPTIONS= GNOKII "KAdressbook import/export for Nokia phones" off
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
.include <bsd.port.pre.mk>
.if exists(${LOCALBASE}/bin/gnokii)
. if !defined(WITH_GNOKII)
GNOKII_OVERRIDE=yes
WITH_GNOKII= yes
. endif
.endif
.if defined(WITH_GNOKII)
LIB_DEPENDS+= gnokii:${PORTSDIR}/comms/gnokii
.endif # defined ($(WITH_GNOKII))
.if defined(DO_NOT_COMPILE)
CONFIGURE_ENV+=DO_NOT_COMPILE="${DO_NOT_COMPILE}"
.endif # defined(DO_NOT_COMPILE)
pre-everything::
.if defined(GNOKII_OVERRIDE)
@${ECHO_MSG}
@${ECHO_MSG} "**********************************************************"
@${ECHO_MSG} "* gnokii is installed and support has been enabled *"
@${ECHO_MSG} "* automatically (no additional files will be installed). *"
@${ECHO_MSG} "**********************************************************"
@${ECHO_MSG}
PLIST_SUB+= GNOKII=""
.else
CMAKE_ARGS+= -DWITH_GNOKII:BOOL=off
PLIST_SUB+= GNOKII="@comment "
.endif
.if defined(WITH_KITCHENSYNC)
LIB_DEPENDS+= opensync.1:${PORTSDIR}/devel/libopensync
PLIST_SUB+= KITCHENSYNC=""
.else
CMAKE_ARGS+= -DWITH_Opensync:BOOL=off
PLIST_SUB+= KITCHENSYNC="@comment "
.endif
post-extract:
${MKDIR} ${WRKSRC}
.include <bsd.port.post.mk>

View File

@ -1,3 +1,3 @@
MD5 (KDE/kdepim-3.5.8.tar.bz2) = a1ffff553f1d6739c7791891028b176b
SHA256 (KDE/kdepim-3.5.8.tar.bz2) = 433f8541af0a05e0a7e15df5ecca8463a29b6574871b941a8312b04b2233fef1
SIZE (KDE/kdepim-3.5.8.tar.bz2) = 14107449
MD5 (KDE/kdepim-4.1.0.tar.bz2) = 5ccd9ca2bf92c0f94ac3b0bf5a5a1344
SHA256 (KDE/kdepim-4.1.0.tar.bz2) = 9b9733a7893e18e30abd1dd884f9975002eb68a6caf813b2d9690498dfd0751b
SIZE (KDE/kdepim-4.1.0.tar.bz2) = 13123646

View File

@ -1,4 +1,8 @@
Personal Information Management tools for KDE.
KDE4 is the K Desktop Environment for Unix, Windows, and Mac OS X.
This rather broad scope encompasses mail clients, addressbooks, usenet news,
scheduling and even sticky notes.
These kde4 ports intend to provide early access to KDE4 for FreeBSD
developers, porters and beta testers. Use at your own risk!
This package provides PIM applications for KDE4.
WWW: http://www.kde.org/

File diff suppressed because it is too large Load Diff

View File

@ -1,71 +1,57 @@
# New ports collection makefile for: KDE PIM
# Date created: 2 March 2001
# Whom: Dmitry Sivachenko <demon@FreeBSD.org>
# New ports collection Makefile for: kdepimp4
# Date created: 2008-31-05
# Whom: miwi
#
# $FreeBSD$
#
PORTNAME= kdepim
PORTVERSION= ${KDE_VERSION}
PORTREVISION= 1
CATEGORIES= deskutils mail news palm kde
PORTVERSION= ${KDE4_VERSION}
CATEGORIES= deskutils kde ipv6
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
COMMENT= Personal Information Management tools for KDE
COMMENT= Libraries for KDE-PIM applications
BUILD_DEPENDS= libassuan>=1.0.4:${PORTSDIR}/security/libassuan
LIB_DEPENDS= gpgme:${PORTSDIR}/security/gpgme \
opensync.0:${PORTSDIR}/devel/libopensync022 \
pisock:${PORTSDIR}/palm/pilot-link \
sasl2:${PORTSDIR}/security/cyrus-sasl2
sasl2:${PORTSDIR}/security/cyrus-sasl2 \
boost_python:${PORTSDIR}/devel/boost-python \
mal.1:${PORTSDIR}/palm/libmal \
pisock.9:${PORTSDIR}/palm/pilot-link
CONFLICTS= akregator-[0-9]* kdenetwork-3.1.* kdeaddons-kontact-plugins-[0-9]* kdepim-kpilot-3.2.3
USE_KDEBASE_VER=3
PREFIX= ${KDE_PREFIX}
LATEST_LINK= ${PORTNAME}4
USE_KDE4= kdelibs pimlibs kdebase akonadi kdeprefix kdehier automoc4
KDE4_BUILDENV= yes
USE_BZIP2= yes
USE_BISON= build
USE_OPENSSL= yes
USE_AUTOTOOLS= libtool:15
USE_GMAKE= yes
USE_QT_VER= 4
QT_COMPONENTS= corelib opengl moc rcc uic dbus qt3support designer network svg qtestlib
USE_OPENLDAP= yes
USE_LDCONFIG= yes
LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3
CONFIGURE_ARGS= --with-gpg=${LOCALBASE}/bin/gpg \
--with-gpgsm=${LOCALBASE}/bin/gpgsm \
--with-ssl-dir=${OPENSSLBASE}
OPTIONS= GNOKII "KAdressbook import/export for Nokia phones" off \
KITCHENSYNC "PIM synchronization utility" off
OPTIONS= GNOKII "KAdressbook import/export for Nokia phones" off
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
.include <bsd.port.pre.mk>
.if exists(${LOCALBASE}/bin/gnokii)
. if !defined(WITH_GNOKII)
GNOKII_OVERRIDE=yes
WITH_GNOKII= yes
. endif
.endif
.if defined(WITH_GNOKII)
LIB_DEPENDS+= gnokii:${PORTSDIR}/comms/gnokii
.endif # defined ($(WITH_GNOKII))
.if defined(DO_NOT_COMPILE)
CONFIGURE_ENV+=DO_NOT_COMPILE="${DO_NOT_COMPILE}"
.endif # defined(DO_NOT_COMPILE)
pre-everything::
.if defined(GNOKII_OVERRIDE)
@${ECHO_MSG}
@${ECHO_MSG} "**********************************************************"
@${ECHO_MSG} "* gnokii is installed and support has been enabled *"
@${ECHO_MSG} "* automatically (no additional files will be installed). *"
@${ECHO_MSG} "**********************************************************"
@${ECHO_MSG}
PLIST_SUB+= GNOKII=""
.else
CMAKE_ARGS+= -DWITH_GNOKII:BOOL=off
PLIST_SUB+= GNOKII="@comment "
.endif
.if defined(WITH_KITCHENSYNC)
LIB_DEPENDS+= opensync.1:${PORTSDIR}/devel/libopensync
PLIST_SUB+= KITCHENSYNC=""
.else
CMAKE_ARGS+= -DWITH_Opensync:BOOL=off
PLIST_SUB+= KITCHENSYNC="@comment "
.endif
post-extract:
${MKDIR} ${WRKSRC}
.include <bsd.port.post.mk>

View File

@ -1,3 +1,3 @@
MD5 (KDE/kdepim-3.5.8.tar.bz2) = a1ffff553f1d6739c7791891028b176b
SHA256 (KDE/kdepim-3.5.8.tar.bz2) = 433f8541af0a05e0a7e15df5ecca8463a29b6574871b941a8312b04b2233fef1
SIZE (KDE/kdepim-3.5.8.tar.bz2) = 14107449
MD5 (KDE/kdepim-4.1.0.tar.bz2) = 5ccd9ca2bf92c0f94ac3b0bf5a5a1344
SHA256 (KDE/kdepim-4.1.0.tar.bz2) = 9b9733a7893e18e30abd1dd884f9975002eb68a6caf813b2d9690498dfd0751b
SIZE (KDE/kdepim-4.1.0.tar.bz2) = 13123646

View File

@ -1,4 +1,8 @@
Personal Information Management tools for KDE.
KDE4 is the K Desktop Environment for Unix, Windows, and Mac OS X.
This rather broad scope encompasses mail clients, addressbooks, usenet news,
scheduling and even sticky notes.
These kde4 ports intend to provide early access to KDE4 for FreeBSD
developers, porters and beta testers. Use at your own risk!
This package provides PIM applications for KDE4.
WWW: http://www.kde.org/

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,38 @@
# New ports collection Makefile for: kdepimplibs
# Date created: 2008-01-20
# Whom: arved
#
# $FreeBSD$
PORTNAME= kdepimlibs
PORTVERSION= ${KDE4_VERSION}
CATEGORIES= deskutils kde ipv6
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
COMMENT= Libraries for KDE-PIM applications
LIB_DEPENDS= gpgme:${PORTSDIR}/security/gpgme \
sasl2:${PORTSDIR}/security/cyrus-sasl2 \
boost_python:${PORTSDIR}/devel/boost-python
USE_KDE4= kdelibs akonadi kdeprefix kdehier automoc4
KDE4_BUILDENV= yes
USE_BZIP2= yes
USE_QT_VER= 4
QT_COMPONENTS= corelib opengl moc rcc uic dbus qt3support designer network svg \
qtestlib help
USE_OPENLDAP= yes
.if exists(${LOCALBASE}/lib/libgpgme-pth.so)
PLIST_SUB+= WITH_PTH=''
.else
PLIST_SUB+= WITH_PTH='@comment '
.endif
post-extract:
${MKDIR} ${WRKSRC}
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (KDE/kdepimlibs-4.1.0.tar.bz2) = b1eddf3b85a70a31f6a4385948b2a6cd
SHA256 (KDE/kdepimlibs-4.1.0.tar.bz2) = ee199112dedda6e27a47c6dd7ee250cd78e9c20241a1c4266ed991b56a0b23e6
SIZE (KDE/kdepimlibs-4.1.0.tar.bz2) = 1887196

View File

@ -0,0 +1,11 @@
This module includes libraries that are central to the development and
execution of a KDE-PIM application.
The KDE-PIM project aims to bring together those who wish to help design,
implement, test, etc. anything that's to do with personal information
management.
This rather broad scope encompasses mail clients, addressbooks, usenet news,
scheduling and even sticky notes.
WWW: http://www.kde.org/

View File

@ -0,0 +1,893 @@
include/akonadi/agentbase.h
include/akonadi/agentfilterproxymodel.h
include/akonadi/agentinstance.h
include/akonadi/agentinstancecreatejob.h
include/akonadi/agentinstancemodel.h
include/akonadi/agentinstancewidget.h
include/akonadi/agentmanager.h
include/akonadi/agenttype.h
include/akonadi/agenttypemodel.h
include/akonadi/agenttypewidget.h
include/akonadi/akonadi_export.h
include/akonadi/attribute.h
include/akonadi/attributefactory.h
include/akonadi/cachepolicy.h
include/akonadi/changerecorder.h
include/akonadi/collection.h
include/akonadi/collectioncopyjob.h
include/akonadi/collectioncreatejob.h
include/akonadi/collectiondeletejob.h
include/akonadi/collectionfetchjob.h
include/akonadi/collectionfilterproxymodel.h
include/akonadi/collectionmodel.h
include/akonadi/collectionmodifyjob.h
include/akonadi/collectionpropertiesdialog.h
include/akonadi/collectionpropertiespage.h
include/akonadi/collectionstatistics.h
include/akonadi/collectionstatisticsdelegate.h
include/akonadi/collectionstatisticsjob.h
include/akonadi/collectionstatisticsmodel.h
include/akonadi/collectionview.h
include/akonadi/control.h
include/akonadi/entity.h
include/akonadi/item.h
include/akonadi/itemcopyjob.h
include/akonadi/itemcreatejob.h
include/akonadi/itemdeletejob.h
include/akonadi/itemfetchjob.h
include/akonadi/itemfetchscope.h
include/akonadi/itemmodel.h
include/akonadi/itemmodifyjob.h
include/akonadi/itemmonitor.h
include/akonadi/itemmovejob.h
include/akonadi/itempayloadinternals_p.h
include/akonadi/itemserializerplugin.h
include/akonadi/itemsync.h
include/akonadi/itemview.h
include/akonadi/job.h
include/akonadi/kmime/akonadi-kmime_export.h
include/akonadi/kmime/messagemodel.h
include/akonadi/kmime/messageparts.h
include/akonadi/kmime/messagethreaderproxymodel.h
include/akonadi/kmime/messagethreadingattribute.h
include/akonadi/monitor.h
include/akonadi/private/collectionpathresolver_p.h
include/akonadi/resourcebase.h
include/akonadi/searchcreatejob.h
include/akonadi/session.h
include/akonadi/standardactionmanager.h
include/akonadi/transactionjobs.h
include/akonadi/transactionsequence.h
include/gpgme++/context.h
include/gpgme++/gpgadduserideditinteractor.h
include/gpgme++/data.h
include/gpgme++/decryptionresult.h
include/gpgme++/editinteractor.h
include/gpgme++/encryptionresult.h
include/gpgme++/engineinfo.h
include/gpgme++/error.h
include/gpgme++/eventloopinteractor.h
include/gpgme++/exception.h
include/gpgme++/global.h
include/gpgme++/gpgme++_export.h
include/gpgme++/gpgmefw.h
include/gpgme++/gpgsetexpirytimeeditinteractor.h
include/gpgme++/gpgsetownertrusteditinteractor.h
include/gpgme++/gpgsignkeyeditinteractor.h
include/gpgme++/importresult.h
include/gpgme++/interfaces/dataprovider.h
include/gpgme++/interfaces/passphraseprovider.h
include/gpgme++/interfaces/progressprovider.h
include/gpgme++/key.h
include/gpgme++/keygenerationresult.h
include/gpgme++/keylistresult.h
include/gpgme++/notation.h
include/gpgme++/result.h
include/gpgme++/signingresult.h
include/gpgme++/trustitem.h
include/gpgme++/verificationresult.h
include/kabc/address.h
include/kabc/addressbook.h
include/kabc/addressee.h
include/kabc/addresseedialog.h
include/kabc/addresseelist.h
include/kabc/addresslineedit.h
include/kabc/distributionlist.h
include/kabc/distributionlistdialog.h
include/kabc/emailselectdialog.h
include/kabc/errorhandler.h
include/kabc/field.h
include/kabc/format.h
include/kabc/formatfactory.h
include/kabc/geo.h
include/kabc/kabc_export.h
include/kabc/key.h
include/kabc/ldifconverter.h
include/kabc/lock.h
include/kabc/locknull.h
include/kabc/phonenumber.h
include/kabc/picture.h
include/kabc/plugin.h
include/kabc/resource.h
include/kabc/resourceabc.h
include/kabc/resourcecached.h
include/kabc/secrecy.h
include/kabc/sortmode.h
include/kabc/sound.h
include/kabc/stdaddressbook.h
include/kabc/timezone.h
include/kabc/vcard.h
include/kabc/vcardconverter.h
include/kabc/vcardformat.h
include/kabc/vcardline.h
include/kabc/vcardparser.h
include/kblog/blog.h
include/kblog/blogcomment.h
include/kblog/blogger1.h
include/kblog/blogmedia.h
include/kblog/blogpost.h
include/kblog/gdata.h
include/kblog/kblog_export.h
include/kblog/metaweblog.h
include/kblog/movabletype.h
include/kblog/wordpressbuggy.h
include/kcal/alarm.h
include/kcal/attachment.h
include/kcal/attendee.h
include/kcal/calendar.h
include/kcal/calendarlocal.h
include/kcal/calendarnull.h
include/kcal/calendarresources.h
include/kcal/calfilter.h
include/kcal/calformat.h
include/kcal/calstorage.h
include/kcal/confirmsavedialog.h
include/kcal/customproperties.h
include/kcal/dndfactory.h
include/kcal/duration.h
include/kcal/event.h
include/kcal/exceptions.h
include/kcal/filestorage.h
include/kcal/freebusy.h
include/kcal/freebusycache.h
include/kcal/freebusyperiod.h
include/kcal/freebusyurlstore.h
include/kcal/htmlexport.h
include/kcal/htmlexportsettings.h
include/kcal/icaldrag.h
include/kcal/icalformat.h
include/kcal/icaltimezones.h
include/kcal/imipscheduler.h
include/kcal/incidence.h
include/kcal/incidencebase.h
include/kcal/incidenceformatter.h
include/kcal/journal.h
include/kcal/kcal_export.h
include/kcal/kcalversion.h
include/kcal/kresult.h
include/kcal/listbase.h
include/kcal/period.h
include/kcal/person.h
include/kcal/qtopiaformat.h
include/kcal/recurrence.h
include/kcal/recurrencerule.h
include/kcal/resourcecached.h
include/kcal/resourcecachedconfig.h
include/kcal/resourcecalendar.h
include/kcal/resourcelocal.h
include/kcal/resourcelocalconfig.h
include/kcal/resourcelocaldir.h
include/kcal/resourcelocaldirconfig.h
include/kcal/scheduler.h
include/kcal/sortablelist.h
include/kcal/todo.h
include/kcal/vcaldrag.h
include/kcal/vcalformat.h
include/kimap/kimap_export.h
include/kimap/rfccodecs.h
include/kldap/ber.h
include/kldap/kldap_export.h
include/kldap/ldapattributeproxymodel.h
include/kldap/ldapconfigwidget.h
include/kldap/ldapconnection.h
include/kldap/ldapcontrol.h
include/kldap/ldapdefs.h
include/kldap/ldapdn.h
include/kldap/ldapmodel.h
include/kldap/ldapobject.h
include/kldap/ldapoperation.h
include/kldap/ldapsearch.h
include/kldap/ldapserver.h
include/kldap/ldapstructureproxymodel.h
include/kldap/ldapurl.h
include/kldap/ldif.h
include/kmime/boolflags.h
include/kmime/kmime_charfreq.h
include/kmime/kmime_codecs.h
include/kmime/kmime_content.h
include/kmime/kmime_contentindex.h
include/kmime/kmime_dateformatter.h
include/kmime/kmime_export.h
include/kmime/kmime_header_parsing.h
include/kmime/kmime_headers.h
include/kmime/kmime_mdn.h
include/kmime/kmime_message.h
include/kmime/kmime_newsarticle.h
include/kmime/kmime_util.h
include/kpimidentities/identity.h
include/kpimidentities/identitycombo.h
include/kpimidentities/identitymanager.h
include/kpimidentities/kpimidentities_export.h
include/kpimidentities/signature.h
include/kpimidentities/signatureconfigurator.h
include/kpimutils/email.h
include/kpimutils/kfileio.h
include/kpimutils/kpimutils_export.h
include/kpimutils/linklocator.h
include/kpimutils/spellingfilter.h
include/kresources/configdialog.h
include/kresources/configpage.h
include/kresources/configwidget.h
include/kresources/factory.h
include/kresources/idmapper.h
include/kresources/kresources_export.h
include/kresources/manager.h
include/kresources/managerimpl.h
include/kresources/resource.h
include/kresources/selectdialog.h
include/ktnef/formatter.h
include/ktnef/ktnef_export.h
include/ktnef/ktnefattach.h
include/ktnef/ktnefdefs.h
include/ktnef/ktnefmessage.h
include/ktnef/ktnefparser.h
include/ktnef/ktnefproperty.h
include/ktnef/ktnefpropertyset.h
include/ktnef/ktnefwriter.h
include/kxmlrpcclient/client.h
include/kxmlrpcclient/kxmlrpcclient_export.h
include/mailtransport/mailtransport_export.h
include/mailtransport/sendmailjob.h
include/mailtransport/servertest.h
include/mailtransport/smtpjob.h
include/mailtransport/transport.h
include/mailtransport/transportbase.h
include/mailtransport/transportcombobox.h
include/mailtransport/transportconfigdialog.h
include/mailtransport/transportjob.h
include/mailtransport/transportmanagementwidget.h
include/mailtransport/transportmanager.h
include/qgpgme/dataprovider.h
include/qgpgme/eventloopinteractor.h
include/qgpgme/qgpgme_export.h
include/syndication/abstractparser.h
include/syndication/atom/atom.h
include/syndication/atom/category.h
include/syndication/atom/constants.h
include/syndication/atom/content.h
include/syndication/atom/document.h
include/syndication/atom/entry.h
include/syndication/atom/generator.h
include/syndication/atom/link.h
include/syndication/atom/parser.h
include/syndication/atom/person.h
include/syndication/atom/source.h
include/syndication/category.h
include/syndication/constants.h
include/syndication/dataretriever.h
include/syndication/documentsource.h
include/syndication/documentvisitor.h
include/syndication/elementwrapper.h
include/syndication/enclosure.h
include/syndication/feed.h
include/syndication/global.h
include/syndication/image.h
include/syndication/item.h
include/syndication/ksyndication_export.h
include/syndication/loader.h
include/syndication/mapper.h
include/syndication/parsercollection.h
include/syndication/person.h
include/syndication/rdf/contentvocab.h
include/syndication/rdf/document.h
include/syndication/rdf/dublincore.h
include/syndication/rdf/dublincorevocab.h
include/syndication/rdf/image.h
include/syndication/rdf/item.h
include/syndication/rdf/literal.h
include/syndication/rdf/model.h
include/syndication/rdf/modelmaker.h
include/syndication/rdf/node.h
include/syndication/rdf/nodevisitor.h
include/syndication/rdf/parser.h
include/syndication/rdf/property.h
include/syndication/rdf/rdf.h
include/syndication/rdf/rdfvocab.h
include/syndication/rdf/resource.h
include/syndication/rdf/resourcewrapper.h
include/syndication/rdf/rssvocab.h
include/syndication/rdf/sequence.h
include/syndication/rdf/statement.h
include/syndication/rdf/syndicationinfo.h
include/syndication/rdf/syndicationvocab.h
include/syndication/rdf/textinput.h
include/syndication/rss2/category.h
include/syndication/rss2/cloud.h
include/syndication/rss2/document.h
include/syndication/rss2/enclosure.h
include/syndication/rss2/image.h
include/syndication/rss2/item.h
include/syndication/rss2/parser.h
include/syndication/rss2/rss2.h
include/syndication/rss2/source.h
include/syndication/rss2/textinput.h
include/syndication/specificdocument.h
include/syndication/specificitem.h
include/syndication/specificitemvisitor.h
include/syndication/syndication.h
include/syndication/tools.h
lib/gpgmepp/GpgmeppConfig.cmake
lib/gpgmepp/GpgmeppLibraryDepends.cmake
lib/kde4/kabc_directory.so
lib/kde4/kabc_file.so
lib/kde4/kabc_ldapkio.so
lib/kde4/kabc_net.so
lib/kde4/kabcformat_binary.so
lib/kde4/kcal_local.so
lib/kde4/kcal_localdir.so
lib/kde4/kcm_kresources.so
lib/kde4/kcm_mailtransport.so
lib/kde4/kio_imap4.so
lib/kde4/kio_ldap.so
lib/kde4/kio_mbox.so
lib/kde4/kio_nntp.so
lib/kde4/kio_pop3.so
lib/kde4/kio_sieve.so
lib/kde4/kio_smtp.so
lib/libakonadi-kde.so
lib/libakonadi-kde.so.5
lib/libakonadi-kde.so.5.0.0
lib/libakonadi-kmime.so
lib/libakonadi-kmime.so.5
lib/libakonadi-kmime.so.5.0.0
lib/libgpgme++-pthread.so
lib/libgpgme++-pthread.so.2
lib/libgpgme++-pthread.so.2.0.0
lib/libgpgme++.so
lib/libgpgme++.so.2
lib/libgpgme++.so.2.0.0
lib/libkabc.so
lib/libkabc.so.5
lib/libkabc.so.5.0.0
lib/libkabc_file_core.so
lib/libkabc_file_core.so.5
lib/libkabc_file_core.so.5.0.0
lib/libkblog.so
lib/libkblog.so.5
lib/libkblog.so.5.0.0
lib/libkcal.so
lib/libkcal.so.5
lib/libkcal.so.5.0.0
lib/libkimap.so
lib/libkimap.so.5
lib/libkimap.so.5.0.0
lib/libkldap.so
lib/libkldap.so.5
lib/libkldap.so.5.0.0
lib/libkmime.so
lib/libkmime.so.5
lib/libkmime.so.5.0.0
lib/libkpimidentities.so
lib/libkpimidentities.so.5
lib/libkpimidentities.so.5.0.0
lib/libkpimutils.so
lib/libkpimutils.so.5
lib/libkpimutils.so.5.0.0
lib/libkresources.so
lib/libkresources.so.5
lib/libkresources.so.5.0.0
lib/libktnef.so
lib/libktnef.so.5
lib/libktnef.so.5.0.0
lib/libkxmlrpcclient.so
lib/libkxmlrpcclient.so.5
lib/libkxmlrpcclient.so.5.0.0
lib/libmailtransport.so
lib/libmailtransport.so.5
lib/libmailtransport.so.5.0.0
lib/libqgpgme.so
lib/libqgpgme.so.1
lib/libqgpgme.so.1.0.1
lib/libsyndication.so
lib/libsyndication.so.5
lib/libsyndication.so.5.0.0
share/apps/akonadi-kde/kcfg2dbus.xsl
share/apps/cmake/modules/CheckTimezone.cmake
share/apps/cmake/modules/FindAkonadi.cmake
share/apps/cmake/modules/FindGpgme.cmake
share/apps/cmake/modules/FindLdap.cmake
share/apps/cmake/modules/FindLibical.cmake
share/apps/cmake/modules/FindQGpgme.cmake
share/apps/cmake/modules/KDEPimLibsDependencies.cmake
share/apps/kabc/countrytransl.map
share/apps/kabc/formats/binary.desktop
share/apps/kconf_update/mailtransports.upd
share/apps/kconf_update/migrate-transports.pl
share/apps/libical/zoneinfo/Africa/Abidjan.ics
share/apps/libical/zoneinfo/Africa/Accra.ics
share/apps/libical/zoneinfo/Africa/Addis_Ababa.ics
share/apps/libical/zoneinfo/Africa/Algiers.ics
share/apps/libical/zoneinfo/Africa/Asmara.ics
share/apps/libical/zoneinfo/Africa/Bamako.ics
share/apps/libical/zoneinfo/Africa/Bangui.ics
share/apps/libical/zoneinfo/Africa/Banjul.ics
share/apps/libical/zoneinfo/Africa/Bissau.ics
share/apps/libical/zoneinfo/Africa/Blantyre.ics
share/apps/libical/zoneinfo/Africa/Brazzaville.ics
share/apps/libical/zoneinfo/Africa/Bujumbura.ics
share/apps/libical/zoneinfo/Africa/Cairo.ics
share/apps/libical/zoneinfo/Africa/Casablanca.ics
share/apps/libical/zoneinfo/Africa/Ceuta.ics
share/apps/libical/zoneinfo/Africa/Conakry.ics
share/apps/libical/zoneinfo/Africa/Dakar.ics
share/apps/libical/zoneinfo/Africa/Dar_es_Salaam.ics
share/apps/libical/zoneinfo/Africa/Djibouti.ics
share/apps/libical/zoneinfo/Africa/Douala.ics
share/apps/libical/zoneinfo/Africa/El_Aaiun.ics
share/apps/libical/zoneinfo/Africa/Freetown.ics
share/apps/libical/zoneinfo/Africa/Gaborone.ics
share/apps/libical/zoneinfo/Africa/Harare.ics
share/apps/libical/zoneinfo/Africa/Johannesburg.ics
share/apps/libical/zoneinfo/Africa/Kampala.ics
share/apps/libical/zoneinfo/Africa/Khartoum.ics
share/apps/libical/zoneinfo/Africa/Kigali.ics
share/apps/libical/zoneinfo/Africa/Kinshasa.ics
share/apps/libical/zoneinfo/Africa/Lagos.ics
share/apps/libical/zoneinfo/Africa/Libreville.ics
share/apps/libical/zoneinfo/Africa/Lome.ics
share/apps/libical/zoneinfo/Africa/Luanda.ics
share/apps/libical/zoneinfo/Africa/Lubumbashi.ics
share/apps/libical/zoneinfo/Africa/Lusaka.ics
share/apps/libical/zoneinfo/Africa/Malabo.ics
share/apps/libical/zoneinfo/Africa/Maputo.ics
share/apps/libical/zoneinfo/Africa/Maseru.ics
share/apps/libical/zoneinfo/Africa/Mbabane.ics
share/apps/libical/zoneinfo/Africa/Mogadishu.ics
share/apps/libical/zoneinfo/Africa/Monrovia.ics
share/apps/libical/zoneinfo/Africa/Nairobi.ics
share/apps/libical/zoneinfo/Africa/Ndjamena.ics
share/apps/libical/zoneinfo/Africa/Niamey.ics
share/apps/libical/zoneinfo/Africa/Nouakchott.ics
share/apps/libical/zoneinfo/Africa/Ouagadougou.ics
share/apps/libical/zoneinfo/Africa/Porto-Novo.ics
share/apps/libical/zoneinfo/Africa/Sao_Tome.ics
share/apps/libical/zoneinfo/Africa/Tripoli.ics
share/apps/libical/zoneinfo/Africa/Tunis.ics
share/apps/libical/zoneinfo/Africa/Windhoek.ics
share/apps/libical/zoneinfo/America/Adak.ics
share/apps/libical/zoneinfo/America/Anchorage.ics
share/apps/libical/zoneinfo/America/Anguilla.ics
share/apps/libical/zoneinfo/America/Antigua.ics
share/apps/libical/zoneinfo/America/Araguaina.ics
share/apps/libical/zoneinfo/America/Argentina/Buenos_Aires.ics
share/apps/libical/zoneinfo/America/Argentina/Catamarca.ics
share/apps/libical/zoneinfo/America/Argentina/Cordoba.ics
share/apps/libical/zoneinfo/America/Argentina/Jujuy.ics
share/apps/libical/zoneinfo/America/Argentina/La_Rioja.ics
share/apps/libical/zoneinfo/America/Argentina/Mendoza.ics
share/apps/libical/zoneinfo/America/Argentina/Rio_Gallegos.ics
share/apps/libical/zoneinfo/America/Argentina/San_Juan.ics
share/apps/libical/zoneinfo/America/Argentina/San_Luis.ics
share/apps/libical/zoneinfo/America/Argentina/Tucuman.ics
share/apps/libical/zoneinfo/America/Argentina/Ushuaia.ics
share/apps/libical/zoneinfo/America/Aruba.ics
share/apps/libical/zoneinfo/America/Asuncion.ics
share/apps/libical/zoneinfo/America/Atikokan.ics
share/apps/libical/zoneinfo/America/Bahia.ics
share/apps/libical/zoneinfo/America/Barbados.ics
share/apps/libical/zoneinfo/America/Belem.ics
share/apps/libical/zoneinfo/America/Belize.ics
share/apps/libical/zoneinfo/America/Blanc-Sablon.ics
share/apps/libical/zoneinfo/America/Boa_Vista.ics
share/apps/libical/zoneinfo/America/Bogota.ics
share/apps/libical/zoneinfo/America/Boise.ics
share/apps/libical/zoneinfo/America/Cambridge_Bay.ics
share/apps/libical/zoneinfo/America/Campo_Grande.ics
share/apps/libical/zoneinfo/America/Cancun.ics
share/apps/libical/zoneinfo/America/Caracas.ics
share/apps/libical/zoneinfo/America/Cayenne.ics
share/apps/libical/zoneinfo/America/Cayman.ics
share/apps/libical/zoneinfo/America/Chicago.ics
share/apps/libical/zoneinfo/America/Chihuahua.ics
share/apps/libical/zoneinfo/America/Costa_Rica.ics
share/apps/libical/zoneinfo/America/Cuiaba.ics
share/apps/libical/zoneinfo/America/Curacao.ics
share/apps/libical/zoneinfo/America/Danmarkshavn.ics
share/apps/libical/zoneinfo/America/Dawson.ics
share/apps/libical/zoneinfo/America/Dawson_Creek.ics
share/apps/libical/zoneinfo/America/Denver.ics
share/apps/libical/zoneinfo/America/Detroit.ics
share/apps/libical/zoneinfo/America/Dominica.ics
share/apps/libical/zoneinfo/America/Edmonton.ics
share/apps/libical/zoneinfo/America/Eirunepe.ics
share/apps/libical/zoneinfo/America/El_Salvador.ics
share/apps/libical/zoneinfo/America/Fortaleza.ics
share/apps/libical/zoneinfo/America/Glace_Bay.ics
share/apps/libical/zoneinfo/America/Godthab.ics
share/apps/libical/zoneinfo/America/Goose_Bay.ics
share/apps/libical/zoneinfo/America/Grand_Turk.ics
share/apps/libical/zoneinfo/America/Grenada.ics
share/apps/libical/zoneinfo/America/Guadeloupe.ics
share/apps/libical/zoneinfo/America/Guatemala.ics
share/apps/libical/zoneinfo/America/Guayaquil.ics
share/apps/libical/zoneinfo/America/Guyana.ics
share/apps/libical/zoneinfo/America/Halifax.ics
share/apps/libical/zoneinfo/America/Havana.ics
share/apps/libical/zoneinfo/America/Hermosillo.ics
share/apps/libical/zoneinfo/America/Indiana/Indianapolis.ics
share/apps/libical/zoneinfo/America/Indiana/Knox.ics
share/apps/libical/zoneinfo/America/Indiana/Marengo.ics
share/apps/libical/zoneinfo/America/Indiana/Petersburg.ics
share/apps/libical/zoneinfo/America/Indiana/Tell_City.ics
share/apps/libical/zoneinfo/America/Indiana/Vevay.ics
share/apps/libical/zoneinfo/America/Indiana/Vincennes.ics
share/apps/libical/zoneinfo/America/Indiana/Winamac.ics
share/apps/libical/zoneinfo/America/Inuvik.ics
share/apps/libical/zoneinfo/America/Iqaluit.ics
share/apps/libical/zoneinfo/America/Jamaica.ics
share/apps/libical/zoneinfo/America/Juneau.ics
share/apps/libical/zoneinfo/America/Kentucky/Louisville.ics
share/apps/libical/zoneinfo/America/Kentucky/Monticello.ics
share/apps/libical/zoneinfo/America/La_Paz.ics
share/apps/libical/zoneinfo/America/Lima.ics
share/apps/libical/zoneinfo/America/Los_Angeles.ics
share/apps/libical/zoneinfo/America/Maceio.ics
share/apps/libical/zoneinfo/America/Managua.ics
share/apps/libical/zoneinfo/America/Manaus.ics
share/apps/libical/zoneinfo/America/Marigot.ics
share/apps/libical/zoneinfo/America/Martinique.ics
share/apps/libical/zoneinfo/America/Mazatlan.ics
share/apps/libical/zoneinfo/America/Menominee.ics
share/apps/libical/zoneinfo/America/Merida.ics
share/apps/libical/zoneinfo/America/Mexico_City.ics
share/apps/libical/zoneinfo/America/Miquelon.ics
share/apps/libical/zoneinfo/America/Moncton.ics
share/apps/libical/zoneinfo/America/Monterrey.ics
share/apps/libical/zoneinfo/America/Montevideo.ics
share/apps/libical/zoneinfo/America/Montreal.ics
share/apps/libical/zoneinfo/America/Montserrat.ics
share/apps/libical/zoneinfo/America/Nassau.ics
share/apps/libical/zoneinfo/America/New_York.ics
share/apps/libical/zoneinfo/America/Nipigon.ics
share/apps/libical/zoneinfo/America/Nome.ics
share/apps/libical/zoneinfo/America/Noronha.ics
share/apps/libical/zoneinfo/America/Panama.ics
share/apps/libical/zoneinfo/America/Pangnirtung.ics
share/apps/libical/zoneinfo/America/Paramaribo.ics
share/apps/libical/zoneinfo/America/Phoenix.ics
share/apps/libical/zoneinfo/America/Port-au-Prince.ics
share/apps/libical/zoneinfo/America/Port_of_Spain.ics
share/apps/libical/zoneinfo/America/Porto_Velho.ics
share/apps/libical/zoneinfo/America/Puerto_Rico.ics
share/apps/libical/zoneinfo/America/Rainy_River.ics
share/apps/libical/zoneinfo/America/Rankin_Inlet.ics
share/apps/libical/zoneinfo/America/Recife.ics
share/apps/libical/zoneinfo/America/Regina.ics
share/apps/libical/zoneinfo/America/Resolute.ics
share/apps/libical/zoneinfo/America/Rio_Branco.ics
share/apps/libical/zoneinfo/America/Santiago.ics
share/apps/libical/zoneinfo/America/Santo_Domingo.ics
share/apps/libical/zoneinfo/America/Sao_Paulo.ics
share/apps/libical/zoneinfo/America/Scoresbysund.ics
share/apps/libical/zoneinfo/America/Shiprock.ics
share/apps/libical/zoneinfo/America/St_Barthelemy.ics
share/apps/libical/zoneinfo/America/St_Johns.ics
share/apps/libical/zoneinfo/America/St_Kitts.ics
share/apps/libical/zoneinfo/America/St_Lucia.ics
share/apps/libical/zoneinfo/America/St_Thomas.ics
share/apps/libical/zoneinfo/America/St_Vincent.ics
share/apps/libical/zoneinfo/America/Swift_Current.ics
share/apps/libical/zoneinfo/America/Tegucigalpa.ics
share/apps/libical/zoneinfo/America/Thule.ics
share/apps/libical/zoneinfo/America/Thunder_Bay.ics
share/apps/libical/zoneinfo/America/Tijuana.ics
share/apps/libical/zoneinfo/America/Toronto.ics
share/apps/libical/zoneinfo/America/Tortola.ics
share/apps/libical/zoneinfo/America/Vancouver.ics
share/apps/libical/zoneinfo/America/Whitehorse.ics
share/apps/libical/zoneinfo/America/Winnipeg.ics
share/apps/libical/zoneinfo/America/Yakutat.ics
share/apps/libical/zoneinfo/America/Yellowknife.ics
share/apps/libical/zoneinfo/Antarctica/Casey.ics
share/apps/libical/zoneinfo/Antarctica/Davis.ics
share/apps/libical/zoneinfo/Antarctica/DumontDUrville.ics
share/apps/libical/zoneinfo/Antarctica/Mawson.ics
share/apps/libical/zoneinfo/Antarctica/McMurdo.ics
share/apps/libical/zoneinfo/Antarctica/Palmer.ics
share/apps/libical/zoneinfo/Antarctica/Rothera.ics
share/apps/libical/zoneinfo/Antarctica/South_Pole.ics
share/apps/libical/zoneinfo/Antarctica/Syowa.ics
share/apps/libical/zoneinfo/Antarctica/Vostok.ics
share/apps/libical/zoneinfo/Arctic/Longyearbyen.ics
share/apps/libical/zoneinfo/Asia/Aden.ics
share/apps/libical/zoneinfo/Asia/Almaty.ics
share/apps/libical/zoneinfo/Asia/Amman.ics
share/apps/libical/zoneinfo/Asia/Anadyr.ics
share/apps/libical/zoneinfo/Asia/Aqtau.ics
share/apps/libical/zoneinfo/Asia/Aqtobe.ics
share/apps/libical/zoneinfo/Asia/Ashgabat.ics
share/apps/libical/zoneinfo/Asia/Baghdad.ics
share/apps/libical/zoneinfo/Asia/Bahrain.ics
share/apps/libical/zoneinfo/Asia/Baku.ics
share/apps/libical/zoneinfo/Asia/Bangkok.ics
share/apps/libical/zoneinfo/Asia/Beirut.ics
share/apps/libical/zoneinfo/Asia/Bishkek.ics
share/apps/libical/zoneinfo/Asia/Brunei.ics
share/apps/libical/zoneinfo/Asia/Calcutta.ics
share/apps/libical/zoneinfo/Asia/Choibalsan.ics
share/apps/libical/zoneinfo/Asia/Chongqing.ics
share/apps/libical/zoneinfo/Asia/Colombo.ics
share/apps/libical/zoneinfo/Asia/Damascus.ics
share/apps/libical/zoneinfo/Asia/Dhaka.ics
share/apps/libical/zoneinfo/Asia/Dili.ics
share/apps/libical/zoneinfo/Asia/Dubai.ics
share/apps/libical/zoneinfo/Asia/Dushanbe.ics
share/apps/libical/zoneinfo/Asia/Gaza.ics
share/apps/libical/zoneinfo/Asia/Harbin.ics
share/apps/libical/zoneinfo/Asia/Ho_Chi_Minh.ics
share/apps/libical/zoneinfo/Asia/Hong_Kong.ics
share/apps/libical/zoneinfo/Asia/Hovd.ics
share/apps/libical/zoneinfo/Asia/Irkutsk.ics
share/apps/libical/zoneinfo/Asia/Istanbul.ics
share/apps/libical/zoneinfo/Asia/Jakarta.ics
share/apps/libical/zoneinfo/Asia/Jayapura.ics
share/apps/libical/zoneinfo/Asia/Jerusalem.ics
share/apps/libical/zoneinfo/Asia/Kabul.ics
share/apps/libical/zoneinfo/Asia/Kamchatka.ics
share/apps/libical/zoneinfo/Asia/Karachi.ics
share/apps/libical/zoneinfo/Asia/Kashgar.ics
share/apps/libical/zoneinfo/Asia/Katmandu.ics
share/apps/libical/zoneinfo/Asia/Kolkata.ics
share/apps/libical/zoneinfo/Asia/Krasnoyarsk.ics
share/apps/libical/zoneinfo/Asia/Kuala_Lumpur.ics
share/apps/libical/zoneinfo/Asia/Kuching.ics
share/apps/libical/zoneinfo/Asia/Kuwait.ics
share/apps/libical/zoneinfo/Asia/Macau.ics
share/apps/libical/zoneinfo/Asia/Magadan.ics
share/apps/libical/zoneinfo/Asia/Makassar.ics
share/apps/libical/zoneinfo/Asia/Manila.ics
share/apps/libical/zoneinfo/Asia/Muscat.ics
share/apps/libical/zoneinfo/Asia/Nicosia.ics
share/apps/libical/zoneinfo/Asia/Novosibirsk.ics
share/apps/libical/zoneinfo/Asia/Omsk.ics
share/apps/libical/zoneinfo/Asia/Oral.ics
share/apps/libical/zoneinfo/Asia/Phnom_Penh.ics
share/apps/libical/zoneinfo/Asia/Pontianak.ics
share/apps/libical/zoneinfo/Asia/Pyongyang.ics
share/apps/libical/zoneinfo/Asia/Qatar.ics
share/apps/libical/zoneinfo/Asia/Qyzylorda.ics
share/apps/libical/zoneinfo/Asia/Rangoon.ics
share/apps/libical/zoneinfo/Asia/Riyadh.ics
share/apps/libical/zoneinfo/Asia/Saigon.ics
share/apps/libical/zoneinfo/Asia/Sakhalin.ics
share/apps/libical/zoneinfo/Asia/Samarkand.ics
share/apps/libical/zoneinfo/Asia/Seoul.ics
share/apps/libical/zoneinfo/Asia/Shanghai.ics
share/apps/libical/zoneinfo/Asia/Singapore.ics
share/apps/libical/zoneinfo/Asia/Taipei.ics
share/apps/libical/zoneinfo/Asia/Tashkent.ics
share/apps/libical/zoneinfo/Asia/Tbilisi.ics
share/apps/libical/zoneinfo/Asia/Tehran.ics
share/apps/libical/zoneinfo/Asia/Thimphu.ics
share/apps/libical/zoneinfo/Asia/Tokyo.ics
share/apps/libical/zoneinfo/Asia/Ulaanbaatar.ics
share/apps/libical/zoneinfo/Asia/Urumqi.ics
share/apps/libical/zoneinfo/Asia/Vientiane.ics
share/apps/libical/zoneinfo/Asia/Vladivostok.ics
share/apps/libical/zoneinfo/Asia/Yakutsk.ics
share/apps/libical/zoneinfo/Asia/Yekaterinburg.ics
share/apps/libical/zoneinfo/Asia/Yerevan.ics
share/apps/libical/zoneinfo/Atlantic/Azores.ics
share/apps/libical/zoneinfo/Atlantic/Bermuda.ics
share/apps/libical/zoneinfo/Atlantic/Canary.ics
share/apps/libical/zoneinfo/Atlantic/Cape_Verde.ics
share/apps/libical/zoneinfo/Atlantic/Faroe.ics
share/apps/libical/zoneinfo/Atlantic/Jan_Mayen.ics
share/apps/libical/zoneinfo/Atlantic/Madeira.ics
share/apps/libical/zoneinfo/Atlantic/Reykjavik.ics
share/apps/libical/zoneinfo/Atlantic/South_Georgia.ics
share/apps/libical/zoneinfo/Atlantic/St_Helena.ics
share/apps/libical/zoneinfo/Atlantic/Stanley.ics
share/apps/libical/zoneinfo/Australia/Adelaide.ics
share/apps/libical/zoneinfo/Australia/Brisbane.ics
share/apps/libical/zoneinfo/Australia/Broken_Hill.ics
share/apps/libical/zoneinfo/Australia/Currie.ics
share/apps/libical/zoneinfo/Australia/Darwin.ics
share/apps/libical/zoneinfo/Australia/Eucla.ics
share/apps/libical/zoneinfo/Australia/Hobart.ics
share/apps/libical/zoneinfo/Australia/Lindeman.ics
share/apps/libical/zoneinfo/Australia/Lord_Howe.ics
share/apps/libical/zoneinfo/Australia/Melbourne.ics
share/apps/libical/zoneinfo/Australia/Perth.ics
share/apps/libical/zoneinfo/Australia/Sydney.ics
share/apps/libical/zoneinfo/Europe/Amsterdam.ics
share/apps/libical/zoneinfo/Europe/Andorra.ics
share/apps/libical/zoneinfo/Europe/Athens.ics
share/apps/libical/zoneinfo/Europe/Belgrade.ics
share/apps/libical/zoneinfo/Europe/Berlin.ics
share/apps/libical/zoneinfo/Europe/Bratislava.ics
share/apps/libical/zoneinfo/Europe/Brussels.ics
share/apps/libical/zoneinfo/Europe/Bucharest.ics
share/apps/libical/zoneinfo/Europe/Budapest.ics
share/apps/libical/zoneinfo/Europe/Chisinau.ics
share/apps/libical/zoneinfo/Europe/Copenhagen.ics
share/apps/libical/zoneinfo/Europe/Dublin.ics
share/apps/libical/zoneinfo/Europe/Gibraltar.ics
share/apps/libical/zoneinfo/Europe/Guernsey.ics
share/apps/libical/zoneinfo/Europe/Helsinki.ics
share/apps/libical/zoneinfo/Europe/Isle_of_Man.ics
share/apps/libical/zoneinfo/Europe/Istanbul.ics
share/apps/libical/zoneinfo/Europe/Jersey.ics
share/apps/libical/zoneinfo/Europe/Kaliningrad.ics
share/apps/libical/zoneinfo/Europe/Kiev.ics
share/apps/libical/zoneinfo/Europe/Lisbon.ics
share/apps/libical/zoneinfo/Europe/Ljubljana.ics
share/apps/libical/zoneinfo/Europe/London.ics
share/apps/libical/zoneinfo/Europe/Luxembourg.ics
share/apps/libical/zoneinfo/Europe/Madrid.ics
share/apps/libical/zoneinfo/Europe/Malta.ics
share/apps/libical/zoneinfo/Europe/Mariehamn.ics
share/apps/libical/zoneinfo/Europe/Minsk.ics
share/apps/libical/zoneinfo/Europe/Monaco.ics
share/apps/libical/zoneinfo/Europe/Moscow.ics
share/apps/libical/zoneinfo/Europe/Nicosia.ics
share/apps/libical/zoneinfo/Europe/Oslo.ics
share/apps/libical/zoneinfo/Europe/Paris.ics
share/apps/libical/zoneinfo/Europe/Podgorica.ics
share/apps/libical/zoneinfo/Europe/Prague.ics
share/apps/libical/zoneinfo/Europe/Riga.ics
share/apps/libical/zoneinfo/Europe/Rome.ics
share/apps/libical/zoneinfo/Europe/Samara.ics
share/apps/libical/zoneinfo/Europe/San_Marino.ics
share/apps/libical/zoneinfo/Europe/Sarajevo.ics
share/apps/libical/zoneinfo/Europe/Simferopol.ics
share/apps/libical/zoneinfo/Europe/Skopje.ics
share/apps/libical/zoneinfo/Europe/Sofia.ics
share/apps/libical/zoneinfo/Europe/Stockholm.ics
share/apps/libical/zoneinfo/Europe/Tallinn.ics
share/apps/libical/zoneinfo/Europe/Tirane.ics
share/apps/libical/zoneinfo/Europe/Uzhgorod.ics
share/apps/libical/zoneinfo/Europe/Vaduz.ics
share/apps/libical/zoneinfo/Europe/Vatican.ics
share/apps/libical/zoneinfo/Europe/Vienna.ics
share/apps/libical/zoneinfo/Europe/Vilnius.ics
share/apps/libical/zoneinfo/Europe/Volgograd.ics
share/apps/libical/zoneinfo/Europe/Warsaw.ics
share/apps/libical/zoneinfo/Europe/Zagreb.ics
share/apps/libical/zoneinfo/Europe/Zaporozhye.ics
share/apps/libical/zoneinfo/Europe/Zurich.ics
share/apps/libical/zoneinfo/Indian/Antananarivo.ics
share/apps/libical/zoneinfo/Indian/Chagos.ics
share/apps/libical/zoneinfo/Indian/Christmas.ics
share/apps/libical/zoneinfo/Indian/Cocos.ics
share/apps/libical/zoneinfo/Indian/Comoro.ics
share/apps/libical/zoneinfo/Indian/Kerguelen.ics
share/apps/libical/zoneinfo/Indian/Mahe.ics
share/apps/libical/zoneinfo/Indian/Maldives.ics
share/apps/libical/zoneinfo/Indian/Mauritius.ics
share/apps/libical/zoneinfo/Indian/Mayotte.ics
share/apps/libical/zoneinfo/Indian/Reunion.ics
share/apps/libical/zoneinfo/Pacific/Apia.ics
share/apps/libical/zoneinfo/Pacific/Auckland.ics
share/apps/libical/zoneinfo/Pacific/Chatham.ics
share/apps/libical/zoneinfo/Pacific/Easter.ics
share/apps/libical/zoneinfo/Pacific/Efate.ics
share/apps/libical/zoneinfo/Pacific/Enderbury.ics
share/apps/libical/zoneinfo/Pacific/Fakaofo.ics
share/apps/libical/zoneinfo/Pacific/Fiji.ics
share/apps/libical/zoneinfo/Pacific/Funafuti.ics
share/apps/libical/zoneinfo/Pacific/Galapagos.ics
share/apps/libical/zoneinfo/Pacific/Gambier.ics
share/apps/libical/zoneinfo/Pacific/Guadalcanal.ics
share/apps/libical/zoneinfo/Pacific/Guam.ics
share/apps/libical/zoneinfo/Pacific/Honolulu.ics
share/apps/libical/zoneinfo/Pacific/Johnston.ics
share/apps/libical/zoneinfo/Pacific/Kiritimati.ics
share/apps/libical/zoneinfo/Pacific/Kosrae.ics
share/apps/libical/zoneinfo/Pacific/Kwajalein.ics
share/apps/libical/zoneinfo/Pacific/Majuro.ics
share/apps/libical/zoneinfo/Pacific/Marquesas.ics
share/apps/libical/zoneinfo/Pacific/Midway.ics
share/apps/libical/zoneinfo/Pacific/Nauru.ics
share/apps/libical/zoneinfo/Pacific/Niue.ics
share/apps/libical/zoneinfo/Pacific/Norfolk.ics
share/apps/libical/zoneinfo/Pacific/Noumea.ics
share/apps/libical/zoneinfo/Pacific/Pago_Pago.ics
share/apps/libical/zoneinfo/Pacific/Palau.ics
share/apps/libical/zoneinfo/Pacific/Pitcairn.ics
share/apps/libical/zoneinfo/Pacific/Ponape.ics
share/apps/libical/zoneinfo/Pacific/Port_Moresby.ics
share/apps/libical/zoneinfo/Pacific/Rarotonga.ics
share/apps/libical/zoneinfo/Pacific/Saipan.ics
share/apps/libical/zoneinfo/Pacific/Tahiti.ics
share/apps/libical/zoneinfo/Pacific/Tarawa.ics
share/apps/libical/zoneinfo/Pacific/Tongatapu.ics
share/apps/libical/zoneinfo/Pacific/Truk.ics
share/apps/libical/zoneinfo/Pacific/Wake.ics
share/apps/libical/zoneinfo/Pacific/Wallis.ics
share/apps/libical/zoneinfo/zones.tab
share/config.kcfg/mailtransport.kcfg
share/dbus-1/interfaces/org.kde.KResourcesManager.xml
share/dbus-1/interfaces/org.kde.pim.IdentityManager.xml
share/kde4/services/imap4.protocol
share/kde4/services/imaps.protocol
share/kde4/services/kcm_mailtransport.desktop
share/kde4/services/kresources.desktop
share/kde4/services/kresources/kabc/dir.desktop
share/kde4/services/kresources/kabc/file.desktop
share/kde4/services/kresources/kabc/ldapkio.desktop
share/kde4/services/kresources/kabc/net.desktop
share/kde4/services/kresources/kabc_manager.desktop
share/kde4/services/kresources/kcal/local.desktop
share/kde4/services/kresources/kcal/localdir.desktop
share/kde4/services/kresources/kcal_manager.desktop
share/kde4/services/ldap.protocol
share/kde4/services/ldaps.protocol
share/kde4/services/mbox.protocol
share/kde4/services/nntp.protocol
share/kde4/services/nntps.protocol
share/kde4/services/pop3.protocol
share/kde4/services/pop3s.protocol
share/kde4/services/sieve.protocol
share/kde4/services/smtp.protocol
share/kde4/services/smtps.protocol
share/kde4/servicetypes/kresources_manager.desktop
share/kde4/servicetypes/kresources_plugin.desktop
@dirrmtry share/kde4/servicetypes
@dirrmtry share/kde4/services/kresources/kcal
@dirrmtry share/kde4/services/kresources/kabc
@dirrmtry share/kde4/services/kresources
@dirrmtry share/kde4/services
@dirrmtry share/kde4
@dirrm share/apps/libical/zoneinfo/Pacific
@dirrm share/apps/libical/zoneinfo/Indian
@dirrm share/apps/libical/zoneinfo/Europe
@dirrm share/apps/libical/zoneinfo/Australia
@dirrm share/apps/libical/zoneinfo/Atlantic
@dirrm share/apps/libical/zoneinfo/Asia
@dirrm share/apps/libical/zoneinfo/Arctic
@dirrm share/apps/libical/zoneinfo/Antarctica
@dirrm share/apps/libical/zoneinfo/America/Kentucky
@dirrm share/apps/libical/zoneinfo/America/Indiana
@dirrm share/apps/libical/zoneinfo/America/Argentina
@dirrm share/apps/libical/zoneinfo/America
@dirrm share/apps/libical/zoneinfo/Africa
@dirrm share/apps/libical/zoneinfo
@dirrm share/apps/libical
@dirrmtry share/apps/kconf_update
@dirrmtry share/apps/cmake/modules
@dirrmtry share/apps/cmake
@dirrmtry share/apps/akonadi-kde
@dirrm lib/gpgmepp
@dirrm include/syndication/rss2
@dirrm include/syndication/rdf
@dirrm include/syndication/atom
@dirrm include/syndication
@dirrm include/qgpgme
@dirrm include/mailtransport
@dirrm include/kxmlrpcclient
@dirrm include/ktnef
@dirrm include/kresources
@dirrm include/kpimutils
@dirrm include/kpimidentities
@dirrm include/kmime
@dirrm include/kldap
@dirrm include/kimap
@dirrm include/kcal
@dirrm include/kblog
@dirrm include/kabc
@dirrm include/gpgme++/interfaces
@dirrm include/gpgme++
@dirrmtry include/akonadi/private
@dirrmtry include/akonadi/kmime
@dirrmtry include/akonadi

View File

@ -0,0 +1,27 @@
# New ports collection makefile for: kdeplasmoids
# Date created: 2008-06-29
# Whom: Max Brazhnikov <makc@issp.ac.ru>
#
# $FreeBSD$
#
PORTNAME= kdeplasma-addons
PORTVERSION= ${KDE4_VERSION}
CATEGORIES= deskutils kde ipv6
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
DIST_SUBDIR= KDE
MAINTAINER= kde@freebsd.org
COMMENT= Extra plasmoids for KDE4
USE_KDE4= kdelibs pimlibs workspace kdeprefix kdehier automoc4
KDE4_BUILDENV= yes
USE_BZIP2= yes
USE_QT_VER= 4
QT_COMPONENTS= opengl webkit xml network moc rcc uic
post-extract:
${MKDIR} ${WRKSRC}
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (KDE/kdeplasma-addons-4.1.0.tar.bz2) = c67db067de416209fd63ff0deea44510
SHA256 (KDE/kdeplasma-addons-4.1.0.tar.bz2) = 838e2957bba11cbf496535afb79931dabf6f9042f52c9c7c829ec32e02347850
SIZE (KDE/kdeplasma-addons-4.1.0.tar.bz2) = 4074092

View File

@ -0,0 +1,3 @@
This port provides additional plasmoids for KDE
WWW: http://www.kde.org/

View File

@ -0,0 +1,208 @@
include/plasmaappletdialog.h
include/plasmaappletdialog_export.h
lib/kde4/krunner_contacts.so
lib/kde4/krunner_converterrunner.so
lib/kde4/plasma_applet_binaryclock.so
lib/kde4/plasma_applet_calculator.so
lib/kde4/plasma_applet_comic.so
lib/kde4/plasma_applet_dict.so
lib/kde4/plasma_applet_fifteenPuzzle.so
lib/kde4/plasma_applet_fileWatcher.so
lib/kde4/plasma_applet_frame.so
lib/kde4/plasma_applet_fuzzy_clock.so
lib/kde4/plasma_applet_kolourpicker.so
lib/kde4/plasma_applet_konqprofiles.so
lib/kde4/plasma_applet_konsoleprofiles.so
lib/kde4/plasma_applet_luna.so
lib/kde4/plasma_applet_notes.so
lib/kde4/plasma_applet_nowplaying.so
lib/kde4/plasma_applet_showdashboard.so
lib/kde4/plasma_applet_showdesktop.so
lib/kde4/plasma_applet_twitter.so
lib/kde4/plasma_comic_dilbertprovider.so
lib/kde4/plasma_comic_garfieldprovider.so
lib/kde4/plasma_comic_osnewsprovider.so
lib/kde4/plasma_comic_phdprovider.so
lib/kde4/plasma_comic_snoopyprovider.so
lib/kde4/plasma_comic_userfriendlyprovider.so
lib/kde4/plasma_comic_xkcdprovider.so
lib/kde4/plasma_engine_comic.so
lib/kde4/plasma_engine_twitter.so
lib/libplasmaappletdialog.so
lib/libplasmaappletdialog.so.5
lib/libplasmaappletdialog.so.5.0.0
lib/libplasmacomicprovidercore.so
lib/libplasmacomicprovidercore.so.1
lib/libplasmacomicprovidercore.so.1.0.0
share/apps/desktoptheme/Aya/dialogs/background.svg
share/apps/desktoptheme/Aya/dialogs/krunner.svg
share/apps/desktoptheme/Aya/dialogs/shutdowndialog.svg
share/apps/desktoptheme/Aya/metadata.desktop
share/apps/desktoptheme/Aya/opaque/dialogs/background.svg
share/apps/desktoptheme/Aya/opaque/widgets/tooltip.svg
share/apps/desktoptheme/Aya/widgets/analog_meter.svg
share/apps/desktoptheme/Aya/widgets/background.svg
share/apps/desktoptheme/Aya/widgets/bar_meter_horizontal.svg
share/apps/desktoptheme/Aya/widgets/bar_meter_vertical.svg
share/apps/desktoptheme/Aya/widgets/battery-oxygen.svg
share/apps/desktoptheme/Aya/widgets/battery.svg
share/apps/desktoptheme/Aya/widgets/clock.svg
share/apps/desktoptheme/Aya/widgets/connection-established.svg
share/apps/desktoptheme/Aya/widgets/iconbutton.svg
share/apps/desktoptheme/Aya/widgets/pager.svg
share/apps/desktoptheme/Aya/widgets/panel-background.svg
share/apps/desktoptheme/Aya/widgets/plot-background.svg
share/apps/desktoptheme/Aya/widgets/systemtray.svg
share/apps/desktoptheme/Aya/widgets/tasks.svg
share/apps/desktoptheme/Aya/widgets/toolbox-button.svg
share/apps/desktoptheme/Aya/widgets/tooltip.svg
share/apps/desktoptheme/Aya/widgets/translucentbackground.svg
share/apps/desktoptheme/Elegance/colors
share/apps/desktoptheme/Elegance/dialogs/background.svg
share/apps/desktoptheme/Elegance/dialogs/krunner.svg
share/apps/desktoptheme/Elegance/dialogs/shutdowndialog.svg
share/apps/desktoptheme/Elegance/dialogs/shutdowndlg.svg
share/apps/desktoptheme/Elegance/metadata.desktop
share/apps/desktoptheme/Elegance/widgets/analog_meter.svg
share/apps/desktoptheme/Elegance/widgets/background.svg
share/apps/desktoptheme/Elegance/widgets/battery-oxygen.svg
share/apps/desktoptheme/Elegance/widgets/containment-controls.svg
share/apps/desktoptheme/Elegance/widgets/clock.svg
share/apps/desktoptheme/Elegance/widgets/iconbutton.svg
share/apps/desktoptheme/Elegance/widgets/panel-background.svg
share/apps/desktoptheme/Elegance/widgets/plot-background.svg
share/apps/desktoptheme/Elegance/widgets/systemtray.svg
share/apps/desktoptheme/Elegance/widgets/tasks.svg
share/apps/desktoptheme/Elegance/widgets/toolbox-button.svg
share/apps/desktoptheme/Elegance/widgets/tooltip.svg
share/apps/desktoptheme/Elegance/widgets/translucentbackground.svg
share/apps/desktoptheme/Silicon/colors
share/apps/desktoptheme/Silicon/dialogs/background.svg
share/apps/desktoptheme/Silicon/dialogs/krunner.svg
share/apps/desktoptheme/Silicon/metadata.desktop
share/apps/desktoptheme/Silicon/opaque/dialogs/background.svg
share/apps/desktoptheme/Silicon/opaque/dialogs/krunner.svg
share/apps/desktoptheme/Silicon/widgets/background.svg
share/apps/desktoptheme/Silicon/widgets/clock.svg
share/apps/desktoptheme/Silicon/widgets/iconbutton.svg
share/apps/desktoptheme/Silicon/widgets/notes.svg
share/apps/desktoptheme/Silicon/widgets/pager.svg
share/apps/desktoptheme/Silicon/widgets/panel-background.svg
share/apps/desktoptheme/Silicon/widgets/plot-background.svg
share/apps/desktoptheme/Silicon/widgets/systemtray.svg
share/apps/desktoptheme/Silicon/widgets/tasks.svg
share/apps/desktoptheme/Silicon/widgets/tooltip.svg
share/apps/desktoptheme/default/widgets/luna.svg
share/apps/desktoptheme/default/widgets/notes.svg
share/apps/desktoptheme/default/widgets/picture-frame-default.svg
share/apps/desktoptheme/default/widgets/twitter.svg
share/apps/desktoptheme/heron/colors
share/apps/desktoptheme/heron/dialogs/background.svg
share/apps/desktoptheme/heron/dialogs/shutdowndialog.svg
share/apps/desktoptheme/heron/metadata.desktop
share/apps/desktoptheme/heron/opaque/dialogs/background.svg
share/apps/desktoptheme/heron/opaque/widgets/panel-background.svg
share/apps/desktoptheme/heron/opaque/widgets/tooltip.svg
share/apps/desktoptheme/heron/widgets/analog_meter.svg
share/apps/desktoptheme/heron/widgets/background.svg
share/apps/desktoptheme/heron/widgets/bar_meter_horizontal.svg
share/apps/desktoptheme/heron/widgets/bar_meter_vertical.svg
share/apps/desktoptheme/heron/widgets/clock.svg
share/apps/desktoptheme/heron/widgets/connection-established.svg
share/apps/desktoptheme/heron/widgets/iconbutton.svg
share/apps/desktoptheme/heron/widgets/notes.svg
share/apps/desktoptheme/heron/widgets/panel-background.svg
share/apps/desktoptheme/heron/widgets/picture-frame-default.svg
share/apps/desktoptheme/heron/widgets/plot-background.svg
share/apps/desktoptheme/heron/widgets/tasks.svg
share/apps/desktoptheme/heron/widgets/tooltip.svg
share/apps/desktoptheme/slim-glow/LICENSE
share/apps/desktoptheme/slim-glow/colors
share/apps/desktoptheme/slim-glow/dialogs/background.svg
share/apps/desktoptheme/slim-glow/dialogs/krunner.svg
share/apps/desktoptheme/slim-glow/dialogs/shutdowndialog.svg
share/apps/desktoptheme/slim-glow/metadata.desktop
share/apps/desktoptheme/slim-glow/opaque/dialogs/background.svg
share/apps/desktoptheme/slim-glow/opaque/widgets/panel-background.svg
share/apps/desktoptheme/slim-glow/opaque/widgets/tooltip.svg
share/apps/desktoptheme/slim-glow/widgets/analog_meter.svg
share/apps/desktoptheme/slim-glow/widgets/background.svg
share/apps/desktoptheme/slim-glow/widgets/bar_meter_horizontal.svg
share/apps/desktoptheme/slim-glow/widgets/bar_meter_vertical.svg
share/apps/desktoptheme/slim-glow/widgets/clock.svg
share/apps/desktoptheme/slim-glow/widgets/connection-established.svg
share/apps/desktoptheme/slim-glow/widgets/iconbutton.svg
share/apps/desktoptheme/slim-glow/widgets/notes.svg
share/apps/desktoptheme/slim-glow/widgets/panel-background.svg
share/apps/desktoptheme/slim-glow/widgets/picture-frame-default.svg
share/apps/desktoptheme/slim-glow/widgets/plot-background.svg
share/apps/desktoptheme/slim-glow/widgets/tasks.svg
share/apps/desktoptheme/slim-glow/widgets/toolbox-button.svg
share/apps/desktoptheme/slim-glow/widgets/tooltip.svg
share/apps/desktoptheme/slim-glow/widgets/translucentbackground.svg
share/apps/plasma-comic/plasma_comic_dilbert.png
share/apps/plasma-comic/plasma_comic_garfield.png
share/apps/plasma-comic/plasma_comic_osnews.png
share/apps/plasma-comic/plasma_comic_phd.png
share/apps/plasma-comic/plasma_comic_snoopy.png
share/apps/plasma-comic/plasma_comic_userfriendly.png
share/apps/plasma-comic/plasma_comic_xkcd.png
share/icons/hicolor/scalable/apps/fifteenpuzzle.svgz
share/kde4/services/dilbertprovider.desktop
share/kde4/services/garfieldprovider.desktop
share/kde4/services/osnewsprovider.desktop
share/kde4/services/phdprovider.desktop
share/kde4/services/plasma-applet-binaryclock.desktop
share/kde4/services/plasma-applet-calculator.desktop
share/kde4/services/plasma-applet-fifteenPuzzle.desktop
share/kde4/services/plasma-applet-konqprofiles.desktop
share/kde4/services/plasma-applet-konsoleprofiles.desktop
share/kde4/services/plasma-applet-luna.desktop
share/kde4/services/plasma-applet-nowplaying.desktop
share/kde4/services/plasma-applet-showdashboard.desktop
share/kde4/services/plasma-applet-showdesktop.desktop
share/kde4/services/plasma-clock-fuzzy.desktop
share/kde4/services/plasma-comic-default.desktop
share/kde4/services/plasma-dataengine-comic.desktop
share/kde4/services/plasma-dataengine-twitter.desktop
share/kde4/services/plasma-dict-default.desktop
share/kde4/services/plasma-fileWatcher-default.desktop
share/kde4/services/plasma-frame-default.desktop
share/kde4/services/plasma-kolourpicker-default.desktop
share/kde4/services/plasma-notes-default.desktop
share/kde4/services/plasma-runner-contacts.desktop
share/kde4/services/plasma-runner-converter.desktop
share/kde4/services/plasma-twitter-default.desktop
share/kde4/services/snoopyprovider.desktop
share/kde4/services/userfriendlyprovider.desktop
share/kde4/services/xkcdprovider.desktop
share/kde4/servicetypes/plasma_comicprovider.desktop
@dirrmtry share/icons/hicolor/scalable/apps
@dirrmtry share/icons/hicolor/scalable
@dirrm share/apps/plasma-comic
@dirrm share/apps/desktoptheme/slim-glow/widgets
@dirrm share/apps/desktoptheme/slim-glow/opaque/widgets
@dirrm share/apps/desktoptheme/slim-glow/opaque/dialogs
@dirrm share/apps/desktoptheme/slim-glow/opaque
@dirrm share/apps/desktoptheme/slim-glow/dialogs
@dirrm share/apps/desktoptheme/slim-glow
@dirrm share/apps/desktoptheme/heron/widgets
@dirrm share/apps/desktoptheme/heron/opaque/widgets
@dirrm share/apps/desktoptheme/heron/opaque/dialogs
@dirrm share/apps/desktoptheme/heron/opaque
@dirrm share/apps/desktoptheme/heron/dialogs
@dirrm share/apps/desktoptheme/heron
@dirrm share/apps/desktoptheme/Silicon/opaque/dialogs
@dirrm share/apps/desktoptheme/Silicon/opaque
@dirrm share/apps/desktoptheme/Silicon/widgets
@dirrm share/apps/desktoptheme/Silicon/dialogs
@dirrm share/apps/desktoptheme/Silicon
@dirrm share/apps/desktoptheme/Elegance/widgets
@dirrm share/apps/desktoptheme/Elegance/dialogs
@dirrm share/apps/desktoptheme/Elegance
@dirrm share/apps/desktoptheme/Aya/widgets
@dirrm share/apps/desktoptheme/Aya/opaque/widgets
@dirrm share/apps/desktoptheme/Aya/opaque/dialogs
@dirrm share/apps/desktoptheme/Aya/opaque
@dirrm share/apps/desktoptheme/Aya/dialogs
@dirrm share/apps/desktoptheme/Aya

View File

@ -79,6 +79,7 @@
SUBDIR += automake17
SUBDIR += automake18
SUBDIR += automake19
SUBDIR += automoc4
SUBDIR += autotools
SUBDIR += avalon-framework
SUBDIR += avarice
@ -543,6 +544,7 @@
SUBDIR += kcachegrind
SUBDIR += kdbg
SUBDIR += kdesdk3
SUBDIR += kdesdk4
SUBDIR += kdesvn
SUBDIR += kdevelop
SUBDIR += kimwitu

26
devel/automoc4/Makefile Normal file
View File

@ -0,0 +1,26 @@
# New ports collection makefile for: kdesupport4
# Date created: today
# Whom: miwi
#
# $FreeBSD$
PORTNAME= automoc4
PORTVERSION= 0.9.84
CATEGORIES= devel kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= unstable/automoc4/0.9.84/
DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
COMMENT= Automatic moc for Qt 4 packages
USE_BZIP2= yes
USE_ICONV= yes
USE_KDE4= kdeprefix kdehier
USE_QT_VER= 4
QT_COMPONENTS= uic moc rcc qmake corelib
USE_CMAKE= yes
CMAKE_VERBOSE= yes
CMAKE_USE_PTHREAD= yes
.include <bsd.port.mk>

3
devel/automoc4/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (KDE/automoc4-0.9.84.tar.bz2) = 6e1167594b8edd0fd2156aad75b4b2b0
SHA256 (KDE/automoc4-0.9.84.tar.bz2) = c76b56ef3f9ee1a0b060c409417b5b1add4fd483406dffd580c6eba9466b521a
SIZE (KDE/automoc4-0.9.84.tar.bz2) = 7918

3
devel/automoc4/pkg-descr Normal file
View File

@ -0,0 +1,3 @@
Add automoc4 tool, used to build kde4 and related packages.
WWW: http://www.kde.org/

5
devel/automoc4/pkg-plist Normal file
View File

@ -0,0 +1,5 @@
bin/automoc4
lib/automoc4/Automoc4Version.cmake
lib/automoc4/Automoc4Config.cmake
lib/automoc4/automoc4.files.in
@dirrmtry lib/automoc4

View File

@ -1,16 +1,14 @@
# New ports collection makefile for: KDE SDK
# Date created: 2 March 2001
# Whom: Dmitry Sivachenko <demon@FreeBSD.org>
# New ports collection Makefile for: kdesdk
# Date created: 2008-01-31
# Whom: Martin Wilke <miwi@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= kdesdk
PORTVERSION= ${KDE_VERSION}
PORTREVISION= 2
PORTVERSION= ${KDE4_VERSION}
CATEGORIES= devel kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
@ -19,48 +17,20 @@ COMMENT= KDE Software Development Kit
RUN_DEPENDS= bash:${PORTSDIR}/shells/bash
LIB_DEPENDS= svn_client-1.0:${PORTSDIR}/devel/subversion
CONFLICTS= umbrello-[0-9]* kcachegrind-[0-9]*
LATEST_LINK= ${PORTNAME}4
USE_KDEBASE_VER=3
PREFIX= ${KDE_PREFIX}
USE_PERL5= yes
USE_BZIP2= yes
USE_GMAKE= yes
USE_BDB= yes
USE_AUTOTOOLS= libtool:15
KDE4_BUILDENV= yes
USE_KDE4= kdelibs pimlibs workspace kdeprefix kdehier \
automoc4 akonadi
USE_QT_VER= 4
QT_COMPONENTS= network gui moc rcc uic svg qt3support
USE_LDCONFIG= yes
MAN1= cervisia.1
CONFIGURE_ARGS+=--mandir=${MANPREFIX}/man \
--with-db-include-dir=${BDB_INCLUDE_DIR} \
--with-db-lib-dir=${BDB_LIB_DIR} --with-db-name=${BDB_LIB_NAME} \
--with-apr-config=${LOCALBASE}/bin/apr-1-config \
--with-apu-config=${LOCALBASE}/bin/apu-1-config \
--with-svn-include=${LOCALBASE}/include \
--with-svn-lib=${LOCALBASE}/lib
CMAKE_ARGS+= -DBUILD_kapptemplate:BOOL=Off
MAN1= cervisia.1 cvsblame.1 cvscheck.1 cvsversion.1 includemocs.1 kde-build.1 kdesvn-build.1 noncvslist.1
post-extract:
${MKDIR} ${WRKSRC}
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
.include <bsd.port.pre.mk>
pre-everything::
.if !defined(WITH_OPTIONAL_DEPENDS)
@${ECHO_MSG}
@${ECHO_MSG} "You may define WITH_OPTIONAL_DEPENDS (make WITH_OPTIONAL_DEPENDS=YES)"
@${ECHO_MSG} "to automatically build the suggested programs to complement kdesdk3."
@${ECHO_MSG}
.endif
# callgrind is optional. It depends on valgrind, which is i386 only.
.if defined(WITH_OPTIONAL_DEPENDS) && ${ARCH} == "i386"
RUN_DEPENDS+= callgrind:${PORTSDIR}/devel/callgrind
.endif
post-patch:
# Breakage might be caused by security/heimdal's broken fnmatch.h
@${REINPLACE_CMD} -e 's|<\(fnmatch.h\)>|"/usr/include/\1"|' \
${WRKSRC}/cervisia/stringmatcher.cpp
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (KDE/kdesdk-3.5.8.tar.bz2) = c809c15eb8c09a7eb2d070395202910b
SHA256 (KDE/kdesdk-3.5.8.tar.bz2) = 3ed120f3c9ca56224c79f286f2c71441fec2d988b94e2c90c7e96b1e813885df
SIZE (KDE/kdesdk-3.5.8.tar.bz2) = 5241140
MD5 (KDE/kdesdk-4.1.0.tar.bz2) = eb4e7bc753c80f617c113f31ab501168
SHA256 (KDE/kdesdk-4.1.0.tar.bz2) = 5718b1a155666e755dfdac720d771678fb4e0f3486a004110b952d728831f1af
SIZE (KDE/kdesdk-4.1.0.tar.bz2) = 4819517

View File

@ -1,8 +0,0 @@
--- scripts/cvs2dist.orig Mon Oct 3 17:30:54 2005
+++ scripts/cvs2dist Mon Oct 3 17:31:00 2005
@@ -1,4 +1,4 @@
-#! /bin/bash
+#!/usr/bin/env bash
# This is cvs2dist
# Webpage: http://www.katzbrown.com/shiritsu/programming/cvs2dist/

View File

@ -1,8 +0,0 @@
--- scripts/package_crystalsvg.orig Mon Oct 3 17:30:16 2005
+++ scripts/package_crystalsvg Mon Oct 3 17:30:35 2005
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
echo -n "Starting up..."
#
# Copyright (C) 2004 Frans Englich <frans.englich@telia.com>

File diff suppressed because it is too large Load Diff

View File

@ -20,6 +20,7 @@
SUBDIR += ispell
SUBDIR += jdictionary-fre-hun
SUBDIR += kde3-i18n
SUBDIR += kde4-l10n
SUBDIR += koffice-i18n
SUBDIR += med
SUBDIR += mozilla-flp

View File

@ -1,29 +1,21 @@
# New ports collection makefile for: kde3-i18n-fr
# Date created: 05 April 2002
# Whom: Lauri Watts <lauri@kde.org>
# New ports collection makefile for: kde4-l10n-fr
# Date created: 29 July 2008
# Whom: Martin Wilke <miwi@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= kde-i18n
PORTVERSION= ${KDE_VERSION}
CATEGORIES?= french kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n
PKGNAMEPREFIX= fr-
DIST_SUBDIR= KDE
PORTNAME= kde-l10n-fr
PORTVERSION= ${KDE4_VERSION}
CATEGORIES= misc kde
MAINTAINER= kde@FreeBSD.org
COMMENT= French messages and documentation for KDE3
COMMENT= French messages and documentation for KDE4
BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext
KDE4_L10N= yes
USE_KDELIBS_VER=3
USE_BZIP2= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
KDE_I18N= yes
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
post-extract:
${MKDIR} ${WRKSRC}/build
.include "${.CURDIR}/../../misc/kde4-l10n/files/bsd.l10n.mk"
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (KDE/kde-i18n/kde-i18n-fr-3.5.8.tar.bz2) = 2a64410a4692b7e248fde1e4bdc09f86
SHA256 (KDE/kde-i18n/kde-i18n-fr-3.5.8.tar.bz2) = e9138a97b07b8a1d893652b9850f054a948a79305cd7df35047206c8f953b55c
SIZE (KDE/kde-i18n/kde-i18n-fr-3.5.8.tar.bz2) = 20136702
MD5 (KDE/kde-l10n-fr-4.1.0.tar.bz2) = ba690a8e9409f5c934b7db78c4b26da8
SHA256 (KDE/kde-l10n-fr-4.1.0.tar.bz2) = 3fc55e81f9bf6310fe2d35f784d501e418f2f0e2bf76a0a5c4922895266a0276
SIZE (KDE/kde-l10n-fr-4.1.0.tar.bz2) = 18780951

View File

@ -1,3 +1,3 @@
Localized messages and documentation for KDE3.
Localized messages and documentation for KDE4.
WWW: http://i18n.kde.org/

File diff suppressed because it is too large Load Diff

View File

@ -1,53 +1,30 @@
# New ports collection makefile for: kdegames3
# Date created: Sun 14 May 2000 02:47:57
# Whom: Will Andrews <will@FreeBSD.org>
# New ports collection Makefile for: kdegames
# Date created: 2008-02-08
# Whom: Martin Wilke <miwi@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= kdegames
PORTVERSION= ${KDE_VERSION}
PORTREVISION= 1
PORTVERSION= ${KDE4_VERSION}
CATEGORIES= games kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
COMMENT= Games for the KDE integrated X11 desktop
USE_KDELIBS_VER=3
PREFIX= ${KDE_PREFIX}
LIB_DEPENDS= ggzcore.9:${PORTSDIR}/games/ggz-client-libs
LATEST_LINK= ${PORTNAME}4
USE_BZIP2= yes
USE_GMAKE= yes
USE_AUTOTOOLS= libtool:15
USE_LDCONFIG= yes
LDCONFIG_DIRS+= %%PREFIX%%/lib
CONFIGURE_ARGS= --disable-setgid
DECKS= ${WRKSRC}/libkdegames/carddecks/decks/
.if defined(WITHOUT_TUX)
PLIST_SUB+= FREEBSD_DECK="@comment "
.else
PLIST_SUB+= FREEBSD_DECK=""
.endif
USE_KDE4= kdelibs kdeprefix kdehier automoc4
KDE4_BUILDENV= yes
USE_QT_VER= 4
QT_COMPONENTS= opengl gui moc rcc uic svg iconengines pixeltool
post-extract:
.if defined(WITHOUT_TUX)
${CP} ${FILESDIR}/deck_freebsd.desktop ${DECKS}deck14.desktop
${CP} ${FILESDIR}/deck_freebsd.png ${DECKS}/deck14.png
.else
${CP} ${FILESDIR}/deck_freebsd.desktop ${DECKS}
${CP} ${FILESDIR}/deck_freebsd.png ${DECKS}
.endif
${MKDIR} ${WRKSRC}
post-patch:
@${REINPLACE_CMD} -e 's|root:root|${BINOWN}:${BINGRP}|g' \
${WRKSRC}/kgoldrunner/gamedata/Makefile.in
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (KDE/kdegames-3.5.8.tar.bz2) = 786ee4e47820d92aef7db73424b9604c
SHA256 (KDE/kdegames-3.5.8.tar.bz2) = b0727184cbaf14408f84df6f42ff73094de3f0ba0f72bbc337a611a8174e7a8f
SIZE (KDE/kdegames-3.5.8.tar.bz2) = 10779312
MD5 (KDE/kdegames-4.1.0.tar.bz2) = 2c0a4c089bf31ff9bd3133c3f58c4dc7
SHA256 (KDE/kdegames-4.1.0.tar.bz2) = b017a11474d762c2d09ab9d2f0d2eb23b8f8efd33b0583072a4185b17d5b5976
SIZE (KDE/kdegames-4.1.0.tar.bz2) = 31909999

View File

@ -1,60 +0,0 @@
[KDE Cards]
Name=FreeBSD
Name[af]=FreeBSD
Name[ar]=FreeBSD
Name[az]=FreeBSD
Name[bg]=FreeBSD
Name[bn]=FreeBSD
Name[br]=FreeBSD
Name[bs]=FreeBSD
Name[ca]=FreeBSD­
Name[cs]=FreeBSD
Name[cy]=FreeBSD
Name[da]=FreeBSD
Name[de]=FreeBSD
Name[el]=FreeBSD
Name[eo]=FreeBSD
Name[es]=FreeBSD
Name[et]=FreeBSD
Name[eu]=FreeBSD
Name[fi]=FreeBSD
Name[fr]=FreeBSD
Name[gl]=FreeBSD
Name[he]=FreeBSD
Name[hi]=FreeBSD
Name[hr]=FreeBSD
Name[hu]=FreeBSD
Name[is]=FreeBSD
Name[it]=FreeBSD
Name[km]=FreeBSD
Name[ko]=FreeBSD
Name[lt]=FreeBSD
Name[lv]=FreeBSD
Name[mk]=FreeBSD
Name[mt]=FreeBSD
Name[nb]=FreeBSD
Name[nl]=FreeBSD
Name[nn]=FreeBSD
Name[pa]=FreeBSD
Name[pl]=FreeBSD
Name[pt]=FreeBSD
Name[pt_BR]=FreeBSD
Name[ro]=FreeBSD
Name[ru]=FreeBSD
Name[sk]=FreeBSD
Name[sl]=FreeBSD
Name[sr]=FreeBSD
Name[sr@Latn]=FreeBSD
Name[sv]=FreeBSD
Name[ta]=FreeBSD
Name[tg]=FreeBSD
Name[th]=FreeBSD
Name[tr]=FreeBSD
Name[uk]=FreeBSD
Name[uz]=FreeBSD
Name[vi]=FreeBSD
Name[wa]=FreeBSD
Name[xh]=FreeBSD
Name[zh_CN]=FreeBSD
Name[zh_TW]=FreeBSD
Name[zu]=FreeBSD

Binary file not shown.

Before

(image error) Size: 9.9 KiB

File diff suppressed because it is too large Load Diff

View File

@ -23,6 +23,7 @@
SUBDIR += jdictionary-eng-ger
SUBDIR += jdictionary-ger-hun
SUBDIR += kde3-i18n
SUBDIR += kde4-l10n
SUBDIR += kheisereg
SUBDIR += koffice-i18n
SUBDIR += ksteak

View File

@ -1,29 +1,21 @@
# New ports collection makefile for: kde3-i18n-de
# Date created: 05 April 2002
# Whom: Lauri Watts <lauri@kde.org>
# New ports collection makefile for: kde4-l10n-de
# Date created: 29 July 2008
# Whom: Martin Wilke <miwi@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= kde-i18n
PORTVERSION= ${KDE_VERSION}
PORTNAME= kde-l10n-de
PORTVERSION= ${KDE4_VERSION}
CATEGORIES?= german kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src/kde-i18n
PKGNAMEPREFIX= de-
DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
COMMENT= German messages and documentation for KDE3
COMMENT= German messages and documentation for KDE4
BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext
KDE4_L10N= yes
USE_KDELIBS_VER=3
USE_BZIP2= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
KDE_I18N= yes
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
post-extract:
${MKDIR} ${WRKSRC}/build
.include "${.CURDIR}/../../misc/kde4-l10n/files/bsd.l10n.mk"
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (KDE/kde-i18n/kde-i18n-de-3.5.8.tar.bz2) = 541d0f5189126addfdece3410027a6cd
SHA256 (KDE/kde-i18n/kde-i18n-de-3.5.8.tar.bz2) = f29b937a87b5ffd4030de04f8d0c03ee54fd25191b2763b6ca0312eda76c5198
SIZE (KDE/kde-i18n/kde-i18n-de-3.5.8.tar.bz2) = 21358368
MD5 (KDE/kde-l10n-de-4.1.0.tar.bz2) = 4b4692687b61fe38b1936de557ad76fc
SHA256 (KDE/kde-l10n-de-4.1.0.tar.bz2) = 80f97647c847cad11d209208d4eaf8fd48c18c42b9030306ef690fe35a28ec11
SIZE (KDE/kde-l10n-de-4.1.0.tar.bz2) = 19707118

File diff suppressed because it is too large Load Diff

View File

@ -345,6 +345,7 @@
SUBDIR += kbarcode
SUBDIR += kdc2tiff
SUBDIR += kdegraphics3
SUBDIR += kdegraphics4
SUBDIR += kipi-plugins
SUBDIR += kisomandel
SUBDIR += kix-kmod

View File

@ -1,77 +1,52 @@
# -*-mode: makefile-*-
# New ports collection makefile for: KDE3 Graphics
# Date created: Saturday 2 September 2000
# Whom: Will Andrews <will@FreeBSD.org>
# New ports collection Makefile for: kdegraphics
# Date created: 2008-01-31
# Whom: Martin Wilke <miwi@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= kdegraphics
PORTVERSION= ${KDE_VERSION}
PORTREVISION= 3
PORTVERSION= ${KDE4_VERSION}
CATEGORIES= graphics kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
DIST_SUBDIR= KDE
MAINTAINER= kde@FreeBSD.org
COMMENT= Graphics utilities for the KDE3 integrated X11 desktop
COMMENT= Graphics utilities for the KDE4 integrated X11 desktop
BUILD_DEPENDS= kpsewhich:${PORTSDIR}/print/teTeX-base
LIB_DEPENDS= art_lgpl_2:${PORTSDIR}/graphics/libart_lgpl \
fontconfig:${PORTSDIR}/x11-fonts/fontconfig \
freetype:${PORTSDIR}/print/freetype2 \
fribidi:${PORTSDIR}/converters/fribidi \
glut:${PORTSDIR}/graphics/libglut \
lcms:${PORTSDIR}/graphics/lcms \
paper:${PORTSDIR}/print/libpaper \
poppler-qt:${PORTSDIR}/graphics/poppler-qt
poppler-qt4:${PORTSDIR}/graphics/poppler-qt4 \
exiv2.3:${PORTSDIR}/graphics/exiv2 \
chm.0:${PORTSDIR}/misc/chmlib \
sane.1:${PORTSDIR}/graphics/sane-backends \
gphoto2.2:${PORTSDIR}/graphics/libgphoto2 \
djvulibre:${PORTSDIR}/graphics/djvulibre-nox11 \
qimageblitz.4:${PORTSDIR}/x11/qimageblitz \
spectre.1:${PORTSDIR}/print/libspectre \
qca.2:${PORTSDIR}/devel/qca \
epub.0:${PORTSDIR}/textproc/ebook-tools
CONFLICTS= kolourpaint-[0-9]*
USE_KDELIBS_VER=3
PREFIX= ${KDE_PREFIX}
LATEST_LINK= ${PORTNAME}4
USE_GL= glut
USE_GHOSTSCRIPT= yes
USE_KDE4= kdelibs workspace kdeprefix kdehier automoc4
KDE4_BUILDENV= yes
USE_BZIP2= yes
USE_AUTOTOOLS= libtool:15
USE_GMAKE= yes
WANT_GNOME= yes
USE_GHOSTSCRIPT=yes
USE_QT_VER= 4
QT_COMPONENTS= opengl gui moc rcc uic svg iconengines pixeltool
USE_LDCONFIG= yes
LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3
DO_NOT_COMPILE+=kooka kuickshow libkscan
post-extract:
${MKDIR} ${WRKSRC}
OPTIONS= IMLIB "Build Kuickshow, a fast and versatile image viewer" off \
GPHOTO2 "Enable support for digital cameras" off \
SANE "Build Kooka, a SANE scanner frontend for KDE" off
post-patch:
${FIND} ${WRKSRC}/.. -type f -name CMakeLists.txt | ${XARGS} \
${REINPLACE_CMD} -e 's|pkgconfig|../libdata/pkgconfig|'
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
.include <bsd.port.pre.mk>
.if defined(WITH_IMLIB)
RUN_DEPENDS+= kuickshow:${PORTSDIR}/graphics/kuickshow
.elif defined(WITHOUT_IMLIB)
CONFIGURE_ARGS+=--without-imlib-config
.endif
.if defined(WITH_GPHOTO2)
RUN_DEPENDS+= ${LOCALBASE}/lib/kde3/kcm_kamera.la:${PORTSDIR}/graphics/kamera
.elif defined(WITHOUT_GPHOTO2)
CONFIGURE_ARGS+=--without-kamera
.endif
.if defined(WITH_SANE)
RUN_DEPENDS+= kooka:${PORTSDIR}/graphics/kooka
.endif
.if defined(DO_NOT_COMPILE)
CONFIGURE_ENV+=DO_NOT_COMPILE="${DO_NOT_COMPILE}"
.endif # defined(DO_NOT_COMPILE)
pre-configure:
${REINPLACE_CMD} \
-E -e '/^SUBDIRS/s/(kamera|kooka|kuickshow)//g' \
${WRKSRC}/doc/Makefile.in
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (KDE/kdegraphics-3.5.8.tar.bz2) = a3a31fc0e5b791ef330dd0627095d90f
SHA256 (KDE/kdegraphics-3.5.8.tar.bz2) = 4d041d892f17ef90e0029ef14925980cf6a637d7a9971fba5835a5620ff3e155
SIZE (KDE/kdegraphics-3.5.8.tar.bz2) = 7444011
MD5 (KDE/kdegraphics-4.1.0.tar.bz2) = 2488d850b66eba1b542bded3def3e87e
SHA256 (KDE/kdegraphics-4.1.0.tar.bz2) = f46ffe76ee69b7e569f79a74634d1379019eda4ee571c99e817c7cd2d3f16216
SIZE (KDE/kdegraphics-4.1.0.tar.bz2) = 3383727

View File

@ -0,0 +1,11 @@
--- ../kamera/config-kamera.h.cmake.orig 2008-02-10 12:38:09.000000000 +0100
+++ ../kamera/config-kamera.h.cmake 2008-02-10 12:38:35.000000000 +0100
@@ -1,6 +1,6 @@
/* Define if we have va_copy */
-/* #undef HAVE_VA_COPY */
+#define HAVE_VA_COPY
/* Define if we have __va_copy */
-#define HAVE___VA_COPY 1
+/* #define HAVE___VA_COPY 1 */

Some files were not shown because too many files have changed in this diff Show More