mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 02:46:27 -04:00
update to 3.1 official release
This commit is contained in:
parent
ada9843b06
commit
3c71ff78e9
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=74156
388 changed files with 42256 additions and 28510 deletions
|
@ -1,4 +1,4 @@
|
|||
#-*- mode: Fundamental; tab-width: 4; -*-
|
||||
#-*- mode: Makefile; tab-width: 4; -*-
|
||||
# ex:ts=4
|
||||
#
|
||||
# $FreeBSD$
|
||||
|
@ -32,65 +32,52 @@ KDE_MAINTAINER= will@FreeBSD.org
|
|||
USE_QT_VER= 2
|
||||
pre-everything::
|
||||
@${ECHO} ">>> Warning: this port needs to be updated as it uses the old-style USE_QT variable!"
|
||||
.endif
|
||||
.endif # defined(USE_QT)
|
||||
.if defined(USE_QT2)
|
||||
USE_QT_VER= 2
|
||||
pre-everything::
|
||||
@${ECHO} ">>> Warning: this port needs to be updated as it uses the old-style USE_QT2 variable!"
|
||||
.endif
|
||||
.endif # defined(USE_QT2)
|
||||
|
||||
# tagged MASTER_SITE_KDE_kde
|
||||
|
||||
kmaster= ${MASTER_SITE_KDE:S@%/@%/:kde@g}
|
||||
.if !defined(MASTER_SITE_SUBDIR)
|
||||
MASTER_SITE_KDE_kde= ${kmaster:S@%SUBDIR%/@@g}
|
||||
.else
|
||||
ksub=${MASTER_SITE_SUBDIR}
|
||||
MASTER_SITE_KDE_kde= ${kmaster:S@%SUBDIR%/@${ksub}/@g}
|
||||
.endif
|
||||
.endif # !defined(MASTER_SITE_SUBDIR)
|
||||
|
||||
# USE_KDEBASE_VER section
|
||||
.if defined(USE_KDEBASE_VER)
|
||||
|
||||
.if ${USE_KDEBASE_VER} == 3
|
||||
|
||||
# kdebase 3.x common stuff
|
||||
LIB_DEPENDS+= konq:${PORTSDIR}/x11/kdebase3
|
||||
USE_KDELIBS_VER=3
|
||||
|
||||
.else
|
||||
|
||||
# kdebase 2.x common stuff -- DEFAULT
|
||||
USE_KDELIBS_VER=2
|
||||
|
||||
.endif
|
||||
.endif
|
||||
# End of USE_KDEBASE_VER
|
||||
.endif # ${USE_KDEBASE_VER} == 3
|
||||
.endif # defined(USE_KDEBASE_VER)
|
||||
|
||||
# USE_KDELIBS_VER section
|
||||
.if defined(USE_KDELIBS_VER)
|
||||
|
||||
.if ${USE_KDELIBS_VER} == 3
|
||||
|
||||
# kdelibs 3.x common stuff
|
||||
LIB_DEPENDS+= kdecore:${PORTSDIR}/x11/kdelibs3
|
||||
USE_QT_VER= 3
|
||||
PREFIX= ${KDE_PREFIX}
|
||||
|
||||
.else
|
||||
|
||||
BROKEN= "KDE2 is gone. This port needs to be updated or deleted!"
|
||||
|
||||
# kdelibs 2.x common stuff -- DEFAULT
|
||||
USE_QT_VER= 2
|
||||
.endif # ${USE_KDELIBS_VER} == 3
|
||||
.endif # defined(USE_KDELIBS_VER)
|
||||
|
||||
.endif
|
||||
.endif
|
||||
# End of USE_KDELIBS_VER section
|
||||
|
||||
# USE_QT_VER section
|
||||
.if defined(USE_QT_VER)
|
||||
|
||||
# Qt 1.x common stuff
|
||||
.if ${USE_QT_VER} == 1
|
||||
LIB_DEPENDS+= qt1.3:${PORTSDIR}/x11-toolkits/qt145
|
||||
|
@ -99,15 +86,15 @@ MOC?= ${X11BASE}/bin/moc1
|
|||
QTDIR= ${PREFIX}
|
||||
.else
|
||||
QTDIR= ${X11BASE}
|
||||
.endif
|
||||
.endif # defined(PREFIX)
|
||||
CONFIGURE_ENV+= MOC="${MOC}" QTDIR="${QTDIR}"
|
||||
|
||||
.elif ${USE_QT_VER} == 3
|
||||
|
||||
# Yeah, it's namespace pollution, but this is really the best place for this
|
||||
# stuff since arts/kdelibs use it.
|
||||
KDE_VERSION= 3.0.4
|
||||
KDE_ORIGVER= 3.0.1
|
||||
KDE_VERSION= 3.1
|
||||
KDE_ORIGVER= ${KDE_VERSION}
|
||||
KDE_PREFIX?= ${LOCALBASE}
|
||||
|
||||
QTCPPFLAGS?=
|
||||
|
@ -116,9 +103,9 @@ QTCGFLIBS?=
|
|||
# Qt 3.x common stuff
|
||||
QT_PREFIX?= ${X11BASE}
|
||||
MOC?= ${QT_PREFIX}/bin/moc
|
||||
#LIB_DEPENDS+= qt-mt.3:${PORTSDIR}/x11-toolkits/qt30
|
||||
BUILD_DEPENDS+= ${QT_PREFIX}/bin/moc:${PORTSDIR}/x11-toolkits/qt30
|
||||
RUN_DEPENDS+= ${QT_PREFIX}/bin/moc:${PORTSDIR}/x11-toolkits/qt30
|
||||
#LIB_DEPENDS+= qt-mt.3:${PORTSDIR}/x11-toolkits/qt31
|
||||
BUILD_DEPENDS+= ${QT_PREFIX}/bin/moc:${PORTSDIR}/x11-toolkits/qt31
|
||||
RUN_DEPENDS+= ${QT_PREFIX}/bin/moc:${PORTSDIR}/x11-toolkits/qt31
|
||||
QTCPPFLAGS+= -I${LOCALBASE}/include -I${PREFIX}/include \
|
||||
-I${QT_PREFIX}/include -D_GETOPT_H
|
||||
QTCFGLIBS+= -Wl,-export-dynamic -L${LOCALBASE}/lib -L${X11BASE}/lib -ljpeg \
|
||||
|
@ -128,9 +115,9 @@ CONFIGURE_ARGS+=--with-qt-includes=${QT_PREFIX}/include \
|
|||
--with-qt-libraries=${QT_PREFIX}/lib \
|
||||
--with-extra-libs=${LOCALBASE}/lib
|
||||
CONFIGURE_ENV+= MOC="${MOC}" CPPFLAGS="${QTCPPFLAGS}" LIBS="${QTCFGLIBS}"
|
||||
.endif
|
||||
.endif # !defined(QT_NONSTANDARD)
|
||||
|
||||
.else
|
||||
.else # QT2
|
||||
|
||||
QTCPPFLAGS?=
|
||||
QTCGFLIBS?=
|
||||
|
@ -148,9 +135,26 @@ CONFIGURE_ARGS+=--with-qt-includes=${X11BASE}/include/qt2 \
|
|||
--with-extra-libs=${LOCALBASE}/lib
|
||||
CONFIGURE_ENV+= MOC="${MOC}" LIBQT="-l${QTNAME}" \
|
||||
CPPFLAGS="${QTCPPFLAGS}" LIBS="${QTCFGLIBS}"
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
.endif # !defined(QT_NONSTANDARD)
|
||||
|
||||
.endif # USE_QT_VER == ???
|
||||
.endif # defined(USE_QT_VER)
|
||||
|
||||
# End of USE_QT_VER section
|
||||
|
||||
# End of use part.
|
||||
# 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)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#-*- mode: Fundamental; tab-width: 4; -*-
|
||||
#-*- mode: Makefile; tab-width: 4; -*-
|
||||
# ex:ts=4
|
||||
#
|
||||
# $FreeBSD$
|
||||
|
@ -32,65 +32,52 @@ KDE_MAINTAINER= will@FreeBSD.org
|
|||
USE_QT_VER= 2
|
||||
pre-everything::
|
||||
@${ECHO} ">>> Warning: this port needs to be updated as it uses the old-style USE_QT variable!"
|
||||
.endif
|
||||
.endif # defined(USE_QT)
|
||||
.if defined(USE_QT2)
|
||||
USE_QT_VER= 2
|
||||
pre-everything::
|
||||
@${ECHO} ">>> Warning: this port needs to be updated as it uses the old-style USE_QT2 variable!"
|
||||
.endif
|
||||
.endif # defined(USE_QT2)
|
||||
|
||||
# tagged MASTER_SITE_KDE_kde
|
||||
|
||||
kmaster= ${MASTER_SITE_KDE:S@%/@%/:kde@g}
|
||||
.if !defined(MASTER_SITE_SUBDIR)
|
||||
MASTER_SITE_KDE_kde= ${kmaster:S@%SUBDIR%/@@g}
|
||||
.else
|
||||
ksub=${MASTER_SITE_SUBDIR}
|
||||
MASTER_SITE_KDE_kde= ${kmaster:S@%SUBDIR%/@${ksub}/@g}
|
||||
.endif
|
||||
.endif # !defined(MASTER_SITE_SUBDIR)
|
||||
|
||||
# USE_KDEBASE_VER section
|
||||
.if defined(USE_KDEBASE_VER)
|
||||
|
||||
.if ${USE_KDEBASE_VER} == 3
|
||||
|
||||
# kdebase 3.x common stuff
|
||||
LIB_DEPENDS+= konq:${PORTSDIR}/x11/kdebase3
|
||||
USE_KDELIBS_VER=3
|
||||
|
||||
.else
|
||||
|
||||
# kdebase 2.x common stuff -- DEFAULT
|
||||
USE_KDELIBS_VER=2
|
||||
|
||||
.endif
|
||||
.endif
|
||||
# End of USE_KDEBASE_VER
|
||||
.endif # ${USE_KDEBASE_VER} == 3
|
||||
.endif # defined(USE_KDEBASE_VER)
|
||||
|
||||
# USE_KDELIBS_VER section
|
||||
.if defined(USE_KDELIBS_VER)
|
||||
|
||||
.if ${USE_KDELIBS_VER} == 3
|
||||
|
||||
# kdelibs 3.x common stuff
|
||||
LIB_DEPENDS+= kdecore:${PORTSDIR}/x11/kdelibs3
|
||||
USE_QT_VER= 3
|
||||
PREFIX= ${KDE_PREFIX}
|
||||
|
||||
.else
|
||||
|
||||
BROKEN= "KDE2 is gone. This port needs to be updated or deleted!"
|
||||
|
||||
# kdelibs 2.x common stuff -- DEFAULT
|
||||
USE_QT_VER= 2
|
||||
.endif # ${USE_KDELIBS_VER} == 3
|
||||
.endif # defined(USE_KDELIBS_VER)
|
||||
|
||||
.endif
|
||||
.endif
|
||||
# End of USE_KDELIBS_VER section
|
||||
|
||||
# USE_QT_VER section
|
||||
.if defined(USE_QT_VER)
|
||||
|
||||
# Qt 1.x common stuff
|
||||
.if ${USE_QT_VER} == 1
|
||||
LIB_DEPENDS+= qt1.3:${PORTSDIR}/x11-toolkits/qt145
|
||||
|
@ -99,15 +86,15 @@ MOC?= ${X11BASE}/bin/moc1
|
|||
QTDIR= ${PREFIX}
|
||||
.else
|
||||
QTDIR= ${X11BASE}
|
||||
.endif
|
||||
.endif # defined(PREFIX)
|
||||
CONFIGURE_ENV+= MOC="${MOC}" QTDIR="${QTDIR}"
|
||||
|
||||
.elif ${USE_QT_VER} == 3
|
||||
|
||||
# Yeah, it's namespace pollution, but this is really the best place for this
|
||||
# stuff since arts/kdelibs use it.
|
||||
KDE_VERSION= 3.0.4
|
||||
KDE_ORIGVER= 3.0.1
|
||||
KDE_VERSION= 3.1
|
||||
KDE_ORIGVER= ${KDE_VERSION}
|
||||
KDE_PREFIX?= ${LOCALBASE}
|
||||
|
||||
QTCPPFLAGS?=
|
||||
|
@ -116,9 +103,9 @@ QTCGFLIBS?=
|
|||
# Qt 3.x common stuff
|
||||
QT_PREFIX?= ${X11BASE}
|
||||
MOC?= ${QT_PREFIX}/bin/moc
|
||||
#LIB_DEPENDS+= qt-mt.3:${PORTSDIR}/x11-toolkits/qt30
|
||||
BUILD_DEPENDS+= ${QT_PREFIX}/bin/moc:${PORTSDIR}/x11-toolkits/qt30
|
||||
RUN_DEPENDS+= ${QT_PREFIX}/bin/moc:${PORTSDIR}/x11-toolkits/qt30
|
||||
#LIB_DEPENDS+= qt-mt.3:${PORTSDIR}/x11-toolkits/qt31
|
||||
BUILD_DEPENDS+= ${QT_PREFIX}/bin/moc:${PORTSDIR}/x11-toolkits/qt31
|
||||
RUN_DEPENDS+= ${QT_PREFIX}/bin/moc:${PORTSDIR}/x11-toolkits/qt31
|
||||
QTCPPFLAGS+= -I${LOCALBASE}/include -I${PREFIX}/include \
|
||||
-I${QT_PREFIX}/include -D_GETOPT_H
|
||||
QTCFGLIBS+= -Wl,-export-dynamic -L${LOCALBASE}/lib -L${X11BASE}/lib -ljpeg \
|
||||
|
@ -128,9 +115,9 @@ CONFIGURE_ARGS+=--with-qt-includes=${QT_PREFIX}/include \
|
|||
--with-qt-libraries=${QT_PREFIX}/lib \
|
||||
--with-extra-libs=${LOCALBASE}/lib
|
||||
CONFIGURE_ENV+= MOC="${MOC}" CPPFLAGS="${QTCPPFLAGS}" LIBS="${QTCFGLIBS}"
|
||||
.endif
|
||||
.endif # !defined(QT_NONSTANDARD)
|
||||
|
||||
.else
|
||||
.else # QT2
|
||||
|
||||
QTCPPFLAGS?=
|
||||
QTCGFLIBS?=
|
||||
|
@ -148,9 +135,26 @@ CONFIGURE_ARGS+=--with-qt-includes=${X11BASE}/include/qt2 \
|
|||
--with-extra-libs=${LOCALBASE}/lib
|
||||
CONFIGURE_ENV+= MOC="${MOC}" LIBQT="-l${QTNAME}" \
|
||||
CPPFLAGS="${QTCPPFLAGS}" LIBS="${QTCFGLIBS}"
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
.endif # !defined(QT_NONSTANDARD)
|
||||
|
||||
.endif # USE_QT_VER == ???
|
||||
.endif # defined(USE_QT_VER)
|
||||
|
||||
# End of USE_QT_VER section
|
||||
|
||||
# End of use part.
|
||||
# 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)
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
PORTNAME= kdeutils
|
||||
PORTVERSION= ${KDE_VERSION}
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 0
|
||||
CATEGORIES?= misc kde
|
||||
MASTER_SITES= ${MASTER_SITE_KDE}
|
||||
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
|
||||
|
@ -16,30 +16,37 @@ DIST_SUBDIR= KDE
|
|||
MAINTAINER?= kde@FreeBSD.org
|
||||
|
||||
USE_KDELIBS_VER=3
|
||||
USE_BZIP2= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GMAKE= yes
|
||||
MAN1= efax.1 efix.1 fax.1
|
||||
PREFIX= ${KDE_PREFIX}
|
||||
KDE_BUILD_PLIST=yes
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
INSTALLS_SHLIB= yes
|
||||
LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3
|
||||
|
||||
#klaptop doesn't like alpha because alpha doesn't support apm
|
||||
.if ${MACHINE_ARCH} == "alpha"
|
||||
WITHOUT_KLAPTOP =yes
|
||||
.endif # ${MACHINE_ARCH} == "alpha"
|
||||
|
||||
.if defined(WITHOUT_KLAPTOP)
|
||||
DO_NOT_COMPILE+=klaptopdaemon
|
||||
PLIST_SUB+= ALPHA_NA="@comment "
|
||||
.else
|
||||
PLIST_SUB+= ALPHA_NA=""
|
||||
.endif
|
||||
PLIST_APPEND+= plist.klaptop
|
||||
.endif # defined(WITHOUT_KLAPTOP)
|
||||
|
||||
# kfloppy is a mostly broken, non-standard, linux-centric pain...
|
||||
.if !defined(WITH_KFLOPPY)
|
||||
DO_NOT_COMPILE+=kfloppy
|
||||
PLIST_SUB+= KFLOPPY="@comment "
|
||||
.else
|
||||
PLIST_SUB+= KFLOPPY=""
|
||||
.endif
|
||||
PLIST_APPEND+= plist.kfloppy
|
||||
.endif # !defined(WITH_KFLOPPY)
|
||||
|
||||
.if defined(DO_NOT_COMPILE)
|
||||
CONFIGURE_ENV+= DO_NOT_COMPILE="${DO_NOT_COMPILE}"
|
||||
.endif
|
||||
.endif # defined(DO_NOT_COMPILE)
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (KDE/kdeutils-3.0.4.tar.bz2) = e34ccb00b25f04f0a27474fa17d68e77
|
||||
MD5 (KDE/kdeutils-3.1.tar.bz2) = 81e2916ba0fa865053aff858982c040e
|
||||
|
|
247
archivers/ark/files/plist.base
Normal file
247
archivers/ark/files/plist.base
Normal file
|
@ -0,0 +1,247 @@
|
|||
bin/ark
|
||||
bin/kcalc
|
||||
bin/kcharselect
|
||||
bin/kdepasswd
|
||||
bin/kdessh
|
||||
bin/kdf
|
||||
bin/kedit
|
||||
bin/khexedit
|
||||
bin/kjots
|
||||
bin/ksim
|
||||
bin/ktimer
|
||||
bin/kwikdisk
|
||||
include/kmultiformlistbox.h
|
||||
include/kmultiformlistboxentry.h
|
||||
include/kmultiformlistboxfactory.h
|
||||
include/ksim/chart.h
|
||||
include/ksim/common.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/kcalc.la
|
||||
lib/kcalc.so
|
||||
lib/kde3/kcharselect_panelapplet.la
|
||||
lib/kde3/kcharselect_panelapplet.so
|
||||
lib/kde3/kcm_kdf.la
|
||||
lib/kde3/kcm_kdf.so
|
||||
lib/kde3/ksim_cpu.la
|
||||
lib/kde3/ksim_cpu.so
|
||||
lib/kde3/ksim_disk.la
|
||||
lib/kde3/ksim_disk.so
|
||||
lib/kde3/ksim_filesystem.la
|
||||
lib/kde3/ksim_filesystem.so
|
||||
lib/kde3/ksim_net.la
|
||||
lib/kde3/ksim_net.so
|
||||
lib/kde3/ksim_sensors.la
|
||||
lib/kde3/ksim_sensors.so
|
||||
lib/kde3/libkregexpeditorgui.la
|
||||
lib/kde3/libkregexpeditorgui.so
|
||||
lib/kedit.la
|
||||
lib/kedit.so
|
||||
lib/ksim.la
|
||||
lib/ksim.so
|
||||
lib/libarkpart.la
|
||||
lib/libarkpart.so
|
||||
lib/libksimcore.la
|
||||
lib/libksimcore.so
|
||||
lib/libksimcore.so.1
|
||||
share/applnk/Editors/KEdit.desktop
|
||||
share/applnk/Settings/Information/kcmdf.desktop
|
||||
share/applnk/Settingsmenu/kdepasswd.desktop
|
||||
share/applnk/System/More/kdf.desktop
|
||||
share/applnk/System/More/ksim.desktop
|
||||
share/applnk/System/More/kwikdisk.desktop
|
||||
share/applnk/System/kdf.desktop
|
||||
share/applnk/System/kwikdisk.desktop
|
||||
share/applnk/Utilities/KCharSelect.desktop
|
||||
share/applnk/Utilities/Kjots.desktop
|
||||
share/applnk/Utilities/More/KCharSelect.desktop
|
||||
share/applnk/Utilities/More/Kjots.desktop
|
||||
share/applnk/Utilities/More/khexedit.desktop
|
||||
share/applnk/Utilities/More/ktimer.desktop
|
||||
share/applnk/Utilities/ark.desktop
|
||||
share/applnk/Utilities/kcalc.desktop
|
||||
share/applnk/Utilities/kdepasswd.desktop
|
||||
share/applnk/Utilities/khexedit.desktop
|
||||
share/applnk/Utilities/ktimer.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_help.png
|
||||
share/apps/ark/icons/crystalsvg/22x22/actions/ark_new.png
|
||||
share/apps/ark/icons/crystalsvg/22x22/actions/ark_open.png
|
||||
share/apps/ark/icons/crystalsvg/22x22/actions/ark_options.png
|
||||
share/apps/ark/icons/crystalsvg/22x22/actions/ark_selectall.png
|
||||
share/apps/ark/icons/crystalsvg/22x22/actions/ark_view.png
|
||||
share/apps/kdf/pics/delete.png
|
||||
share/apps/kdf/pics/tick.png
|
||||
share/apps/kedit/keditui.rc
|
||||
share/apps/khexedit/toolbar/hexdrag.png
|
||||
share/apps/khexedit/toolbar/hexmask.png
|
||||
share/apps/khexedit/toolbar/hexwrite.png
|
||||
share/apps/kicker/applets/kcharselectapplet.desktop
|
||||
share/apps/kjots/pics/filedel.png
|
||||
share/apps/konqueror/servicemenus/arkservicemenu.desktop
|
||||
share/apps/kregexpeditor/pics/altn.png
|
||||
share/apps/kregexpeditor/pics/anychar.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/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/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/config/ksimrc
|
||||
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/doc/HTML/en/ark/common
|
||||
share/doc/HTML/en/ark/index.cache.bz2
|
||||
share/doc/HTML/en/ark/index.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/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
|
||||
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/icons/crystalsvg/128x128/apps/ark.png
|
||||
share/icons/crystalsvg/128x128/apps/kdf.png
|
||||
share/icons/crystalsvg/16x16/apps/ark.png
|
||||
share/icons/crystalsvg/16x16/apps/kcalc.png
|
||||
share/icons/crystalsvg/16x16/apps/kcharselect.png
|
||||
share/icons/crystalsvg/16x16/apps/kcmdf.png
|
||||
share/icons/crystalsvg/16x16/apps/kdf.png
|
||||
share/icons/crystalsvg/16x16/apps/kedit.png
|
||||
share/icons/crystalsvg/16x16/apps/khexedit.png
|
||||
share/icons/crystalsvg/16x16/apps/kjots.png
|
||||
share/icons/crystalsvg/16x16/apps/ksim.png
|
||||
share/icons/crystalsvg/16x16/apps/kwikdisk.png
|
||||
share/icons/crystalsvg/16x16/devices/ksim_cpu.png
|
||||
share/icons/crystalsvg/32x32/apps/ark.png
|
||||
share/icons/crystalsvg/32x32/apps/kcalc.png
|
||||
share/icons/crystalsvg/32x32/apps/kcmdf.png
|
||||
share/icons/crystalsvg/32x32/apps/kdf.png
|
||||
share/icons/crystalsvg/32x32/apps/kedit.png
|
||||
share/icons/crystalsvg/32x32/apps/khexedit.png
|
||||
share/icons/crystalsvg/32x32/apps/kjots.png
|
||||
share/icons/crystalsvg/32x32/apps/ksim.png
|
||||
share/icons/crystalsvg/32x32/apps/kwikdisk.png
|
||||
share/icons/crystalsvg/48x48/apps/ark.png
|
||||
share/icons/crystalsvg/48x48/apps/kcalc.png
|
||||
share/icons/crystalsvg/48x48/apps/kcharselect.png
|
||||
share/icons/crystalsvg/48x48/apps/kdf.png
|
||||
share/icons/crystalsvg/48x48/apps/kedit.png
|
||||
share/icons/crystalsvg/48x48/apps/khexedit.png
|
||||
share/icons/crystalsvg/48x48/apps/kjots.png
|
||||
share/icons/crystalsvg/48x48/apps/ksim.png
|
||||
share/icons/crystalsvg/64x64/apps/ark.png
|
||||
share/icons/crystalsvg/64x64/apps/kdf.png
|
||||
share/services/ark_part.desktop
|
||||
share/services/kregexpeditorgui.desktop
|
||||
@exec /bin/mkdir -p %D/share/apps/kcalc/pics
|
78
archivers/ark/files/plist.base.rm
Normal file
78
archivers/ark/files/plist.base.rm
Normal file
|
@ -0,0 +1,78 @@
|
|||
@unexec /bin/rmdir %D/share/apps/kcalc/pics || true
|
||||
@dirrm share/services
|
||||
@dirrm share/icons/crystalsvg/64x64/apps
|
||||
@dirrm share/icons/crystalsvg/64x64
|
||||
@dirrm share/icons/crystalsvg/48x48/apps
|
||||
@dirrm share/icons/crystalsvg/48x48
|
||||
@dirrm share/icons/crystalsvg/32x32/apps
|
||||
@dirrm share/icons/crystalsvg/32x32
|
||||
@dirrm share/icons/crystalsvg/16x16/devices
|
||||
@dirrm share/icons/crystalsvg/16x16/apps
|
||||
@dirrm share/icons/crystalsvg/16x16
|
||||
@dirrm share/icons/crystalsvg/128x128/apps
|
||||
@dirrm share/icons/crystalsvg/128x128
|
||||
@dirrm share/icons/crystalsvg
|
||||
@dirrm share/icons
|
||||
@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/kinfocenter
|
||||
@dirrm share/doc/HTML/en/khexedit
|
||||
@dirrm share/doc/HTML/en/kfloppy
|
||||
@dirrm share/doc/HTML/en/kedit
|
||||
@dirrm share/doc/HTML/en/kdf
|
||||
@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/kcontrol
|
||||
@dirrm share/doc/HTML/en/kcharselect
|
||||
@dirrm share/doc/HTML/en/kcalc
|
||||
@dirrm share/doc/HTML/en/ark
|
||||
@dirrm share/doc/HTML/en/KRegExpEditor
|
||||
@dirrm share/doc/HTML/en
|
||||
@dirrm share/doc/HTML
|
||||
@dirrm share/doc
|
||||
@dirrm share/config
|
||||
@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/konqueror/servicemenus
|
||||
@dirrm share/apps/konqueror
|
||||
@dirrm share/apps/kjots/pics
|
||||
@dirrm share/apps/kjots
|
||||
@dirrm share/apps/kicker/applets
|
||||
@dirrm share/apps/kicker
|
||||
@dirrm share/apps/khexedit/toolbar
|
||||
@dirrm share/apps/khexedit
|
||||
@dirrm share/apps/kedit
|
||||
@dirrm share/apps/kdf/pics
|
||||
@dirrm share/apps/kdf
|
||||
@dirrm share/apps/kcalc
|
||||
@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 share/apps
|
||||
@dirrm share/applnk/Utilities/More
|
||||
@dirrm share/applnk/Utilities
|
||||
@dirrm share/applnk/System/More
|
||||
@dirrm share/applnk/System
|
||||
@dirrm share/applnk/Settingsmenu
|
||||
@dirrm share/applnk/Settings/Information
|
||||
@dirrm share/applnk/Settings
|
||||
@dirrm share/applnk/Editors
|
||||
@dirrm share/applnk
|
||||
@dirrm lib/kde3
|
||||
@dirrm include/ksim
|
7
archivers/ark/files/plist.kfloppy
Normal file
7
archivers/ark/files/plist.kfloppy
Normal file
|
@ -0,0 +1,7 @@
|
|||
bin/kfloppy
|
||||
share/applnk/Utilities/KFloppy.desktop
|
||||
share/icons/crystalsvg/128x128/apps/kfloppy.png
|
||||
share/icons/crystalsvg/16x16/apps/kfloppy.png
|
||||
share/icons/crystalsvg/32x32/apps/kfloppy.png
|
||||
share/icons/crystalsvg/48x48/apps/kfloppy.png
|
||||
share/icons/crystalsvg/64x64/apps/kfloppy.png
|
22
archivers/ark/files/plist.klaptop
Normal file
22
archivers/ark/files/plist.klaptop
Normal file
|
@ -0,0 +1,22 @@
|
|||
bin/klaptopdaemon
|
||||
lib/kde3/kcm_laptop.la
|
||||
lib/kde3/kcm_laptop.so
|
||||
lib/klaptopdaemon.la
|
||||
lib/klaptopdaemon.so
|
||||
share/applnk/Settings/Information/pcmcia.desktop
|
||||
share/applnk/Settings/PowerControl/laptop.desktop
|
||||
share/apps/klaptopdaemon/icons/crystalsvg/16x16/actions/laptop_charge.png
|
||||
share/apps/klaptopdaemon/icons/crystalsvg/16x16/actions/laptop_nobattery.png
|
||||
share/apps/klaptopdaemon/icons/crystalsvg/16x16/actions/laptop_nocharge.png
|
||||
share/apps/klaptopdaemon/icons/crystalsvg/16x16/actions/power.png
|
||||
share/apps/klaptopdaemon/icons/crystalsvg/32x32/actions/power.png
|
||||
share/icons/crystalsvg/128x128/apps/laptop_battery.png
|
||||
share/icons/crystalsvg/16x16/apps/klaptopdaemon.png
|
||||
share/icons/crystalsvg/16x16/apps/laptop_battery.png
|
||||
share/icons/crystalsvg/16x16/apps/laptop_pcmcia.png
|
||||
share/icons/crystalsvg/32x32/apps/laptop_battery.png
|
||||
share/icons/crystalsvg/32x32/apps/laptop_pcmcia.png
|
||||
share/icons/crystalsvg/48x48/apps/laptop_battery.png
|
||||
share/icons/crystalsvg/48x48/apps/laptop_pcmcia.png
|
||||
share/icons/crystalsvg/64x64/apps/laptop_battery.png
|
||||
share/services/klaptopdaemon.desktop
|
8
archivers/ark/files/plist.klaptop.rm
Normal file
8
archivers/ark/files/plist.klaptop.rm
Normal file
|
@ -0,0 +1,8 @@
|
|||
@dirrm share/apps/klaptopdaemon/icons/crystalsvg/32x32/actions
|
||||
@dirrm share/apps/klaptopdaemon/icons/crystalsvg/32x32
|
||||
@dirrm share/apps/klaptopdaemon/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/klaptopdaemon/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/klaptopdaemon/icons/crystalsvg
|
||||
@dirrm share/apps/klaptopdaemon/icons
|
||||
@dirrm share/apps/klaptopdaemon
|
||||
@dirrm share/applnk/Settings/PowerControl
|
|
@ -1,283 +0,0 @@
|
|||
bin/ark
|
||||
bin/efax
|
||||
bin/efix
|
||||
bin/fax
|
||||
bin/kcalc
|
||||
bin/kcharselect
|
||||
bin/kdepasswd
|
||||
bin/kdessh
|
||||
bin/kdf
|
||||
bin/kedit
|
||||
bin/khexedit
|
||||
bin/kjots
|
||||
%%ALPHA_NA%%bin/klaptopdaemon
|
||||
bin/kljettool
|
||||
bin/klpq
|
||||
bin/klprfax
|
||||
bin/klprfax_filter
|
||||
bin/klprfax_lpd
|
||||
bin/ktimer
|
||||
bin/kwikdisk
|
||||
include/kmultiformlistbox.h
|
||||
include/kmultiformlistboxentry.h
|
||||
include/kmultiformlistboxfactory.h
|
||||
include/kwidgetstreamer.h
|
||||
lib/kcalc.la
|
||||
lib/kcalc.so
|
||||
lib/kde3/kcharselectapplet.la
|
||||
lib/kde3/kcharselectapplet.so
|
||||
lib/kde3/kcharselectapplet.so.1
|
||||
lib/kde3/kcm_kdf.la
|
||||
lib/kde3/kcm_kdf.so
|
||||
%%ALPHA_NA%%lib/kde3/kcm_laptop.la
|
||||
%%ALPHA_NA%%lib/kde3/kcm_laptop.so
|
||||
lib/kde3/libkregexpeditorgui.la
|
||||
lib/kde3/libkregexpeditorgui.so
|
||||
lib/kedit.la
|
||||
lib/kedit.so
|
||||
%%ALPHA_NA%%lib/klaptopdaemon.la
|
||||
%%ALPHA_NA%%lib/klaptopdaemon.so
|
||||
lib/libark.la
|
||||
lib/libark.so
|
||||
lib/libark.so.1
|
||||
share/applnk/Editors/KEdit.desktop
|
||||
share/applnk/Settings/Information/kcmdf.desktop
|
||||
%%ALPHA_NA%%share/applnk/Settings/Information/pcmcia.desktop
|
||||
%%ALPHA_NA%%share/applnk/Settings/PowerControl/battery.desktop
|
||||
%%ALPHA_NA%%share/applnk/Settings/PowerControl/bwarning.desktop
|
||||
%%ALPHA_NA%%share/applnk/Settings/PowerControl/cwarning.desktop
|
||||
%%ALPHA_NA%%share/applnk/Settings/PowerControl/power.desktop
|
||||
share/applnk/System/kdf.desktop
|
||||
share/applnk/System/kwikdisk.desktop
|
||||
share/applnk/Utilities/KCharSelect.desktop
|
||||
share/applnk/Utilities/KLJetTool.desktop
|
||||
share/applnk/Utilities/KLpq.desktop
|
||||
share/applnk/Utilities/Kjots.desktop
|
||||
share/applnk/Utilities/ark.desktop
|
||||
share/applnk/Utilities/kcalc.desktop
|
||||
share/applnk/Utilities/kdepasswd.desktop
|
||||
share/applnk/Utilities/khexedit.desktop
|
||||
share/applnk/Utilities/klprfax.desktop
|
||||
share/applnk/Utilities/ktimer.desktop
|
||||
share/apps/ark/ark_part.rc
|
||||
share/apps/ark/arkui.rc
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_adddir.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_addfile.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_delete.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_extract.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_help.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_new.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_open.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_options.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_selectall.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_view.png
|
||||
share/apps/kdf/pics/delete.png
|
||||
share/apps/kdf/pics/tick.png
|
||||
share/apps/kedit/keditui.rc
|
||||
share/apps/khexedit/toolbar/hexdrag.png
|
||||
share/apps/khexedit/toolbar/hexmask.png
|
||||
share/apps/khexedit/toolbar/hexwrite.png
|
||||
share/apps/kicker/applets/kcharselectapplet.desktop
|
||||
share/apps/kjots/pics/filedel.png
|
||||
%%ALPHA_NA%%share/apps/klaptopdaemon/icons/hicolor/16x16/actions/laptop_charge.png
|
||||
%%ALPHA_NA%%share/apps/klaptopdaemon/icons/hicolor/16x16/actions/laptop_nobattery.png
|
||||
%%ALPHA_NA%%share/apps/klaptopdaemon/icons/hicolor/16x16/actions/laptop_nocharge.png
|
||||
%%ALPHA_NA%%share/apps/klaptopdaemon/icons/hicolor/16x16/actions/power.png
|
||||
%%ALPHA_NA%%share/apps/klaptopdaemon/icons/hicolor/32x32/actions/power.png
|
||||
share/apps/kljettool/pics/kljetlogo.png
|
||||
share/apps/konqueror/servicemenus/arkservicemenu.desktop
|
||||
share/apps/kregexpeditor/pics/altn.png
|
||||
share/apps/kregexpeditor/pics/anychar.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/wordboundary.png
|
||||
share/apps/kregexpeditor/predefined/general/anything.regexp
|
||||
share/apps/kregexpeditor/predefined/general/spaces.regexp
|
||||
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/doc/HTML/en/ark/common
|
||||
share/doc/HTML/en/ark/index.cache.bz2
|
||||
share/doc/HTML/en/ark/index.docbook
|
||||
share/doc/HTML/en/kab/common
|
||||
share/doc/HTML/en/kab/index.cache.bz2
|
||||
share/doc/HTML/en/kab/index.docbook
|
||||
share/doc/HTML/en/kab/kab-edit.png
|
||||
share/doc/HTML/en/kab/kab-using.png
|
||||
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/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
|
||||
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/kjots/common
|
||||
share/doc/HTML/en/kjots/index.cache.bz2
|
||||
share/doc/HTML/en/kjots/index.docbook
|
||||
share/doc/HTML/en/kljettool/README
|
||||
share/doc/HTML/en/kljettool/common
|
||||
share/doc/HTML/en/kljettool/djcdoscommands.txt
|
||||
share/doc/HTML/en/kljettool/filter
|
||||
share/doc/HTML/en/kljettool/hp690c.zip
|
||||
share/doc/HTML/en/kljettool/index.cache.bz2
|
||||
share/doc/HTML/en/kljettool/index.docbook
|
||||
share/doc/HTML/en/kljettool/magic
|
||||
share/doc/HTML/en/kljettool/screenshot.png
|
||||
share/doc/HTML/en/klpq/common
|
||||
share/doc/HTML/en/klpq/index.cache.bz2
|
||||
share/doc/HTML/en/klpq/index.docbook
|
||||
share/doc/HTML/en/klprfax/common
|
||||
share/doc/HTML/en/klprfax/index.cache.bz2
|
||||
share/doc/HTML/en/klprfax/index.docbook
|
||||
share/icons/hicolor/16x16/apps/ark.png
|
||||
share/icons/hicolor/16x16/apps/kcalc.png
|
||||
share/icons/hicolor/16x16/apps/kcharselect.png
|
||||
share/icons/hicolor/16x16/apps/kcmdf.png
|
||||
share/icons/hicolor/16x16/apps/kdf.png
|
||||
share/icons/hicolor/16x16/apps/kedit.png
|
||||
share/icons/hicolor/16x16/apps/khexedit.png
|
||||
share/icons/hicolor/16x16/apps/kjots.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/16x16/apps/klaptopdaemon.png
|
||||
share/icons/hicolor/16x16/apps/kljettool.png
|
||||
share/icons/hicolor/16x16/apps/klpq.png
|
||||
share/icons/hicolor/16x16/apps/klprfax.png
|
||||
share/icons/hicolor/16x16/apps/kwikdisk.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/16x16/apps/laptop_battery.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/16x16/apps/laptop_pcmcia.png
|
||||
share/icons/hicolor/32x32/apps/ark.png
|
||||
share/icons/hicolor/32x32/apps/kcalc.png
|
||||
share/icons/hicolor/32x32/apps/kcmdf.png
|
||||
share/icons/hicolor/32x32/apps/kdf.png
|
||||
share/icons/hicolor/32x32/apps/kedit.png
|
||||
share/icons/hicolor/32x32/apps/khexedit.png
|
||||
share/icons/hicolor/32x32/apps/kjots.png
|
||||
share/icons/hicolor/32x32/apps/kljettool.png
|
||||
share/icons/hicolor/32x32/apps/klpq.png
|
||||
share/icons/hicolor/32x32/apps/klprfax.png
|
||||
share/icons/hicolor/32x32/apps/kwikdisk.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/32x32/apps/laptop_battery.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/32x32/apps/laptop_pcmcia.png
|
||||
share/icons/hicolor/48x48/apps/ark.png
|
||||
share/icons/hicolor/48x48/apps/kcalc.png
|
||||
share/icons/hicolor/48x48/apps/kcharselect.png
|
||||
share/icons/hicolor/48x48/apps/kedit.png
|
||||
share/icons/hicolor/48x48/apps/khexedit.png
|
||||
share/icons/hicolor/48x48/apps/kjots.png
|
||||
share/icons/hicolor/48x48/apps/kljettool.png
|
||||
share/icons/hicolor/48x48/apps/klpq.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/48x48/apps/laptop_battery.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/48x48/apps/laptop_pcmcia.png
|
||||
share/icons/locolor/16x16/apps/klprfax.png
|
||||
share/icons/locolor/32x32/apps/klprfax.png
|
||||
share/services/arkpart.desktop
|
||||
%%ALPHA_NA%%share/services/klaptopdaemon.desktop
|
||||
share/services/kregexpeditorgui.desktop
|
||||
@exec /bin/mkdir -p %D/share/apps/kcalc/pics
|
||||
@dirrm share/icons/locolor/32x32/apps
|
||||
@dirrm share/icons/locolor/32x32
|
||||
@dirrm share/icons/locolor/16x16/apps
|
||||
@dirrm share/icons/locolor/16x16
|
||||
@dirrm share/icons/locolor
|
||||
@dirrm share/icons/hicolor/48x48/apps
|
||||
@dirrm share/icons/hicolor/48x48
|
||||
@dirrm share/icons/hicolor/32x32/apps
|
||||
@dirrm share/icons/hicolor/32x32
|
||||
@dirrm share/icons/hicolor/16x16/apps
|
||||
@dirrm share/icons/hicolor/16x16
|
||||
@dirrm share/icons/hicolor
|
||||
@dirrm share/doc/HTML/en/klprfax
|
||||
@dirrm share/doc/HTML/en/klpq
|
||||
@dirrm share/doc/HTML/en/kljettool
|
||||
@dirrm share/doc/HTML/en/kjots
|
||||
@dirrm share/doc/HTML/en/khexedit
|
||||
@dirrm share/doc/HTML/en/kfloppy
|
||||
@dirrm share/doc/HTML/en/kedit
|
||||
@dirrm share/doc/HTML/en/kdf
|
||||
@dirrm share/doc/HTML/en/kcalc
|
||||
@dirrm share/doc/HTML/en/kab
|
||||
@dirrm share/doc/HTML/en/ark
|
||||
@dirrm share/doc/HTML/en/KRegExpEditor
|
||||
@dirrm share/doc/HTML/en
|
||||
@dirrm share/doc/HTML
|
||||
@dirrm share/apps/kregexpeditor/predefined/general
|
||||
@dirrm share/apps/kregexpeditor/predefined
|
||||
@dirrm share/apps/kregexpeditor/pics
|
||||
@dirrm share/apps/kregexpeditor
|
||||
@dirrm share/apps/konqueror/servicemenus
|
||||
@dirrm share/apps/konqueror
|
||||
@dirrm share/apps/kljettool/pics
|
||||
@dirrm share/apps/kljettool
|
||||
@dirrm share/apps/klaptopdaemon/icons/hicolor/32x32/actions
|
||||
@dirrm share/apps/klaptopdaemon/icons/hicolor/32x32
|
||||
@dirrm share/apps/klaptopdaemon/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/klaptopdaemon/icons/hicolor/16x16
|
||||
@dirrm share/apps/klaptopdaemon/icons/hicolor
|
||||
@dirrm share/apps/klaptopdaemon/icons
|
||||
@dirrm share/apps/klaptopdaemon
|
||||
@dirrm share/apps/kjots/pics
|
||||
@dirrm share/apps/kjots
|
||||
@dirrm share/apps/kicker/applets
|
||||
@dirrm share/apps/kicker
|
||||
@dirrm share/apps/khexedit/toolbar
|
||||
@dirrm share/apps/khexedit
|
||||
@dirrm share/apps/kedit
|
||||
@dirrm share/apps/kdf/pics
|
||||
@dirrm share/apps/kdf
|
||||
@dirrm share/apps/kcalc/pics
|
||||
@dirrm share/apps/kcalc
|
||||
@dirrm share/apps/ark/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/ark/icons/hicolor/22x22
|
||||
@dirrm share/apps/ark/icons/hicolor
|
||||
@dirrm share/apps/ark/icons
|
||||
@dirrm share/apps/ark
|
||||
@dirrm share/applnk/Utilities
|
||||
@dirrm share/applnk/System
|
||||
@dirrm share/applnk/Settings/PowerControl
|
||||
@dirrm share/applnk/Settings/Information
|
||||
@dirrm share/applnk/Settings
|
||||
@dirrm share/applnk/Editors
|
|
@ -1,3 +1,4 @@
|
|||
# -*-mode: makefile-*-
|
||||
# New ports collection makefile for: aRts
|
||||
# Date created: 18 February 2002
|
||||
# Whom: will@cvs.kde.org
|
||||
|
@ -6,7 +7,8 @@
|
|||
#
|
||||
|
||||
PORTNAME= arts
|
||||
PORTVERSION= ${KDE_VERSION:S/3.0/1.0/g}
|
||||
PORTVERSION= 1.1
|
||||
PORTREVISION= 0
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= audio kde
|
||||
MASTER_SITES= ${MASTER_SITE_KDE}
|
||||
|
@ -17,16 +19,12 @@ MAINTAINER= kde@FreeBSD.org
|
|||
|
||||
LIB_DEPENDS= audiofile.0:${PORTSDIR}/audio/libaudiofile
|
||||
|
||||
KDE_PATCHFROM_VER= ${KDE_ORIGVER:S/3.0/1.0/g}
|
||||
KDE_PATCHTO_VER= ${KDE_VERSION:S/3.0/1.0/g}
|
||||
#WRKSRC= ${WRKDIR}/arts
|
||||
USE_BZIP2= yes
|
||||
USE_QT_VER= 3
|
||||
USE_BZIP2= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GMAKE= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
QTCPPFLAGS+= -L${LOCALBASE}/lib
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (KDE/arts-1.0.4.tar.bz2) = a88c1d7f2eb8d702045400c37b6d582e
|
||||
MD5 (KDE/arts-1.1.tar.bz2) = c1c34063de7df4ac6cae0984803d34e1
|
||||
|
|
|
@ -7,6 +7,7 @@ bin/artsrec
|
|||
bin/artsshell
|
||||
bin/artswrapper
|
||||
bin/mcopidl
|
||||
bin/testdhandle
|
||||
include/arts/anyref.h
|
||||
include/arts/artsflow.h
|
||||
include/arts/artsflow.idl
|
||||
|
@ -35,6 +36,29 @@ include/arts/extensionloader.h
|
|||
include/arts/factory.h
|
||||
include/arts/fft.h
|
||||
include/arts/flowsystem.h
|
||||
include/arts/gsl/gslartsthreads.h
|
||||
include/arts/gsl/gslcommon.h
|
||||
include/arts/gsl/gslconfig.h
|
||||
include/arts/gsl/gslconvert.h
|
||||
include/arts/gsl/gsldatacache.h
|
||||
include/arts/gsl/gsldatahandle-mad.h
|
||||
include/arts/gsl/gsldatahandle-vorbis.h
|
||||
include/arts/gsl/gsldatahandle.h
|
||||
include/arts/gsl/gsldatautils.h
|
||||
include/arts/gsl/gsldefs.h
|
||||
include/arts/gsl/gslengine.h
|
||||
include/arts/gsl/gslfft.h
|
||||
include/arts/gsl/gslfilter.h
|
||||
include/arts/gsl/gslglib.h
|
||||
include/arts/gsl/gslieee754.h
|
||||
include/arts/gsl/gslloader.h
|
||||
include/arts/gsl/gslmagic.h
|
||||
include/arts/gsl/gslmath.h
|
||||
include/arts/gsl/gsloscillator.h
|
||||
include/arts/gsl/gslosctable.h
|
||||
include/arts/gsl/gslsignal.h
|
||||
include/arts/gsl/gslwavechunk.h
|
||||
include/arts/gsl/gslwaveosc.h
|
||||
include/arts/idlfilereg.h
|
||||
include/arts/ifacerepo_impl.h
|
||||
include/arts/iomanager.h
|
||||
|
@ -83,6 +107,9 @@ lib/libartsflow.so.1
|
|||
lib/libartsflow_idl.la
|
||||
lib/libartsflow_idl.so
|
||||
lib/libartsflow_idl.so.1
|
||||
lib/libartsgslplayobject.la
|
||||
lib/libartsgslplayobject.so
|
||||
lib/libartsgslplayobject.so.0
|
||||
lib/libartswavplayobject.la
|
||||
lib/libartswavplayobject.so
|
||||
lib/libartswavplayobject.so.0
|
||||
|
@ -107,7 +134,9 @@ lib/libsoundserver_idl.so.1
|
|||
lib/libx11globalcomm.la
|
||||
lib/libx11globalcomm.so
|
||||
lib/libx11globalcomm.so.1
|
||||
lib/mcop/Arts/DataHandlePlay.mcopclass
|
||||
lib/mcop/Arts/FileInputStream.mcopclass
|
||||
lib/mcop/Arts/GSLPlayObject.mcopclass
|
||||
lib/mcop/Arts/Synth_ADD.mcopclass
|
||||
lib/mcop/Arts/Synth_AMAN_PLAY.mcopclass
|
||||
lib/mcop/Arts/Synth_AMAN_RECORD.mcopclass
|
||||
|
@ -121,6 +150,7 @@ lib/mcop/Arts/Synth_PLAY_WAV.mcopclass
|
|||
lib/mcop/Arts/Synth_RECORD.mcopclass
|
||||
lib/mcop/Arts/Synth_WAVE_SIN.mcopclass
|
||||
lib/mcop/Arts/WavPlayObject.mcopclass
|
||||
lib/mcop/Arts/WaveDataHandle.mcopclass
|
||||
lib/mcop/Arts/X11GlobalComm.mcopclass
|
||||
lib/mcop/artsflow.mcopclass
|
||||
lib/mcop/artsflow.mcoptype
|
||||
|
@ -133,4 +163,5 @@ lib/mcop/x11globalcomm.mcoptype
|
|||
@dirrm lib/mcop/Arts
|
||||
@dirrm lib/mcop
|
||||
@dirrm include/artsc
|
||||
@dirrm include/arts/gsl
|
||||
@dirrm include/arts
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
PORTNAME= kdeutils
|
||||
PORTVERSION= ${KDE_VERSION}
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 0
|
||||
CATEGORIES?= misc kde
|
||||
MASTER_SITES= ${MASTER_SITE_KDE}
|
||||
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
|
||||
|
@ -16,30 +16,37 @@ DIST_SUBDIR= KDE
|
|||
MAINTAINER?= kde@FreeBSD.org
|
||||
|
||||
USE_KDELIBS_VER=3
|
||||
USE_BZIP2= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GMAKE= yes
|
||||
MAN1= efax.1 efix.1 fax.1
|
||||
PREFIX= ${KDE_PREFIX}
|
||||
KDE_BUILD_PLIST=yes
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
INSTALLS_SHLIB= yes
|
||||
LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3
|
||||
|
||||
#klaptop doesn't like alpha because alpha doesn't support apm
|
||||
.if ${MACHINE_ARCH} == "alpha"
|
||||
WITHOUT_KLAPTOP =yes
|
||||
.endif # ${MACHINE_ARCH} == "alpha"
|
||||
|
||||
.if defined(WITHOUT_KLAPTOP)
|
||||
DO_NOT_COMPILE+=klaptopdaemon
|
||||
PLIST_SUB+= ALPHA_NA="@comment "
|
||||
.else
|
||||
PLIST_SUB+= ALPHA_NA=""
|
||||
.endif
|
||||
PLIST_APPEND+= plist.klaptop
|
||||
.endif # defined(WITHOUT_KLAPTOP)
|
||||
|
||||
# kfloppy is a mostly broken, non-standard, linux-centric pain...
|
||||
.if !defined(WITH_KFLOPPY)
|
||||
DO_NOT_COMPILE+=kfloppy
|
||||
PLIST_SUB+= KFLOPPY="@comment "
|
||||
.else
|
||||
PLIST_SUB+= KFLOPPY=""
|
||||
.endif
|
||||
PLIST_APPEND+= plist.kfloppy
|
||||
.endif # !defined(WITH_KFLOPPY)
|
||||
|
||||
.if defined(DO_NOT_COMPILE)
|
||||
CONFIGURE_ENV+= DO_NOT_COMPILE="${DO_NOT_COMPILE}"
|
||||
.endif
|
||||
.endif # defined(DO_NOT_COMPILE)
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (KDE/kdeutils-3.0.4.tar.bz2) = e34ccb00b25f04f0a27474fa17d68e77
|
||||
MD5 (KDE/kdeutils-3.1.tar.bz2) = 81e2916ba0fa865053aff858982c040e
|
||||
|
|
247
comms/kremotecontrol/files/plist.base
Normal file
247
comms/kremotecontrol/files/plist.base
Normal file
|
@ -0,0 +1,247 @@
|
|||
bin/ark
|
||||
bin/kcalc
|
||||
bin/kcharselect
|
||||
bin/kdepasswd
|
||||
bin/kdessh
|
||||
bin/kdf
|
||||
bin/kedit
|
||||
bin/khexedit
|
||||
bin/kjots
|
||||
bin/ksim
|
||||
bin/ktimer
|
||||
bin/kwikdisk
|
||||
include/kmultiformlistbox.h
|
||||
include/kmultiformlistboxentry.h
|
||||
include/kmultiformlistboxfactory.h
|
||||
include/ksim/chart.h
|
||||
include/ksim/common.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/kcalc.la
|
||||
lib/kcalc.so
|
||||
lib/kde3/kcharselect_panelapplet.la
|
||||
lib/kde3/kcharselect_panelapplet.so
|
||||
lib/kde3/kcm_kdf.la
|
||||
lib/kde3/kcm_kdf.so
|
||||
lib/kde3/ksim_cpu.la
|
||||
lib/kde3/ksim_cpu.so
|
||||
lib/kde3/ksim_disk.la
|
||||
lib/kde3/ksim_disk.so
|
||||
lib/kde3/ksim_filesystem.la
|
||||
lib/kde3/ksim_filesystem.so
|
||||
lib/kde3/ksim_net.la
|
||||
lib/kde3/ksim_net.so
|
||||
lib/kde3/ksim_sensors.la
|
||||
lib/kde3/ksim_sensors.so
|
||||
lib/kde3/libkregexpeditorgui.la
|
||||
lib/kde3/libkregexpeditorgui.so
|
||||
lib/kedit.la
|
||||
lib/kedit.so
|
||||
lib/ksim.la
|
||||
lib/ksim.so
|
||||
lib/libarkpart.la
|
||||
lib/libarkpart.so
|
||||
lib/libksimcore.la
|
||||
lib/libksimcore.so
|
||||
lib/libksimcore.so.1
|
||||
share/applnk/Editors/KEdit.desktop
|
||||
share/applnk/Settings/Information/kcmdf.desktop
|
||||
share/applnk/Settingsmenu/kdepasswd.desktop
|
||||
share/applnk/System/More/kdf.desktop
|
||||
share/applnk/System/More/ksim.desktop
|
||||
share/applnk/System/More/kwikdisk.desktop
|
||||
share/applnk/System/kdf.desktop
|
||||
share/applnk/System/kwikdisk.desktop
|
||||
share/applnk/Utilities/KCharSelect.desktop
|
||||
share/applnk/Utilities/Kjots.desktop
|
||||
share/applnk/Utilities/More/KCharSelect.desktop
|
||||
share/applnk/Utilities/More/Kjots.desktop
|
||||
share/applnk/Utilities/More/khexedit.desktop
|
||||
share/applnk/Utilities/More/ktimer.desktop
|
||||
share/applnk/Utilities/ark.desktop
|
||||
share/applnk/Utilities/kcalc.desktop
|
||||
share/applnk/Utilities/kdepasswd.desktop
|
||||
share/applnk/Utilities/khexedit.desktop
|
||||
share/applnk/Utilities/ktimer.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_help.png
|
||||
share/apps/ark/icons/crystalsvg/22x22/actions/ark_new.png
|
||||
share/apps/ark/icons/crystalsvg/22x22/actions/ark_open.png
|
||||
share/apps/ark/icons/crystalsvg/22x22/actions/ark_options.png
|
||||
share/apps/ark/icons/crystalsvg/22x22/actions/ark_selectall.png
|
||||
share/apps/ark/icons/crystalsvg/22x22/actions/ark_view.png
|
||||
share/apps/kdf/pics/delete.png
|
||||
share/apps/kdf/pics/tick.png
|
||||
share/apps/kedit/keditui.rc
|
||||
share/apps/khexedit/toolbar/hexdrag.png
|
||||
share/apps/khexedit/toolbar/hexmask.png
|
||||
share/apps/khexedit/toolbar/hexwrite.png
|
||||
share/apps/kicker/applets/kcharselectapplet.desktop
|
||||
share/apps/kjots/pics/filedel.png
|
||||
share/apps/konqueror/servicemenus/arkservicemenu.desktop
|
||||
share/apps/kregexpeditor/pics/altn.png
|
||||
share/apps/kregexpeditor/pics/anychar.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/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/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/config/ksimrc
|
||||
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/doc/HTML/en/ark/common
|
||||
share/doc/HTML/en/ark/index.cache.bz2
|
||||
share/doc/HTML/en/ark/index.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/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
|
||||
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/icons/crystalsvg/128x128/apps/ark.png
|
||||
share/icons/crystalsvg/128x128/apps/kdf.png
|
||||
share/icons/crystalsvg/16x16/apps/ark.png
|
||||
share/icons/crystalsvg/16x16/apps/kcalc.png
|
||||
share/icons/crystalsvg/16x16/apps/kcharselect.png
|
||||
share/icons/crystalsvg/16x16/apps/kcmdf.png
|
||||
share/icons/crystalsvg/16x16/apps/kdf.png
|
||||
share/icons/crystalsvg/16x16/apps/kedit.png
|
||||
share/icons/crystalsvg/16x16/apps/khexedit.png
|
||||
share/icons/crystalsvg/16x16/apps/kjots.png
|
||||
share/icons/crystalsvg/16x16/apps/ksim.png
|
||||
share/icons/crystalsvg/16x16/apps/kwikdisk.png
|
||||
share/icons/crystalsvg/16x16/devices/ksim_cpu.png
|
||||
share/icons/crystalsvg/32x32/apps/ark.png
|
||||
share/icons/crystalsvg/32x32/apps/kcalc.png
|
||||
share/icons/crystalsvg/32x32/apps/kcmdf.png
|
||||
share/icons/crystalsvg/32x32/apps/kdf.png
|
||||
share/icons/crystalsvg/32x32/apps/kedit.png
|
||||
share/icons/crystalsvg/32x32/apps/khexedit.png
|
||||
share/icons/crystalsvg/32x32/apps/kjots.png
|
||||
share/icons/crystalsvg/32x32/apps/ksim.png
|
||||
share/icons/crystalsvg/32x32/apps/kwikdisk.png
|
||||
share/icons/crystalsvg/48x48/apps/ark.png
|
||||
share/icons/crystalsvg/48x48/apps/kcalc.png
|
||||
share/icons/crystalsvg/48x48/apps/kcharselect.png
|
||||
share/icons/crystalsvg/48x48/apps/kdf.png
|
||||
share/icons/crystalsvg/48x48/apps/kedit.png
|
||||
share/icons/crystalsvg/48x48/apps/khexedit.png
|
||||
share/icons/crystalsvg/48x48/apps/kjots.png
|
||||
share/icons/crystalsvg/48x48/apps/ksim.png
|
||||
share/icons/crystalsvg/64x64/apps/ark.png
|
||||
share/icons/crystalsvg/64x64/apps/kdf.png
|
||||
share/services/ark_part.desktop
|
||||
share/services/kregexpeditorgui.desktop
|
||||
@exec /bin/mkdir -p %D/share/apps/kcalc/pics
|
78
comms/kremotecontrol/files/plist.base.rm
Normal file
78
comms/kremotecontrol/files/plist.base.rm
Normal file
|
@ -0,0 +1,78 @@
|
|||
@unexec /bin/rmdir %D/share/apps/kcalc/pics || true
|
||||
@dirrm share/services
|
||||
@dirrm share/icons/crystalsvg/64x64/apps
|
||||
@dirrm share/icons/crystalsvg/64x64
|
||||
@dirrm share/icons/crystalsvg/48x48/apps
|
||||
@dirrm share/icons/crystalsvg/48x48
|
||||
@dirrm share/icons/crystalsvg/32x32/apps
|
||||
@dirrm share/icons/crystalsvg/32x32
|
||||
@dirrm share/icons/crystalsvg/16x16/devices
|
||||
@dirrm share/icons/crystalsvg/16x16/apps
|
||||
@dirrm share/icons/crystalsvg/16x16
|
||||
@dirrm share/icons/crystalsvg/128x128/apps
|
||||
@dirrm share/icons/crystalsvg/128x128
|
||||
@dirrm share/icons/crystalsvg
|
||||
@dirrm share/icons
|
||||
@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/kinfocenter
|
||||
@dirrm share/doc/HTML/en/khexedit
|
||||
@dirrm share/doc/HTML/en/kfloppy
|
||||
@dirrm share/doc/HTML/en/kedit
|
||||
@dirrm share/doc/HTML/en/kdf
|
||||
@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/kcontrol
|
||||
@dirrm share/doc/HTML/en/kcharselect
|
||||
@dirrm share/doc/HTML/en/kcalc
|
||||
@dirrm share/doc/HTML/en/ark
|
||||
@dirrm share/doc/HTML/en/KRegExpEditor
|
||||
@dirrm share/doc/HTML/en
|
||||
@dirrm share/doc/HTML
|
||||
@dirrm share/doc
|
||||
@dirrm share/config
|
||||
@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/konqueror/servicemenus
|
||||
@dirrm share/apps/konqueror
|
||||
@dirrm share/apps/kjots/pics
|
||||
@dirrm share/apps/kjots
|
||||
@dirrm share/apps/kicker/applets
|
||||
@dirrm share/apps/kicker
|
||||
@dirrm share/apps/khexedit/toolbar
|
||||
@dirrm share/apps/khexedit
|
||||
@dirrm share/apps/kedit
|
||||
@dirrm share/apps/kdf/pics
|
||||
@dirrm share/apps/kdf
|
||||
@dirrm share/apps/kcalc
|
||||
@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 share/apps
|
||||
@dirrm share/applnk/Utilities/More
|
||||
@dirrm share/applnk/Utilities
|
||||
@dirrm share/applnk/System/More
|
||||
@dirrm share/applnk/System
|
||||
@dirrm share/applnk/Settingsmenu
|
||||
@dirrm share/applnk/Settings/Information
|
||||
@dirrm share/applnk/Settings
|
||||
@dirrm share/applnk/Editors
|
||||
@dirrm share/applnk
|
||||
@dirrm lib/kde3
|
||||
@dirrm include/ksim
|
7
comms/kremotecontrol/files/plist.kfloppy
Normal file
7
comms/kremotecontrol/files/plist.kfloppy
Normal file
|
@ -0,0 +1,7 @@
|
|||
bin/kfloppy
|
||||
share/applnk/Utilities/KFloppy.desktop
|
||||
share/icons/crystalsvg/128x128/apps/kfloppy.png
|
||||
share/icons/crystalsvg/16x16/apps/kfloppy.png
|
||||
share/icons/crystalsvg/32x32/apps/kfloppy.png
|
||||
share/icons/crystalsvg/48x48/apps/kfloppy.png
|
||||
share/icons/crystalsvg/64x64/apps/kfloppy.png
|
22
comms/kremotecontrol/files/plist.klaptop
Normal file
22
comms/kremotecontrol/files/plist.klaptop
Normal file
|
@ -0,0 +1,22 @@
|
|||
bin/klaptopdaemon
|
||||
lib/kde3/kcm_laptop.la
|
||||
lib/kde3/kcm_laptop.so
|
||||
lib/klaptopdaemon.la
|
||||
lib/klaptopdaemon.so
|
||||
share/applnk/Settings/Information/pcmcia.desktop
|
||||
share/applnk/Settings/PowerControl/laptop.desktop
|
||||
share/apps/klaptopdaemon/icons/crystalsvg/16x16/actions/laptop_charge.png
|
||||
share/apps/klaptopdaemon/icons/crystalsvg/16x16/actions/laptop_nobattery.png
|
||||
share/apps/klaptopdaemon/icons/crystalsvg/16x16/actions/laptop_nocharge.png
|
||||
share/apps/klaptopdaemon/icons/crystalsvg/16x16/actions/power.png
|
||||
share/apps/klaptopdaemon/icons/crystalsvg/32x32/actions/power.png
|
||||
share/icons/crystalsvg/128x128/apps/laptop_battery.png
|
||||
share/icons/crystalsvg/16x16/apps/klaptopdaemon.png
|
||||
share/icons/crystalsvg/16x16/apps/laptop_battery.png
|
||||
share/icons/crystalsvg/16x16/apps/laptop_pcmcia.png
|
||||
share/icons/crystalsvg/32x32/apps/laptop_battery.png
|
||||
share/icons/crystalsvg/32x32/apps/laptop_pcmcia.png
|
||||
share/icons/crystalsvg/48x48/apps/laptop_battery.png
|
||||
share/icons/crystalsvg/48x48/apps/laptop_pcmcia.png
|
||||
share/icons/crystalsvg/64x64/apps/laptop_battery.png
|
||||
share/services/klaptopdaemon.desktop
|
8
comms/kremotecontrol/files/plist.klaptop.rm
Normal file
8
comms/kremotecontrol/files/plist.klaptop.rm
Normal file
|
@ -0,0 +1,8 @@
|
|||
@dirrm share/apps/klaptopdaemon/icons/crystalsvg/32x32/actions
|
||||
@dirrm share/apps/klaptopdaemon/icons/crystalsvg/32x32
|
||||
@dirrm share/apps/klaptopdaemon/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/klaptopdaemon/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/klaptopdaemon/icons/crystalsvg
|
||||
@dirrm share/apps/klaptopdaemon/icons
|
||||
@dirrm share/apps/klaptopdaemon
|
||||
@dirrm share/applnk/Settings/PowerControl
|
|
@ -1,283 +0,0 @@
|
|||
bin/ark
|
||||
bin/efax
|
||||
bin/efix
|
||||
bin/fax
|
||||
bin/kcalc
|
||||
bin/kcharselect
|
||||
bin/kdepasswd
|
||||
bin/kdessh
|
||||
bin/kdf
|
||||
bin/kedit
|
||||
bin/khexedit
|
||||
bin/kjots
|
||||
%%ALPHA_NA%%bin/klaptopdaemon
|
||||
bin/kljettool
|
||||
bin/klpq
|
||||
bin/klprfax
|
||||
bin/klprfax_filter
|
||||
bin/klprfax_lpd
|
||||
bin/ktimer
|
||||
bin/kwikdisk
|
||||
include/kmultiformlistbox.h
|
||||
include/kmultiformlistboxentry.h
|
||||
include/kmultiformlistboxfactory.h
|
||||
include/kwidgetstreamer.h
|
||||
lib/kcalc.la
|
||||
lib/kcalc.so
|
||||
lib/kde3/kcharselectapplet.la
|
||||
lib/kde3/kcharselectapplet.so
|
||||
lib/kde3/kcharselectapplet.so.1
|
||||
lib/kde3/kcm_kdf.la
|
||||
lib/kde3/kcm_kdf.so
|
||||
%%ALPHA_NA%%lib/kde3/kcm_laptop.la
|
||||
%%ALPHA_NA%%lib/kde3/kcm_laptop.so
|
||||
lib/kde3/libkregexpeditorgui.la
|
||||
lib/kde3/libkregexpeditorgui.so
|
||||
lib/kedit.la
|
||||
lib/kedit.so
|
||||
%%ALPHA_NA%%lib/klaptopdaemon.la
|
||||
%%ALPHA_NA%%lib/klaptopdaemon.so
|
||||
lib/libark.la
|
||||
lib/libark.so
|
||||
lib/libark.so.1
|
||||
share/applnk/Editors/KEdit.desktop
|
||||
share/applnk/Settings/Information/kcmdf.desktop
|
||||
%%ALPHA_NA%%share/applnk/Settings/Information/pcmcia.desktop
|
||||
%%ALPHA_NA%%share/applnk/Settings/PowerControl/battery.desktop
|
||||
%%ALPHA_NA%%share/applnk/Settings/PowerControl/bwarning.desktop
|
||||
%%ALPHA_NA%%share/applnk/Settings/PowerControl/cwarning.desktop
|
||||
%%ALPHA_NA%%share/applnk/Settings/PowerControl/power.desktop
|
||||
share/applnk/System/kdf.desktop
|
||||
share/applnk/System/kwikdisk.desktop
|
||||
share/applnk/Utilities/KCharSelect.desktop
|
||||
share/applnk/Utilities/KLJetTool.desktop
|
||||
share/applnk/Utilities/KLpq.desktop
|
||||
share/applnk/Utilities/Kjots.desktop
|
||||
share/applnk/Utilities/ark.desktop
|
||||
share/applnk/Utilities/kcalc.desktop
|
||||
share/applnk/Utilities/kdepasswd.desktop
|
||||
share/applnk/Utilities/khexedit.desktop
|
||||
share/applnk/Utilities/klprfax.desktop
|
||||
share/applnk/Utilities/ktimer.desktop
|
||||
share/apps/ark/ark_part.rc
|
||||
share/apps/ark/arkui.rc
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_adddir.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_addfile.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_delete.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_extract.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_help.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_new.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_open.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_options.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_selectall.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_view.png
|
||||
share/apps/kdf/pics/delete.png
|
||||
share/apps/kdf/pics/tick.png
|
||||
share/apps/kedit/keditui.rc
|
||||
share/apps/khexedit/toolbar/hexdrag.png
|
||||
share/apps/khexedit/toolbar/hexmask.png
|
||||
share/apps/khexedit/toolbar/hexwrite.png
|
||||
share/apps/kicker/applets/kcharselectapplet.desktop
|
||||
share/apps/kjots/pics/filedel.png
|
||||
%%ALPHA_NA%%share/apps/klaptopdaemon/icons/hicolor/16x16/actions/laptop_charge.png
|
||||
%%ALPHA_NA%%share/apps/klaptopdaemon/icons/hicolor/16x16/actions/laptop_nobattery.png
|
||||
%%ALPHA_NA%%share/apps/klaptopdaemon/icons/hicolor/16x16/actions/laptop_nocharge.png
|
||||
%%ALPHA_NA%%share/apps/klaptopdaemon/icons/hicolor/16x16/actions/power.png
|
||||
%%ALPHA_NA%%share/apps/klaptopdaemon/icons/hicolor/32x32/actions/power.png
|
||||
share/apps/kljettool/pics/kljetlogo.png
|
||||
share/apps/konqueror/servicemenus/arkservicemenu.desktop
|
||||
share/apps/kregexpeditor/pics/altn.png
|
||||
share/apps/kregexpeditor/pics/anychar.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/wordboundary.png
|
||||
share/apps/kregexpeditor/predefined/general/anything.regexp
|
||||
share/apps/kregexpeditor/predefined/general/spaces.regexp
|
||||
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/doc/HTML/en/ark/common
|
||||
share/doc/HTML/en/ark/index.cache.bz2
|
||||
share/doc/HTML/en/ark/index.docbook
|
||||
share/doc/HTML/en/kab/common
|
||||
share/doc/HTML/en/kab/index.cache.bz2
|
||||
share/doc/HTML/en/kab/index.docbook
|
||||
share/doc/HTML/en/kab/kab-edit.png
|
||||
share/doc/HTML/en/kab/kab-using.png
|
||||
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/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
|
||||
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/kjots/common
|
||||
share/doc/HTML/en/kjots/index.cache.bz2
|
||||
share/doc/HTML/en/kjots/index.docbook
|
||||
share/doc/HTML/en/kljettool/README
|
||||
share/doc/HTML/en/kljettool/common
|
||||
share/doc/HTML/en/kljettool/djcdoscommands.txt
|
||||
share/doc/HTML/en/kljettool/filter
|
||||
share/doc/HTML/en/kljettool/hp690c.zip
|
||||
share/doc/HTML/en/kljettool/index.cache.bz2
|
||||
share/doc/HTML/en/kljettool/index.docbook
|
||||
share/doc/HTML/en/kljettool/magic
|
||||
share/doc/HTML/en/kljettool/screenshot.png
|
||||
share/doc/HTML/en/klpq/common
|
||||
share/doc/HTML/en/klpq/index.cache.bz2
|
||||
share/doc/HTML/en/klpq/index.docbook
|
||||
share/doc/HTML/en/klprfax/common
|
||||
share/doc/HTML/en/klprfax/index.cache.bz2
|
||||
share/doc/HTML/en/klprfax/index.docbook
|
||||
share/icons/hicolor/16x16/apps/ark.png
|
||||
share/icons/hicolor/16x16/apps/kcalc.png
|
||||
share/icons/hicolor/16x16/apps/kcharselect.png
|
||||
share/icons/hicolor/16x16/apps/kcmdf.png
|
||||
share/icons/hicolor/16x16/apps/kdf.png
|
||||
share/icons/hicolor/16x16/apps/kedit.png
|
||||
share/icons/hicolor/16x16/apps/khexedit.png
|
||||
share/icons/hicolor/16x16/apps/kjots.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/16x16/apps/klaptopdaemon.png
|
||||
share/icons/hicolor/16x16/apps/kljettool.png
|
||||
share/icons/hicolor/16x16/apps/klpq.png
|
||||
share/icons/hicolor/16x16/apps/klprfax.png
|
||||
share/icons/hicolor/16x16/apps/kwikdisk.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/16x16/apps/laptop_battery.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/16x16/apps/laptop_pcmcia.png
|
||||
share/icons/hicolor/32x32/apps/ark.png
|
||||
share/icons/hicolor/32x32/apps/kcalc.png
|
||||
share/icons/hicolor/32x32/apps/kcmdf.png
|
||||
share/icons/hicolor/32x32/apps/kdf.png
|
||||
share/icons/hicolor/32x32/apps/kedit.png
|
||||
share/icons/hicolor/32x32/apps/khexedit.png
|
||||
share/icons/hicolor/32x32/apps/kjots.png
|
||||
share/icons/hicolor/32x32/apps/kljettool.png
|
||||
share/icons/hicolor/32x32/apps/klpq.png
|
||||
share/icons/hicolor/32x32/apps/klprfax.png
|
||||
share/icons/hicolor/32x32/apps/kwikdisk.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/32x32/apps/laptop_battery.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/32x32/apps/laptop_pcmcia.png
|
||||
share/icons/hicolor/48x48/apps/ark.png
|
||||
share/icons/hicolor/48x48/apps/kcalc.png
|
||||
share/icons/hicolor/48x48/apps/kcharselect.png
|
||||
share/icons/hicolor/48x48/apps/kedit.png
|
||||
share/icons/hicolor/48x48/apps/khexedit.png
|
||||
share/icons/hicolor/48x48/apps/kjots.png
|
||||
share/icons/hicolor/48x48/apps/kljettool.png
|
||||
share/icons/hicolor/48x48/apps/klpq.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/48x48/apps/laptop_battery.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/48x48/apps/laptop_pcmcia.png
|
||||
share/icons/locolor/16x16/apps/klprfax.png
|
||||
share/icons/locolor/32x32/apps/klprfax.png
|
||||
share/services/arkpart.desktop
|
||||
%%ALPHA_NA%%share/services/klaptopdaemon.desktop
|
||||
share/services/kregexpeditorgui.desktop
|
||||
@exec /bin/mkdir -p %D/share/apps/kcalc/pics
|
||||
@dirrm share/icons/locolor/32x32/apps
|
||||
@dirrm share/icons/locolor/32x32
|
||||
@dirrm share/icons/locolor/16x16/apps
|
||||
@dirrm share/icons/locolor/16x16
|
||||
@dirrm share/icons/locolor
|
||||
@dirrm share/icons/hicolor/48x48/apps
|
||||
@dirrm share/icons/hicolor/48x48
|
||||
@dirrm share/icons/hicolor/32x32/apps
|
||||
@dirrm share/icons/hicolor/32x32
|
||||
@dirrm share/icons/hicolor/16x16/apps
|
||||
@dirrm share/icons/hicolor/16x16
|
||||
@dirrm share/icons/hicolor
|
||||
@dirrm share/doc/HTML/en/klprfax
|
||||
@dirrm share/doc/HTML/en/klpq
|
||||
@dirrm share/doc/HTML/en/kljettool
|
||||
@dirrm share/doc/HTML/en/kjots
|
||||
@dirrm share/doc/HTML/en/khexedit
|
||||
@dirrm share/doc/HTML/en/kfloppy
|
||||
@dirrm share/doc/HTML/en/kedit
|
||||
@dirrm share/doc/HTML/en/kdf
|
||||
@dirrm share/doc/HTML/en/kcalc
|
||||
@dirrm share/doc/HTML/en/kab
|
||||
@dirrm share/doc/HTML/en/ark
|
||||
@dirrm share/doc/HTML/en/KRegExpEditor
|
||||
@dirrm share/doc/HTML/en
|
||||
@dirrm share/doc/HTML
|
||||
@dirrm share/apps/kregexpeditor/predefined/general
|
||||
@dirrm share/apps/kregexpeditor/predefined
|
||||
@dirrm share/apps/kregexpeditor/pics
|
||||
@dirrm share/apps/kregexpeditor
|
||||
@dirrm share/apps/konqueror/servicemenus
|
||||
@dirrm share/apps/konqueror
|
||||
@dirrm share/apps/kljettool/pics
|
||||
@dirrm share/apps/kljettool
|
||||
@dirrm share/apps/klaptopdaemon/icons/hicolor/32x32/actions
|
||||
@dirrm share/apps/klaptopdaemon/icons/hicolor/32x32
|
||||
@dirrm share/apps/klaptopdaemon/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/klaptopdaemon/icons/hicolor/16x16
|
||||
@dirrm share/apps/klaptopdaemon/icons/hicolor
|
||||
@dirrm share/apps/klaptopdaemon/icons
|
||||
@dirrm share/apps/klaptopdaemon
|
||||
@dirrm share/apps/kjots/pics
|
||||
@dirrm share/apps/kjots
|
||||
@dirrm share/apps/kicker/applets
|
||||
@dirrm share/apps/kicker
|
||||
@dirrm share/apps/khexedit/toolbar
|
||||
@dirrm share/apps/khexedit
|
||||
@dirrm share/apps/kedit
|
||||
@dirrm share/apps/kdf/pics
|
||||
@dirrm share/apps/kdf
|
||||
@dirrm share/apps/kcalc/pics
|
||||
@dirrm share/apps/kcalc
|
||||
@dirrm share/apps/ark/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/ark/icons/hicolor/22x22
|
||||
@dirrm share/apps/ark/icons/hicolor
|
||||
@dirrm share/apps/ark/icons
|
||||
@dirrm share/apps/ark
|
||||
@dirrm share/applnk/Utilities
|
||||
@dirrm share/applnk/System
|
||||
@dirrm share/applnk/Settings/PowerControl
|
||||
@dirrm share/applnk/Settings/Information
|
||||
@dirrm share/applnk/Settings
|
||||
@dirrm share/applnk/Editors
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
PORTNAME= kdeutils
|
||||
PORTVERSION= ${KDE_VERSION}
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 0
|
||||
CATEGORIES?= misc kde
|
||||
MASTER_SITES= ${MASTER_SITE_KDE}
|
||||
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
|
||||
|
@ -16,30 +16,37 @@ DIST_SUBDIR= KDE
|
|||
MAINTAINER?= kde@FreeBSD.org
|
||||
|
||||
USE_KDELIBS_VER=3
|
||||
USE_BZIP2= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GMAKE= yes
|
||||
MAN1= efax.1 efix.1 fax.1
|
||||
PREFIX= ${KDE_PREFIX}
|
||||
KDE_BUILD_PLIST=yes
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
INSTALLS_SHLIB= yes
|
||||
LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3
|
||||
|
||||
#klaptop doesn't like alpha because alpha doesn't support apm
|
||||
.if ${MACHINE_ARCH} == "alpha"
|
||||
WITHOUT_KLAPTOP =yes
|
||||
.endif # ${MACHINE_ARCH} == "alpha"
|
||||
|
||||
.if defined(WITHOUT_KLAPTOP)
|
||||
DO_NOT_COMPILE+=klaptopdaemon
|
||||
PLIST_SUB+= ALPHA_NA="@comment "
|
||||
.else
|
||||
PLIST_SUB+= ALPHA_NA=""
|
||||
.endif
|
||||
PLIST_APPEND+= plist.klaptop
|
||||
.endif # defined(WITHOUT_KLAPTOP)
|
||||
|
||||
# kfloppy is a mostly broken, non-standard, linux-centric pain...
|
||||
.if !defined(WITH_KFLOPPY)
|
||||
DO_NOT_COMPILE+=kfloppy
|
||||
PLIST_SUB+= KFLOPPY="@comment "
|
||||
.else
|
||||
PLIST_SUB+= KFLOPPY=""
|
||||
.endif
|
||||
PLIST_APPEND+= plist.kfloppy
|
||||
.endif # !defined(WITH_KFLOPPY)
|
||||
|
||||
.if defined(DO_NOT_COMPILE)
|
||||
CONFIGURE_ENV+= DO_NOT_COMPILE="${DO_NOT_COMPILE}"
|
||||
.endif
|
||||
.endif # defined(DO_NOT_COMPILE)
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (KDE/kdeutils-3.0.4.tar.bz2) = e34ccb00b25f04f0a27474fa17d68e77
|
||||
MD5 (KDE/kdeutils-3.1.tar.bz2) = 81e2916ba0fa865053aff858982c040e
|
||||
|
|
247
deskutils/kcharselect/files/plist.base
Normal file
247
deskutils/kcharselect/files/plist.base
Normal file
|
@ -0,0 +1,247 @@
|
|||
bin/ark
|
||||
bin/kcalc
|
||||
bin/kcharselect
|
||||
bin/kdepasswd
|
||||
bin/kdessh
|
||||
bin/kdf
|
||||
bin/kedit
|
||||
bin/khexedit
|
||||
bin/kjots
|
||||
bin/ksim
|
||||
bin/ktimer
|
||||
bin/kwikdisk
|
||||
include/kmultiformlistbox.h
|
||||
include/kmultiformlistboxentry.h
|
||||
include/kmultiformlistboxfactory.h
|
||||
include/ksim/chart.h
|
||||
include/ksim/common.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/kcalc.la
|
||||
lib/kcalc.so
|
||||
lib/kde3/kcharselect_panelapplet.la
|
||||
lib/kde3/kcharselect_panelapplet.so
|
||||
lib/kde3/kcm_kdf.la
|
||||
lib/kde3/kcm_kdf.so
|
||||
lib/kde3/ksim_cpu.la
|
||||
lib/kde3/ksim_cpu.so
|
||||
lib/kde3/ksim_disk.la
|
||||
lib/kde3/ksim_disk.so
|
||||
lib/kde3/ksim_filesystem.la
|
||||
lib/kde3/ksim_filesystem.so
|
||||
lib/kde3/ksim_net.la
|
||||
lib/kde3/ksim_net.so
|
||||
lib/kde3/ksim_sensors.la
|
||||
lib/kde3/ksim_sensors.so
|
||||
lib/kde3/libkregexpeditorgui.la
|
||||
lib/kde3/libkregexpeditorgui.so
|
||||
lib/kedit.la
|
||||
lib/kedit.so
|
||||
lib/ksim.la
|
||||
lib/ksim.so
|
||||
lib/libarkpart.la
|
||||
lib/libarkpart.so
|
||||
lib/libksimcore.la
|
||||
lib/libksimcore.so
|
||||
lib/libksimcore.so.1
|
||||
share/applnk/Editors/KEdit.desktop
|
||||
share/applnk/Settings/Information/kcmdf.desktop
|
||||
share/applnk/Settingsmenu/kdepasswd.desktop
|
||||
share/applnk/System/More/kdf.desktop
|
||||
share/applnk/System/More/ksim.desktop
|
||||
share/applnk/System/More/kwikdisk.desktop
|
||||
share/applnk/System/kdf.desktop
|
||||
share/applnk/System/kwikdisk.desktop
|
||||
share/applnk/Utilities/KCharSelect.desktop
|
||||
share/applnk/Utilities/Kjots.desktop
|
||||
share/applnk/Utilities/More/KCharSelect.desktop
|
||||
share/applnk/Utilities/More/Kjots.desktop
|
||||
share/applnk/Utilities/More/khexedit.desktop
|
||||
share/applnk/Utilities/More/ktimer.desktop
|
||||
share/applnk/Utilities/ark.desktop
|
||||
share/applnk/Utilities/kcalc.desktop
|
||||
share/applnk/Utilities/kdepasswd.desktop
|
||||
share/applnk/Utilities/khexedit.desktop
|
||||
share/applnk/Utilities/ktimer.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_help.png
|
||||
share/apps/ark/icons/crystalsvg/22x22/actions/ark_new.png
|
||||
share/apps/ark/icons/crystalsvg/22x22/actions/ark_open.png
|
||||
share/apps/ark/icons/crystalsvg/22x22/actions/ark_options.png
|
||||
share/apps/ark/icons/crystalsvg/22x22/actions/ark_selectall.png
|
||||
share/apps/ark/icons/crystalsvg/22x22/actions/ark_view.png
|
||||
share/apps/kdf/pics/delete.png
|
||||
share/apps/kdf/pics/tick.png
|
||||
share/apps/kedit/keditui.rc
|
||||
share/apps/khexedit/toolbar/hexdrag.png
|
||||
share/apps/khexedit/toolbar/hexmask.png
|
||||
share/apps/khexedit/toolbar/hexwrite.png
|
||||
share/apps/kicker/applets/kcharselectapplet.desktop
|
||||
share/apps/kjots/pics/filedel.png
|
||||
share/apps/konqueror/servicemenus/arkservicemenu.desktop
|
||||
share/apps/kregexpeditor/pics/altn.png
|
||||
share/apps/kregexpeditor/pics/anychar.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/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/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/config/ksimrc
|
||||
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/doc/HTML/en/ark/common
|
||||
share/doc/HTML/en/ark/index.cache.bz2
|
||||
share/doc/HTML/en/ark/index.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/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
|
||||
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/icons/crystalsvg/128x128/apps/ark.png
|
||||
share/icons/crystalsvg/128x128/apps/kdf.png
|
||||
share/icons/crystalsvg/16x16/apps/ark.png
|
||||
share/icons/crystalsvg/16x16/apps/kcalc.png
|
||||
share/icons/crystalsvg/16x16/apps/kcharselect.png
|
||||
share/icons/crystalsvg/16x16/apps/kcmdf.png
|
||||
share/icons/crystalsvg/16x16/apps/kdf.png
|
||||
share/icons/crystalsvg/16x16/apps/kedit.png
|
||||
share/icons/crystalsvg/16x16/apps/khexedit.png
|
||||
share/icons/crystalsvg/16x16/apps/kjots.png
|
||||
share/icons/crystalsvg/16x16/apps/ksim.png
|
||||
share/icons/crystalsvg/16x16/apps/kwikdisk.png
|
||||
share/icons/crystalsvg/16x16/devices/ksim_cpu.png
|
||||
share/icons/crystalsvg/32x32/apps/ark.png
|
||||
share/icons/crystalsvg/32x32/apps/kcalc.png
|
||||
share/icons/crystalsvg/32x32/apps/kcmdf.png
|
||||
share/icons/crystalsvg/32x32/apps/kdf.png
|
||||
share/icons/crystalsvg/32x32/apps/kedit.png
|
||||
share/icons/crystalsvg/32x32/apps/khexedit.png
|
||||
share/icons/crystalsvg/32x32/apps/kjots.png
|
||||
share/icons/crystalsvg/32x32/apps/ksim.png
|
||||
share/icons/crystalsvg/32x32/apps/kwikdisk.png
|
||||
share/icons/crystalsvg/48x48/apps/ark.png
|
||||
share/icons/crystalsvg/48x48/apps/kcalc.png
|
||||
share/icons/crystalsvg/48x48/apps/kcharselect.png
|
||||
share/icons/crystalsvg/48x48/apps/kdf.png
|
||||
share/icons/crystalsvg/48x48/apps/kedit.png
|
||||
share/icons/crystalsvg/48x48/apps/khexedit.png
|
||||
share/icons/crystalsvg/48x48/apps/kjots.png
|
||||
share/icons/crystalsvg/48x48/apps/ksim.png
|
||||
share/icons/crystalsvg/64x64/apps/ark.png
|
||||
share/icons/crystalsvg/64x64/apps/kdf.png
|
||||
share/services/ark_part.desktop
|
||||
share/services/kregexpeditorgui.desktop
|
||||
@exec /bin/mkdir -p %D/share/apps/kcalc/pics
|
78
deskutils/kcharselect/files/plist.base.rm
Normal file
78
deskutils/kcharselect/files/plist.base.rm
Normal file
|
@ -0,0 +1,78 @@
|
|||
@unexec /bin/rmdir %D/share/apps/kcalc/pics || true
|
||||
@dirrm share/services
|
||||
@dirrm share/icons/crystalsvg/64x64/apps
|
||||
@dirrm share/icons/crystalsvg/64x64
|
||||
@dirrm share/icons/crystalsvg/48x48/apps
|
||||
@dirrm share/icons/crystalsvg/48x48
|
||||
@dirrm share/icons/crystalsvg/32x32/apps
|
||||
@dirrm share/icons/crystalsvg/32x32
|
||||
@dirrm share/icons/crystalsvg/16x16/devices
|
||||
@dirrm share/icons/crystalsvg/16x16/apps
|
||||
@dirrm share/icons/crystalsvg/16x16
|
||||
@dirrm share/icons/crystalsvg/128x128/apps
|
||||
@dirrm share/icons/crystalsvg/128x128
|
||||
@dirrm share/icons/crystalsvg
|
||||
@dirrm share/icons
|
||||
@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/kinfocenter
|
||||
@dirrm share/doc/HTML/en/khexedit
|
||||
@dirrm share/doc/HTML/en/kfloppy
|
||||
@dirrm share/doc/HTML/en/kedit
|
||||
@dirrm share/doc/HTML/en/kdf
|
||||
@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/kcontrol
|
||||
@dirrm share/doc/HTML/en/kcharselect
|
||||
@dirrm share/doc/HTML/en/kcalc
|
||||
@dirrm share/doc/HTML/en/ark
|
||||
@dirrm share/doc/HTML/en/KRegExpEditor
|
||||
@dirrm share/doc/HTML/en
|
||||
@dirrm share/doc/HTML
|
||||
@dirrm share/doc
|
||||
@dirrm share/config
|
||||
@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/konqueror/servicemenus
|
||||
@dirrm share/apps/konqueror
|
||||
@dirrm share/apps/kjots/pics
|
||||
@dirrm share/apps/kjots
|
||||
@dirrm share/apps/kicker/applets
|
||||
@dirrm share/apps/kicker
|
||||
@dirrm share/apps/khexedit/toolbar
|
||||
@dirrm share/apps/khexedit
|
||||
@dirrm share/apps/kedit
|
||||
@dirrm share/apps/kdf/pics
|
||||
@dirrm share/apps/kdf
|
||||
@dirrm share/apps/kcalc
|
||||
@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 share/apps
|
||||
@dirrm share/applnk/Utilities/More
|
||||
@dirrm share/applnk/Utilities
|
||||
@dirrm share/applnk/System/More
|
||||
@dirrm share/applnk/System
|
||||
@dirrm share/applnk/Settingsmenu
|
||||
@dirrm share/applnk/Settings/Information
|
||||
@dirrm share/applnk/Settings
|
||||
@dirrm share/applnk/Editors
|
||||
@dirrm share/applnk
|
||||
@dirrm lib/kde3
|
||||
@dirrm include/ksim
|
7
deskutils/kcharselect/files/plist.kfloppy
Normal file
7
deskutils/kcharselect/files/plist.kfloppy
Normal file
|
@ -0,0 +1,7 @@
|
|||
bin/kfloppy
|
||||
share/applnk/Utilities/KFloppy.desktop
|
||||
share/icons/crystalsvg/128x128/apps/kfloppy.png
|
||||
share/icons/crystalsvg/16x16/apps/kfloppy.png
|
||||
share/icons/crystalsvg/32x32/apps/kfloppy.png
|
||||
share/icons/crystalsvg/48x48/apps/kfloppy.png
|
||||
share/icons/crystalsvg/64x64/apps/kfloppy.png
|
22
deskutils/kcharselect/files/plist.klaptop
Normal file
22
deskutils/kcharselect/files/plist.klaptop
Normal file
|
@ -0,0 +1,22 @@
|
|||
bin/klaptopdaemon
|
||||
lib/kde3/kcm_laptop.la
|
||||
lib/kde3/kcm_laptop.so
|
||||
lib/klaptopdaemon.la
|
||||
lib/klaptopdaemon.so
|
||||
share/applnk/Settings/Information/pcmcia.desktop
|
||||
share/applnk/Settings/PowerControl/laptop.desktop
|
||||
share/apps/klaptopdaemon/icons/crystalsvg/16x16/actions/laptop_charge.png
|
||||
share/apps/klaptopdaemon/icons/crystalsvg/16x16/actions/laptop_nobattery.png
|
||||
share/apps/klaptopdaemon/icons/crystalsvg/16x16/actions/laptop_nocharge.png
|
||||
share/apps/klaptopdaemon/icons/crystalsvg/16x16/actions/power.png
|
||||
share/apps/klaptopdaemon/icons/crystalsvg/32x32/actions/power.png
|
||||
share/icons/crystalsvg/128x128/apps/laptop_battery.png
|
||||
share/icons/crystalsvg/16x16/apps/klaptopdaemon.png
|
||||
share/icons/crystalsvg/16x16/apps/laptop_battery.png
|
||||
share/icons/crystalsvg/16x16/apps/laptop_pcmcia.png
|
||||
share/icons/crystalsvg/32x32/apps/laptop_battery.png
|
||||
share/icons/crystalsvg/32x32/apps/laptop_pcmcia.png
|
||||
share/icons/crystalsvg/48x48/apps/laptop_battery.png
|
||||
share/icons/crystalsvg/48x48/apps/laptop_pcmcia.png
|
||||
share/icons/crystalsvg/64x64/apps/laptop_battery.png
|
||||
share/services/klaptopdaemon.desktop
|
8
deskutils/kcharselect/files/plist.klaptop.rm
Normal file
8
deskutils/kcharselect/files/plist.klaptop.rm
Normal file
|
@ -0,0 +1,8 @@
|
|||
@dirrm share/apps/klaptopdaemon/icons/crystalsvg/32x32/actions
|
||||
@dirrm share/apps/klaptopdaemon/icons/crystalsvg/32x32
|
||||
@dirrm share/apps/klaptopdaemon/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/klaptopdaemon/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/klaptopdaemon/icons/crystalsvg
|
||||
@dirrm share/apps/klaptopdaemon/icons
|
||||
@dirrm share/apps/klaptopdaemon
|
||||
@dirrm share/applnk/Settings/PowerControl
|
|
@ -1,283 +0,0 @@
|
|||
bin/ark
|
||||
bin/efax
|
||||
bin/efix
|
||||
bin/fax
|
||||
bin/kcalc
|
||||
bin/kcharselect
|
||||
bin/kdepasswd
|
||||
bin/kdessh
|
||||
bin/kdf
|
||||
bin/kedit
|
||||
bin/khexedit
|
||||
bin/kjots
|
||||
%%ALPHA_NA%%bin/klaptopdaemon
|
||||
bin/kljettool
|
||||
bin/klpq
|
||||
bin/klprfax
|
||||
bin/klprfax_filter
|
||||
bin/klprfax_lpd
|
||||
bin/ktimer
|
||||
bin/kwikdisk
|
||||
include/kmultiformlistbox.h
|
||||
include/kmultiformlistboxentry.h
|
||||
include/kmultiformlistboxfactory.h
|
||||
include/kwidgetstreamer.h
|
||||
lib/kcalc.la
|
||||
lib/kcalc.so
|
||||
lib/kde3/kcharselectapplet.la
|
||||
lib/kde3/kcharselectapplet.so
|
||||
lib/kde3/kcharselectapplet.so.1
|
||||
lib/kde3/kcm_kdf.la
|
||||
lib/kde3/kcm_kdf.so
|
||||
%%ALPHA_NA%%lib/kde3/kcm_laptop.la
|
||||
%%ALPHA_NA%%lib/kde3/kcm_laptop.so
|
||||
lib/kde3/libkregexpeditorgui.la
|
||||
lib/kde3/libkregexpeditorgui.so
|
||||
lib/kedit.la
|
||||
lib/kedit.so
|
||||
%%ALPHA_NA%%lib/klaptopdaemon.la
|
||||
%%ALPHA_NA%%lib/klaptopdaemon.so
|
||||
lib/libark.la
|
||||
lib/libark.so
|
||||
lib/libark.so.1
|
||||
share/applnk/Editors/KEdit.desktop
|
||||
share/applnk/Settings/Information/kcmdf.desktop
|
||||
%%ALPHA_NA%%share/applnk/Settings/Information/pcmcia.desktop
|
||||
%%ALPHA_NA%%share/applnk/Settings/PowerControl/battery.desktop
|
||||
%%ALPHA_NA%%share/applnk/Settings/PowerControl/bwarning.desktop
|
||||
%%ALPHA_NA%%share/applnk/Settings/PowerControl/cwarning.desktop
|
||||
%%ALPHA_NA%%share/applnk/Settings/PowerControl/power.desktop
|
||||
share/applnk/System/kdf.desktop
|
||||
share/applnk/System/kwikdisk.desktop
|
||||
share/applnk/Utilities/KCharSelect.desktop
|
||||
share/applnk/Utilities/KLJetTool.desktop
|
||||
share/applnk/Utilities/KLpq.desktop
|
||||
share/applnk/Utilities/Kjots.desktop
|
||||
share/applnk/Utilities/ark.desktop
|
||||
share/applnk/Utilities/kcalc.desktop
|
||||
share/applnk/Utilities/kdepasswd.desktop
|
||||
share/applnk/Utilities/khexedit.desktop
|
||||
share/applnk/Utilities/klprfax.desktop
|
||||
share/applnk/Utilities/ktimer.desktop
|
||||
share/apps/ark/ark_part.rc
|
||||
share/apps/ark/arkui.rc
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_adddir.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_addfile.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_delete.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_extract.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_help.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_new.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_open.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_options.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_selectall.png
|
||||
share/apps/ark/icons/hicolor/22x22/actions/ark_view.png
|
||||
share/apps/kdf/pics/delete.png
|
||||
share/apps/kdf/pics/tick.png
|
||||
share/apps/kedit/keditui.rc
|
||||
share/apps/khexedit/toolbar/hexdrag.png
|
||||
share/apps/khexedit/toolbar/hexmask.png
|
||||
share/apps/khexedit/toolbar/hexwrite.png
|
||||
share/apps/kicker/applets/kcharselectapplet.desktop
|
||||
share/apps/kjots/pics/filedel.png
|
||||
%%ALPHA_NA%%share/apps/klaptopdaemon/icons/hicolor/16x16/actions/laptop_charge.png
|
||||
%%ALPHA_NA%%share/apps/klaptopdaemon/icons/hicolor/16x16/actions/laptop_nobattery.png
|
||||
%%ALPHA_NA%%share/apps/klaptopdaemon/icons/hicolor/16x16/actions/laptop_nocharge.png
|
||||
%%ALPHA_NA%%share/apps/klaptopdaemon/icons/hicolor/16x16/actions/power.png
|
||||
%%ALPHA_NA%%share/apps/klaptopdaemon/icons/hicolor/32x32/actions/power.png
|
||||
share/apps/kljettool/pics/kljetlogo.png
|
||||
share/apps/konqueror/servicemenus/arkservicemenu.desktop
|
||||
share/apps/kregexpeditor/pics/altn.png
|
||||
share/apps/kregexpeditor/pics/anychar.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/wordboundary.png
|
||||
share/apps/kregexpeditor/predefined/general/anything.regexp
|
||||
share/apps/kregexpeditor/predefined/general/spaces.regexp
|
||||
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/doc/HTML/en/ark/common
|
||||
share/doc/HTML/en/ark/index.cache.bz2
|
||||
share/doc/HTML/en/ark/index.docbook
|
||||
share/doc/HTML/en/kab/common
|
||||
share/doc/HTML/en/kab/index.cache.bz2
|
||||
share/doc/HTML/en/kab/index.docbook
|
||||
share/doc/HTML/en/kab/kab-edit.png
|
||||
share/doc/HTML/en/kab/kab-using.png
|
||||
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/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
|
||||
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/kjots/common
|
||||
share/doc/HTML/en/kjots/index.cache.bz2
|
||||
share/doc/HTML/en/kjots/index.docbook
|
||||
share/doc/HTML/en/kljettool/README
|
||||
share/doc/HTML/en/kljettool/common
|
||||
share/doc/HTML/en/kljettool/djcdoscommands.txt
|
||||
share/doc/HTML/en/kljettool/filter
|
||||
share/doc/HTML/en/kljettool/hp690c.zip
|
||||
share/doc/HTML/en/kljettool/index.cache.bz2
|
||||
share/doc/HTML/en/kljettool/index.docbook
|
||||
share/doc/HTML/en/kljettool/magic
|
||||
share/doc/HTML/en/kljettool/screenshot.png
|
||||
share/doc/HTML/en/klpq/common
|
||||
share/doc/HTML/en/klpq/index.cache.bz2
|
||||
share/doc/HTML/en/klpq/index.docbook
|
||||
share/doc/HTML/en/klprfax/common
|
||||
share/doc/HTML/en/klprfax/index.cache.bz2
|
||||
share/doc/HTML/en/klprfax/index.docbook
|
||||
share/icons/hicolor/16x16/apps/ark.png
|
||||
share/icons/hicolor/16x16/apps/kcalc.png
|
||||
share/icons/hicolor/16x16/apps/kcharselect.png
|
||||
share/icons/hicolor/16x16/apps/kcmdf.png
|
||||
share/icons/hicolor/16x16/apps/kdf.png
|
||||
share/icons/hicolor/16x16/apps/kedit.png
|
||||
share/icons/hicolor/16x16/apps/khexedit.png
|
||||
share/icons/hicolor/16x16/apps/kjots.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/16x16/apps/klaptopdaemon.png
|
||||
share/icons/hicolor/16x16/apps/kljettool.png
|
||||
share/icons/hicolor/16x16/apps/klpq.png
|
||||
share/icons/hicolor/16x16/apps/klprfax.png
|
||||
share/icons/hicolor/16x16/apps/kwikdisk.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/16x16/apps/laptop_battery.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/16x16/apps/laptop_pcmcia.png
|
||||
share/icons/hicolor/32x32/apps/ark.png
|
||||
share/icons/hicolor/32x32/apps/kcalc.png
|
||||
share/icons/hicolor/32x32/apps/kcmdf.png
|
||||
share/icons/hicolor/32x32/apps/kdf.png
|
||||
share/icons/hicolor/32x32/apps/kedit.png
|
||||
share/icons/hicolor/32x32/apps/khexedit.png
|
||||
share/icons/hicolor/32x32/apps/kjots.png
|
||||
share/icons/hicolor/32x32/apps/kljettool.png
|
||||
share/icons/hicolor/32x32/apps/klpq.png
|
||||
share/icons/hicolor/32x32/apps/klprfax.png
|
||||
share/icons/hicolor/32x32/apps/kwikdisk.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/32x32/apps/laptop_battery.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/32x32/apps/laptop_pcmcia.png
|
||||
share/icons/hicolor/48x48/apps/ark.png
|
||||
share/icons/hicolor/48x48/apps/kcalc.png
|
||||
share/icons/hicolor/48x48/apps/kcharselect.png
|
||||
share/icons/hicolor/48x48/apps/kedit.png
|
||||
share/icons/hicolor/48x48/apps/khexedit.png
|
||||
share/icons/hicolor/48x48/apps/kjots.png
|
||||
share/icons/hicolor/48x48/apps/kljettool.png
|
||||
share/icons/hicolor/48x48/apps/klpq.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/48x48/apps/laptop_battery.png
|
||||
%%ALPHA_NA%%share/icons/hicolor/48x48/apps/laptop_pcmcia.png
|
||||
share/icons/locolor/16x16/apps/klprfax.png
|
||||
share/icons/locolor/32x32/apps/klprfax.png
|
||||
share/services/arkpart.desktop
|
||||
%%ALPHA_NA%%share/services/klaptopdaemon.desktop
|
||||
share/services/kregexpeditorgui.desktop
|
||||
@exec /bin/mkdir -p %D/share/apps/kcalc/pics
|
||||
@dirrm share/icons/locolor/32x32/apps
|
||||
@dirrm share/icons/locolor/32x32
|
||||
@dirrm share/icons/locolor/16x16/apps
|
||||
@dirrm share/icons/locolor/16x16
|
||||
@dirrm share/icons/locolor
|
||||
@dirrm share/icons/hicolor/48x48/apps
|
||||
@dirrm share/icons/hicolor/48x48
|
||||
@dirrm share/icons/hicolor/32x32/apps
|
||||
@dirrm share/icons/hicolor/32x32
|
||||
@dirrm share/icons/hicolor/16x16/apps
|
||||
@dirrm share/icons/hicolor/16x16
|
||||
@dirrm share/icons/hicolor
|
||||
@dirrm share/doc/HTML/en/klprfax
|
||||
@dirrm share/doc/HTML/en/klpq
|
||||
@dirrm share/doc/HTML/en/kljettool
|
||||
@dirrm share/doc/HTML/en/kjots
|
||||
@dirrm share/doc/HTML/en/khexedit
|
||||
@dirrm share/doc/HTML/en/kfloppy
|
||||
@dirrm share/doc/HTML/en/kedit
|
||||
@dirrm share/doc/HTML/en/kdf
|
||||
@dirrm share/doc/HTML/en/kcalc
|
||||
@dirrm share/doc/HTML/en/kab
|
||||
@dirrm share/doc/HTML/en/ark
|
||||
@dirrm share/doc/HTML/en/KRegExpEditor
|
||||
@dirrm share/doc/HTML/en
|
||||
@dirrm share/doc/HTML
|
||||
@dirrm share/apps/kregexpeditor/predefined/general
|
||||
@dirrm share/apps/kregexpeditor/predefined
|
||||
@dirrm share/apps/kregexpeditor/pics
|
||||
@dirrm share/apps/kregexpeditor
|
||||
@dirrm share/apps/konqueror/servicemenus
|
||||
@dirrm share/apps/konqueror
|
||||
@dirrm share/apps/kljettool/pics
|
||||
@dirrm share/apps/kljettool
|
||||
@dirrm share/apps/klaptopdaemon/icons/hicolor/32x32/actions
|
||||
@dirrm share/apps/klaptopdaemon/icons/hicolor/32x32
|
||||
@dirrm share/apps/klaptopdaemon/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/klaptopdaemon/icons/hicolor/16x16
|
||||
@dirrm share/apps/klaptopdaemon/icons/hicolor
|
||||
@dirrm share/apps/klaptopdaemon/icons
|
||||
@dirrm share/apps/klaptopdaemon
|
||||
@dirrm share/apps/kjots/pics
|
||||
@dirrm share/apps/kjots
|
||||
@dirrm share/apps/kicker/applets
|
||||
@dirrm share/apps/kicker
|
||||
@dirrm share/apps/khexedit/toolbar
|
||||
@dirrm share/apps/khexedit
|
||||
@dirrm share/apps/kedit
|
||||
@dirrm share/apps/kdf/pics
|
||||
@dirrm share/apps/kdf
|
||||
@dirrm share/apps/kcalc/pics
|
||||
@dirrm share/apps/kcalc
|
||||
@dirrm share/apps/ark/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/ark/icons/hicolor/22x22
|
||||
@dirrm share/apps/ark/icons/hicolor
|
||||
@dirrm share/apps/ark/icons
|
||||
@dirrm share/apps/ark
|
||||
@dirrm share/applnk/Utilities
|
||||
@dirrm share/applnk/System
|
||||
@dirrm share/applnk/Settings/PowerControl
|
||||
@dirrm share/applnk/Settings/Information
|
||||
@dirrm share/applnk/Settings
|
||||
@dirrm share/applnk/Editors
|
|
@ -17,12 +17,15 @@ MAINTAINER= kde@FreeBSD.org
|
|||
LIB_DEPENDS= pisock:${PORTSDIR}/palm/pilot-link
|
||||
|
||||
USE_KDELIBS_VER=3
|
||||
USE_BISON= yes
|
||||
PREFIX= ${KDE_PREFIX}
|
||||
|
||||
USE_BZIP2= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_BISON= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GMAKE= yes
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
INSTALLS_SHLIB= yes
|
||||
LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (KDE/kdepim-3.0.4.tar.bz2) = 0455afeec058386049a46e7ea5ec9363
|
||||
MD5 (KDE/kdepim-3.1.tar.bz2) = 9a416238193107ed2d937a3f5b02f579
|
||||
|
|
|
@ -1,29 +0,0 @@
|
|||
Index: libical/src/libical/icaltime.c
|
||||
===================================================================
|
||||
RCS file: /home/kde/kdepim/libical/src/libical/icaltime.c,v
|
||||
retrieving revision 1.5
|
||||
retrieving revision 1.6
|
||||
diff -u -3 -p -r1.5 -r1.6
|
||||
--- libical/src/libical/icaltime.c 2001/06/26 12:22:20 1.5
|
||||
+++ libical/src/libical/icaltime.c 2002/09/27 18:49:07 1.6
|
||||
@@ -3,7 +3,7 @@
|
||||
FILE: icaltime.c
|
||||
CREATOR: eric 02 June 2000
|
||||
|
||||
- $Id: icaltime.c,v 1.5 2001/06/26 12:22:20 cschumac Exp $
|
||||
+ $Id: icaltime.c,v 1.6 2002/09/27 18:49:07 adridg Exp $
|
||||
$Locker: $
|
||||
|
||||
(C) COPYRIGHT 2000, Eric Busboom, http://www.softwarestudio.org
|
||||
@@ -141,7 +141,11 @@ void unset_tz(struct set_tz_save savetz)
|
||||
|
||||
free(orig_tzid);
|
||||
} else {
|
||||
+#ifdef __FreeBSD__
|
||||
+ unsetenv("TZ");
|
||||
+#else
|
||||
putenv("TZ"); /* Delete from environment */
|
||||
+#endif
|
||||
}
|
||||
|
||||
if(savetz.new_env_str != 0){
|
|
@ -1,11 +0,0 @@
|
|||
--- libical/src/libicalvcal/vcc.y Mon Jan 1 16:49:58 2001
|
||||
+++ libical/src/libicalvcal/vcc.y.new Sun Jun 2 12:42:57 2002
|
||||
@@ -107,7 +107,7 @@
|
||||
#endif
|
||||
|
||||
#include <string.h>
|
||||
-#ifndef __MWERKS__
|
||||
+#if !defined(__MWERKS__) && !defined(__FreeBSD__)
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
#include <stdio.h>
|
|
@ -1,11 +0,0 @@
|
|||
--- libical/src/libicalvcal/vobject.c Mon Jan 1 16:37:08 2001
|
||||
+++ libical/src/libicalvcal/vobject.c.new Mon Jun 3 02:49:58 2002
|
||||
@@ -42,7 +42,7 @@
|
||||
* vobject, and convert a vobject into its textual representation.
|
||||
*/
|
||||
|
||||
-#ifndef MWERKS
|
||||
+#if !defined(MWERKS) && !defined(__FreeBSD__)
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
bin/ical2vcal
|
||||
bin/kabcfrontend
|
||||
bin/kabc2mutt
|
||||
bin/kaddressbook
|
||||
bin/kalarm
|
||||
bin/kalarmautostart
|
||||
bin/kalarmd
|
||||
bin/kandy
|
||||
bin/kandy_client
|
||||
|
@ -13,9 +13,13 @@ bin/korganizer
|
|||
bin/korganizerIn
|
||||
bin/kpilot
|
||||
bin/kpilotDaemon
|
||||
bin/ksync
|
||||
include/KNotesIface.h
|
||||
include/calendar/calendardecoration.h
|
||||
include/calendar/plugin.h
|
||||
include/kdepim/exchangeaccount.h
|
||||
include/kdepim/exchangecalendar.h
|
||||
include/kdepim/exchangeclient.h
|
||||
include/kgantt/KGantt.h
|
||||
include/kgantt/KGanttBarConfig.h
|
||||
include/kgantt/KGanttItem.h
|
||||
|
@ -36,19 +40,25 @@ include/kpilot/pilotSerialDatabase.h
|
|||
include/kpilot/plugin.h
|
||||
include/kpilot/syncAction.h
|
||||
include/kpilot/uiDialog.h
|
||||
lib/kde3/libabbrowserconduit.la
|
||||
lib/kde3/libabbrowserconduit.so
|
||||
lib/kde3/libabbrowserconduit.so.0
|
||||
lib/kde3/kfile_vcf.la
|
||||
lib/kde3/kfile_vcf.so
|
||||
lib/kde3/libaddressconduit.la
|
||||
lib/kde3/libaddressconduit.so
|
||||
lib/kde3/libaddressconduit.so.0
|
||||
lib/kde3/libexpenseconduit.la
|
||||
lib/kde3/libexpenseconduit.so
|
||||
lib/kde3/libexpenseconduit.so.0
|
||||
lib/kde3/libkcm_alarmdaemonctrl.la
|
||||
lib/kde3/libkcm_alarmdaemonctrl.so
|
||||
lib/kde3/libkaddressbookpart.la
|
||||
lib/kde3/libkaddressbookpart.so
|
||||
lib/kde3/libknotesconduit.la
|
||||
lib/kde3/libknotesconduit.so
|
||||
lib/kde3/libknotesconduit.so.0
|
||||
lib/kde3/libkorg_birthdays.la
|
||||
lib/kde3/libkorg_birthdays.so
|
||||
lib/kde3/libkorg_datenums.la
|
||||
lib/kde3/libkorg_datenums.so
|
||||
lib/kde3/libkorg_exchange.la
|
||||
lib/kde3/libkorg_exchange.so
|
||||
lib/kde3/libkorg_holidays.la
|
||||
lib/kde3/libkorg_holidays.so
|
||||
lib/kde3/libkorg_projectview.la
|
||||
|
@ -61,6 +71,9 @@ lib/kde3/libnullconduit.so.0
|
|||
lib/kde3/libpopmailconduit.la
|
||||
lib/kde3/libpopmailconduit.so
|
||||
lib/kde3/libpopmailconduit.so.0
|
||||
lib/kde3/libtimeconduit.la
|
||||
lib/kde3/libtimeconduit.so
|
||||
lib/kde3/libtimeconduit.so.0
|
||||
lib/kde3/libtodoconduit.la
|
||||
lib/kde3/libtodoconduit.so
|
||||
lib/kde3/libtodoconduit.so.0
|
||||
|
@ -73,39 +86,79 @@ lib/libkalarmd.so.0
|
|||
lib/libkcal.la
|
||||
lib/libkcal.so
|
||||
lib/libkcal.so.2
|
||||
lib/libkcalsystem.la
|
||||
lib/libkcalsystem.so
|
||||
lib/libkcalsystem.so.0
|
||||
lib/libkdepim.la
|
||||
lib/libkdepim.so
|
||||
lib/libkdepim.so.1
|
||||
lib/libkgantt.la
|
||||
lib/libkgantt.so
|
||||
lib/libkgantt.so.0
|
||||
lib/libknewstuff.la
|
||||
lib/libknewstuff.so
|
||||
lib/libknewstuff.so.1
|
||||
lib/libkorganizer.la
|
||||
lib/libkorganizer.so
|
||||
lib/libkorganizer.so.1
|
||||
lib/libkpilot.la
|
||||
lib/libkpilot.so
|
||||
lib/libkpilot.so.0
|
||||
lib/libkpimexchange.la
|
||||
lib/libkpimexchange.so
|
||||
lib/libkpimexchange.so.1
|
||||
lib/libksync.la
|
||||
lib/libksync.so
|
||||
lib/libksync.so.1
|
||||
share/applnk/.hidden/kalarmd.desktop
|
||||
share/applnk/Applications/kalarm.desktop
|
||||
share/applnk/Applications/korganizer.desktop
|
||||
share/applnk/Settings/System/alarmdaemonctrl.desktop
|
||||
share/applnk/Utilities/More/kalarm.desktop
|
||||
share/applnk/Utilities/More/kandy.desktop
|
||||
share/applnk/Utilities/More/karm.desktop
|
||||
share/applnk/Utilities/kaddressbook.desktop
|
||||
share/applnk/Utilities/kandy.desktop
|
||||
share/applnk/Utilities/karm.desktop
|
||||
share/applnk/Utilities/knotes.desktop
|
||||
share/applnk/Utilities/kpilot.desktop
|
||||
share/applnk/Utilities/kpilotdaemon.desktop
|
||||
share/apps/kalarm/icons/hicolor/16x16/actions/eventdelete.png
|
||||
share/apps/kalarm/icons/hicolor/16x16/actions/eventnew.png
|
||||
share/apps/kalarm/icons/hicolor/16x16/actions/kalarm.png
|
||||
share/apps/kalarm/icons/hicolor/16x16/apps/kalarm.png
|
||||
share/apps/kalarm/icons/hicolor/22x22/actions/kalarm.png
|
||||
share/apps/kalarm/icons/hicolor/22x22/actions/kalarm_disabled.png
|
||||
share/apps/kalarm/icons/hicolor/32x32/apps/kalarm.png
|
||||
share/apps/kalarm/icons/hicolor/48x48/apps/kalarm.png
|
||||
share/apps/kalarm/icons/locolor/16x16/apps/kalarm.png
|
||||
share/apps/kalarm/icons/locolor/32x32/apps/kalarm.png
|
||||
share/apps/kalarmdgui/icons/hicolor/22x22/actions/kalarmdgui.png
|
||||
share/apps/kalarmdgui/icons/hicolor/22x22/actions/kalarmdgui_disabled.png
|
||||
share/apps/kaddressbook/csv-templates/kaddressbook.desktop
|
||||
share/apps/kaddressbook/csv-templates/outlook2000.desktop
|
||||
share/apps/kaddressbook/icons/crystalsvg/16x16/actions/ldap_lookup.png
|
||||
share/apps/kaddressbook/icons/crystalsvg/16x16/actions/smallcal.png
|
||||
share/apps/kaddressbook/icons/crystalsvg/32x32/actions/gohome.png
|
||||
share/apps/kaddressbook/icons/crystalsvg/32x32/actions/homepage.png
|
||||
share/apps/kaddressbook/icons/locolor/16x16/actions/contact.png
|
||||
share/apps/kaddressbook/icons/locolor/16x16/actions/down.png
|
||||
share/apps/kaddressbook/icons/locolor/16x16/actions/group.png
|
||||
share/apps/kaddressbook/icons/locolor/16x16/actions/up.png
|
||||
share/apps/kaddressbook/icons/locolor/22x22/actions/page.png
|
||||
share/apps/kaddressbook/kaddressbook_part.rc
|
||||
share/apps/kaddressbook/kaddressbookui.rc
|
||||
share/apps/kaddressbook/printing/detailed-style.png
|
||||
share/apps/kaddressbook/printing/mike-style.png
|
||||
share/apps/kalarm/icons/crystalsvg/16x16/actions/eventdelete.png
|
||||
share/apps/kalarm/icons/crystalsvg/16x16/actions/eventnew.png
|
||||
share/apps/kalarm/icons/crystalsvg/16x16/actions/file.png
|
||||
share/apps/kalarm/icons/crystalsvg/16x16/actions/kalarm.png
|
||||
share/apps/kalarm/icons/crystalsvg/16x16/actions/message.png
|
||||
share/apps/kalarm/icons/crystalsvg/16x16/actions/playsound.png
|
||||
share/apps/kalarm/icons/crystalsvg/22x22/actions/kalarm.png
|
||||
share/apps/kalarm/icons/crystalsvg/22x22/actions/kalarm_disabled.png
|
||||
share/apps/kalarmdgui/icons/crystalsvg/22x22/actions/kalarmdgui.png
|
||||
share/apps/kalarmdgui/icons/crystalsvg/22x22/actions/kalarmdgui_disabled.png
|
||||
share/apps/kandy/default.kandy
|
||||
share/apps/kandy/kandymobileui.rc
|
||||
share/apps/kandy/kandyui.rc
|
||||
share/apps/karm/karmui.rc
|
||||
share/apps/karm/pics/active-icon-0.xpm
|
||||
share/apps/karm/pics/active-icon-1.xpm
|
||||
share/apps/karm/pics/active-icon-2.xpm
|
||||
share/apps/karm/pics/active-icon-3.xpm
|
||||
share/apps/karm/pics/active-icon-4.xpm
|
||||
share/apps/karm/pics/active-icon-5.xpm
|
||||
share/apps/karm/pics/active-icon-6.xpm
|
||||
share/apps/karm/pics/active-icon-7.xpm
|
||||
share/apps/karm/pics/clock.xpm
|
||||
share/apps/karm/pics/clockedit.xpm
|
||||
share/apps/karm/pics/empty-watch.xpm
|
||||
|
@ -118,17 +171,18 @@ share/apps/karm/pics/watch-4.xpm
|
|||
share/apps/karm/pics/watch-5.xpm
|
||||
share/apps/karm/pics/watch-6.xpm
|
||||
share/apps/karm/pics/watch-7.xpm
|
||||
share/apps/kgantt/icons/hicolor/16x16/actions/ganttSelect.png
|
||||
share/apps/kgantt/icons/hicolor/16x16/actions/ganttSelecttask.png
|
||||
share/apps/kgantt/icons/hicolor/16x16/actions/ganttUnselecttask.png
|
||||
share/apps/kgantt/icons/hicolor/22x22/actions/ganttSelect.png
|
||||
share/apps/kgantt/icons/hicolor/22x22/actions/ganttSelecttask.png
|
||||
share/apps/kgantt/icons/hicolor/22x22/actions/ganttUnselecttask.png
|
||||
share/apps/kgantt/icons/hicolor/32x32/actions/ganttSelect.png
|
||||
share/apps/kgantt/icons/hicolor/32x32/actions/ganttSelecttask.png
|
||||
share/apps/kgantt/icons/hicolor/32x32/actions/ganttUnselecttask.png
|
||||
share/apps/kgantt/icons/crystalsvg/16x16/actions/ganttSelect.png
|
||||
share/apps/kgantt/icons/crystalsvg/16x16/actions/ganttSelecttask.png
|
||||
share/apps/kgantt/icons/crystalsvg/16x16/actions/ganttUnselecttask.png
|
||||
share/apps/kgantt/icons/crystalsvg/22x22/actions/ganttSelect.png
|
||||
share/apps/kgantt/icons/crystalsvg/22x22/actions/ganttSelecttask.png
|
||||
share/apps/kgantt/icons/crystalsvg/22x22/actions/ganttUnselecttask.png
|
||||
share/apps/kgantt/icons/crystalsvg/32x32/actions/ganttSelect.png
|
||||
share/apps/kgantt/icons/crystalsvg/32x32/actions/ganttSelecttask.png
|
||||
share/apps/kgantt/icons/crystalsvg/32x32/actions/ganttUnselecttask.png
|
||||
share/apps/knotes/knotesui.rc
|
||||
share/apps/knotes/pics/knotesclose.png
|
||||
share/apps/knotes/pics/knotesdate.png
|
||||
share/apps/knotes/pics/knotesdelete.png
|
||||
share/apps/knotes/pics/knoteslogo.png
|
||||
share/apps/korganizer/holiday_at
|
||||
|
@ -165,76 +219,80 @@ share/apps/korganizer/holiday_se
|
|||
share/apps/korganizer/holiday_si
|
||||
share/apps/korganizer/holiday_th
|
||||
share/apps/korganizer/holiday_us
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/1day.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/1downarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/1leftarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/1rightarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/1uparrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/2downarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/2leftarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/2rightarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/2uparrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/3downarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/3uparrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/5days.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/7days.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/appointment.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/bell.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/dayview.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/findf.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/groupevent.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/inverse_recur.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/list.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/mailappt.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/month.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/nomailappt.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/organizer.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/playsound.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/readonlyevent.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/recur.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/runprog.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/smallcal.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/smallclock.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/today.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/todo.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/webexport.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/whatsnext.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/1day.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/3leftarrow.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/3rightarrow.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/5days.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/7days.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/agenda.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/appointment.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/checkedbox.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/checkedbox/mask.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/checkedclipboard.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/checkmark.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/delete.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/emptybox.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/emptybox/mask.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/list.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/month.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/newrecurevent.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/newtodo.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/search.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/send.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/timespan.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/today.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/todo.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/webexport.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/whatsnext.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/1day.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/5days.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/7days.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/appointment.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/list.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/month.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/today.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/todo.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/1day.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/1downarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/1leftarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/1rightarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/1uparrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/2downarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/2leftarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/2rightarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/2uparrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/3downarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/3uparrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/5days.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/7days.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/appointment.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/bell.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/dayview.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/findf.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/groupevent.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/inverse_recur.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/list.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/mailappt.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/month.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/nomailappt.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/organizer.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/playsound.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/readonlyevent.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/recur.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/runprog.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/smallcal.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/smallclock.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/today.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/todo.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/webexport.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/whatsnext.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/1day.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/3leftarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/3rightarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/5days.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/7days.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/agenda.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/appointment.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/checkedbox.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/checkedbox_mask.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/checkedclipboard.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/checkmark.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/delete.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/emptybox.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/emptybox/mask.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/journal.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/list.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/month.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/newrecurevent.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/newtodo.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/search.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/send.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/timespan.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/today.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/todo.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/webexport.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/whatsnext.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/xdays.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/1day.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/5days.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/7days.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/appointment.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/list.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/month.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/today.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/todo.png
|
||||
share/apps/korganizer/korganizer_part.rc
|
||||
share/apps/korganizer/korganizergsui.rc
|
||||
share/apps/korganizer/korganizerui.rc
|
||||
share/apps/korganizer/plugins/birthdaysui.rc
|
||||
share/apps/korganizer/plugins/exchangeui.rc
|
||||
share/apps/korganizer/plugins/projectviewui.rc
|
||||
share/apps/korganizer/plugins/webexportui.rc
|
||||
share/apps/korganizer/sounds/alert.wav
|
||||
|
@ -243,21 +301,25 @@ share/apps/korganizer/sounds/lightmag.wav
|
|||
share/apps/korganizer/sounds/onscreen.wav
|
||||
share/apps/korganizer/sounds/spinout.wav
|
||||
share/apps/korganizer/tips
|
||||
share/apps/kpilot/icons/hicolor/16x16/actions/backup.png
|
||||
share/apps/kpilot/icons/hicolor/16x16/actions/busysync.png
|
||||
share/apps/kpilot/icons/hicolor/16x16/actions/fastsync.png
|
||||
share/apps/kpilot/icons/hicolor/16x16/actions/hotsync.png
|
||||
share/apps/kpilot/icons/hicolor/16x16/actions/restore.png
|
||||
share/apps/kpilot/icons/crystalsvg/16x16/actions/backup.png
|
||||
share/apps/kpilot/icons/crystalsvg/16x16/actions/busysync.png
|
||||
share/apps/kpilot/icons/crystalsvg/16x16/actions/fastsync.png
|
||||
share/apps/kpilot/icons/crystalsvg/16x16/actions/hotsync.png
|
||||
share/apps/kpilot/icons/crystalsvg/16x16/actions/restore.png
|
||||
share/apps/kpilot/kpilot-address.png
|
||||
share/apps/kpilot/kpilot-fileinstaller.png
|
||||
share/apps/kpilot/kpilot-hotsync.png
|
||||
share/apps/kpilot/kpilot-knotes.png
|
||||
share/apps/kpilot/kpilot-splash.png
|
||||
share/apps/kpilot/kpilotui.rc
|
||||
share/apps/ksync/ksyncui.rc
|
||||
share/autostart/kalarm.tray.desktop
|
||||
share/autostart/kalarmd.autostart.desktop
|
||||
share/autostart/korgac.desktop
|
||||
share/config/knotesrc
|
||||
share/doc/HTML/en/kaddressbook/common
|
||||
share/doc/HTML/en/kaddressbook/index.cache.bz2
|
||||
share/doc/HTML/en/kaddressbook/index.docbook
|
||||
share/doc/HTML/en/kalarm/alarmmessage.png
|
||||
share/doc/HTML/en/kalarm/common
|
||||
share/doc/HTML/en/kalarm/editwindow.png
|
||||
|
@ -271,6 +333,10 @@ share/doc/HTML/en/karm/common
|
|||
share/doc/HTML/en/karm/index.cache.bz2
|
||||
share/doc/HTML/en/karm/index.docbook
|
||||
share/doc/HTML/en/karm/karm.png
|
||||
share/doc/HTML/en/kcontrol/kalarmd/common
|
||||
share/doc/HTML/en/kcontrol/kalarmd/index.cache.bz2
|
||||
share/doc/HTML/en/kcontrol/kalarmd/index.docbook
|
||||
share/doc/HTML/en/kdepim-apidocs/common
|
||||
share/doc/HTML/en/knotes/common
|
||||
share/doc/HTML/en/knotes/index.cache.bz2
|
||||
share/doc/HTML/en/knotes/index.docbook
|
||||
|
@ -320,119 +386,203 @@ share/doc/HTML/en/kpilot/setup-general.png
|
|||
share/doc/HTML/en/kpilot/setup-sync.png
|
||||
share/doc/HTML/en/kpilot/toolbar_backup.png
|
||||
share/doc/HTML/en/kpilot/toolbar_hotsync.png
|
||||
share/icons/hicolor/16x16/actions/kalarm.png
|
||||
share/icons/hicolor/16x16/apps/kalarm.png
|
||||
share/icons/hicolor/16x16/apps/karm.png
|
||||
share/icons/hicolor/16x16/apps/knotes.png
|
||||
share/icons/hicolor/16x16/apps/korganizer.png
|
||||
share/icons/hicolor/16x16/apps/kpilot.png
|
||||
share/icons/hicolor/16x16/apps/kpilotDaemon.png
|
||||
share/icons/hicolor/22x22/actions/kalarm.png
|
||||
share/icons/hicolor/22x22/apps/kpilot.png
|
||||
share/icons/hicolor/32x32/apps/kalarm.png
|
||||
share/icons/hicolor/32x32/apps/karm.png
|
||||
share/icons/hicolor/32x32/apps/knotes.png
|
||||
share/icons/hicolor/32x32/apps/korganizer.png
|
||||
share/icons/hicolor/32x32/apps/kpilot.png
|
||||
share/icons/hicolor/48x48/apps/kalarm.png
|
||||
share/icons/hicolor/48x48/apps/karm.png
|
||||
share/icons/hicolor/48x48/apps/knotes.png
|
||||
share/icons/hicolor/48x48/apps/korganizer.png
|
||||
share/icons/hicolor/48x48/apps/kpilot.png
|
||||
share/icons/hicolor/48x48/apps/kpilotDaemon.png
|
||||
share/icons/crystalsvg/16x16/actions/kalarm.png
|
||||
share/icons/crystalsvg/16x16/apps/kaddressbook.png
|
||||
share/icons/crystalsvg/16x16/apps/kalarm.png
|
||||
share/icons/crystalsvg/16x16/apps/karm.png
|
||||
share/icons/crystalsvg/16x16/apps/knotes.png
|
||||
share/icons/crystalsvg/16x16/apps/korganizer.png
|
||||
share/icons/crystalsvg/16x16/apps/kpilot.png
|
||||
share/icons/crystalsvg/16x16/apps/kpilotDaemon.png
|
||||
share/icons/crystalsvg/22x22/actions/kalarm.png
|
||||
share/icons/crystalsvg/22x22/apps/kpilot.png
|
||||
share/icons/crystalsvg/32x32/apps/kaddressbook.png
|
||||
share/icons/crystalsvg/32x32/apps/kalarm.png
|
||||
share/icons/crystalsvg/32x32/apps/karm.png
|
||||
share/icons/crystalsvg/32x32/apps/knotes.png
|
||||
share/icons/crystalsvg/32x32/apps/korganizer.png
|
||||
share/icons/crystalsvg/32x32/apps/kpilot.png
|
||||
share/icons/crystalsvg/48x48/apps/kaddressbook.png
|
||||
share/icons/crystalsvg/48x48/apps/kalarm.png
|
||||
share/icons/crystalsvg/48x48/apps/karm.png
|
||||
share/icons/crystalsvg/48x48/apps/knotes.png
|
||||
share/icons/crystalsvg/48x48/apps/korganizer.png
|
||||
share/icons/crystalsvg/48x48/apps/kpilot.png
|
||||
share/icons/crystalsvg/48x48/apps/kpilotDaemon.png
|
||||
share/icons/locolor/16x16/apps/kalarm.png
|
||||
share/icons/locolor/16x16/apps/kpilot.png
|
||||
share/icons/locolor/32x32/apps/kalarm.png
|
||||
share/services/abbrowser_conduit.desktop
|
||||
share/services/expense-conduit.desktop
|
||||
share/services/kfile_vcf.desktop
|
||||
share/services/knotes-conduit.desktop
|
||||
share/services/korganizer/birthdays.desktop
|
||||
share/services/korganizer/datenums.desktop
|
||||
share/services/korganizer/exchange.desktop
|
||||
share/services/korganizer/holidays.desktop
|
||||
share/services/korganizer/projectview.desktop
|
||||
share/services/korganizer/webexport.desktop
|
||||
share/services/null-conduit.desktop
|
||||
share/services/popmail-conduit.desktop
|
||||
share/services/time_conduit.desktop
|
||||
share/services/todo-conduit.desktop
|
||||
share/services/vcal-conduit.desktop
|
||||
share/services/webcal.protocol
|
||||
share/servicetypes/calendardecoration.desktop
|
||||
share/servicetypes/calendarplugin.desktop
|
||||
share/servicetypes/korganizerpart.desktop
|
||||
share/servicetypes/kpilotconduit.desktop
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/calendarsystem/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kabc/kabc2mutt/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kaddressbook/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kalarm/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kalarmd/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kandy/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kfile-plugins/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kgantt/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/knotes/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/konsolekalendar/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/korganizer/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kpilot/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/ksync/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/libkcal/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/libkdepim/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/libkpimexchange/html
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/libkpimexchange/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/libkdepim/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/libkcal/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/ksync/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kpilot/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/korganizer/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/konsolekalendar/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/knotes/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kgantt/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kfile-plugins/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kandy/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kalarmd/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kalarm/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kaddressbook/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kabc/kabc2mutt/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/calendarsystem/html || true
|
||||
@dirrm share/servicetypes
|
||||
@dirrm share/services/korganizer
|
||||
@dirrm share/services
|
||||
@dirrm share/icons/locolor/32x32/apps
|
||||
@dirrm share/icons/locolor/32x32
|
||||
@dirrm share/icons/locolor/16x16/apps
|
||||
@dirrm share/icons/locolor/16x16
|
||||
@dirrm share/icons/locolor
|
||||
@dirrm share/icons/hicolor/48x48/apps
|
||||
@dirrm share/icons/hicolor/32x32/apps
|
||||
@dirrm share/icons/hicolor/22x22/apps
|
||||
@dirrm share/icons/crystalsvg/48x48/apps
|
||||
@dirrm share/icons/crystalsvg/48x48
|
||||
@dirrm share/icons/crystalsvg/32x32/apps
|
||||
@dirrm share/icons/crystalsvg/32x32
|
||||
@dirrm share/icons/crystalsvg/22x22/apps
|
||||
@dirrm share/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/icons/crystalsvg/22x22
|
||||
@dirrm share/icons/crystalsvg/16x16/apps
|
||||
@dirrm share/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/icons/crystalsvg/16x16
|
||||
@dirrm share/icons/crystalsvg
|
||||
@dirrm share/icons
|
||||
@dirrm share/doc/HTML/en/kpilot
|
||||
@dirrm share/doc/HTML/en/korganizer
|
||||
@dirrm share/doc/HTML/en/knotes
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/libkpimexchange
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/libkdepim
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/libkcal
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/ksync
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kpilot
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/korganizer
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/konsolekalendar
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/knotes
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kgantt
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kfile-plugins
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kandy
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kalarmd
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kalarm
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kaddressbook
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kabc/kabc2mutt
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kabc
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/calendarsystem
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs
|
||||
@dirrm share/doc/HTML/en/kcontrol/kalarmd
|
||||
@dirrm share/doc/HTML/en/kcontrol
|
||||
@dirrm share/doc/HTML/en/karm
|
||||
@dirrm share/doc/HTML/en/kandy
|
||||
@dirrm share/doc/HTML/en/kalarm
|
||||
@dirrm share/apps/kpilot/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/kpilot/icons/hicolor/16x16
|
||||
@dirrm share/apps/kpilot/icons/hicolor
|
||||
@dirrm share/doc/HTML/en/kaddressbook
|
||||
@dirrm share/doc/HTML/en
|
||||
@dirrm share/doc/HTML
|
||||
@dirrm share/doc
|
||||
@dirrm share/config
|
||||
@dirrm share/autostart
|
||||
@dirrm share/apps/ksync
|
||||
@dirrm share/apps/kpilot/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/kpilot/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/kpilot/icons/crystalsvg
|
||||
@dirrm share/apps/kpilot/icons
|
||||
@dirrm share/apps/kpilot
|
||||
@dirrm share/apps/korganizer/sounds
|
||||
@dirrm share/apps/korganizer/plugins
|
||||
@dirrm share/apps/korganizer/icons/hicolor/32x32/actions
|
||||
@dirrm share/apps/korganizer/icons/hicolor/32x32
|
||||
@dirrm share/apps/korganizer/icons/hicolor/22x22/actions/emptybox
|
||||
@dirrm share/apps/korganizer/icons/hicolor/22x22/actions/checkedbox
|
||||
@dirrm share/apps/korganizer/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/korganizer/icons/hicolor/22x22
|
||||
@dirrm share/apps/korganizer/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/korganizer/icons/hicolor/16x16
|
||||
@dirrm share/apps/korganizer/icons/hicolor
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/32x32/actions
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/32x32
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/22x22/actions/emptybox
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/22x22
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg
|
||||
@dirrm share/apps/korganizer/icons
|
||||
@dirrm share/apps/korganizer
|
||||
@dirrm share/apps/knotes/pics
|
||||
@dirrm share/apps/knotes
|
||||
@dirrm share/apps/kgantt/icons/hicolor/32x32/actions
|
||||
@dirrm share/apps/kgantt/icons/hicolor/32x32
|
||||
@dirrm share/apps/kgantt/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/kgantt/icons/hicolor/22x22
|
||||
@dirrm share/apps/kgantt/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/kgantt/icons/hicolor/16x16
|
||||
@dirrm share/apps/kgantt/icons/hicolor
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg/32x32/actions
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg/32x32
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg/22x22
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg
|
||||
@dirrm share/apps/kgantt/icons
|
||||
@dirrm share/apps/kgantt
|
||||
@dirrm share/apps/karm/pics
|
||||
@dirrm share/apps/karm
|
||||
@dirrm share/apps/kandy
|
||||
@dirrm share/apps/kalarmdgui/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/kalarmdgui/icons/hicolor/22x22
|
||||
@dirrm share/apps/kalarmdgui/icons/hicolor
|
||||
@dirrm share/apps/kalarmdgui/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/apps/kalarmdgui/icons/crystalsvg/22x22
|
||||
@dirrm share/apps/kalarmdgui/icons/crystalsvg
|
||||
@dirrm share/apps/kalarmdgui/icons
|
||||
@dirrm share/apps/kalarmdgui
|
||||
@dirrm share/apps/kalarm/icons/locolor/32x32/apps
|
||||
@dirrm share/apps/kalarm/icons/locolor/32x32
|
||||
@dirrm share/apps/kalarm/icons/locolor/16x16/apps
|
||||
@dirrm share/apps/kalarm/icons/locolor/16x16
|
||||
@dirrm share/apps/kalarm/icons/locolor
|
||||
@dirrm share/apps/kalarm/icons/hicolor/48x48/apps
|
||||
@dirrm share/apps/kalarm/icons/hicolor/48x48
|
||||
@dirrm share/apps/kalarm/icons/hicolor/32x32/apps
|
||||
@dirrm share/apps/kalarm/icons/hicolor/32x32
|
||||
@dirrm share/apps/kalarm/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/kalarm/icons/hicolor/22x22
|
||||
@dirrm share/apps/kalarm/icons/hicolor/16x16/apps
|
||||
@dirrm share/apps/kalarm/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/kalarm/icons/hicolor/16x16
|
||||
@dirrm share/apps/kalarm/icons/hicolor
|
||||
@dirrm share/apps/kalarm/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/apps/kalarm/icons/crystalsvg/22x22
|
||||
@dirrm share/apps/kalarm/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/kalarm/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/kalarm/icons/crystalsvg
|
||||
@dirrm share/apps/kalarm/icons
|
||||
@dirrm share/apps/kalarm
|
||||
@dirrm share/apps/kaddressbook/printing
|
||||
@dirrm share/apps/kaddressbook/icons/locolor/22x22/actions
|
||||
@dirrm share/apps/kaddressbook/icons/locolor/22x22
|
||||
@dirrm share/apps/kaddressbook/icons/locolor/16x16/actions
|
||||
@dirrm share/apps/kaddressbook/icons/locolor/16x16
|
||||
@dirrm share/apps/kaddressbook/icons/locolor
|
||||
@dirrm share/apps/kaddressbook/icons/crystalsvg/32x32/actions
|
||||
@dirrm share/apps/kaddressbook/icons/crystalsvg/32x32
|
||||
@dirrm share/apps/kaddressbook/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/kaddressbook/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/kaddressbook/icons/crystalsvg
|
||||
@dirrm share/apps/kaddressbook/icons
|
||||
@dirrm share/apps/kaddressbook/csv-templates
|
||||
@dirrm share/apps/kaddressbook
|
||||
@dirrm share/apps
|
||||
@dirrm share/applnk/Utilities/More
|
||||
@dirrm share/applnk/Utilities
|
||||
@dirrm share/applnk/Settings/System
|
||||
@dirrm share/applnk/Settings
|
||||
@dirrm share/applnk/Applications
|
||||
@dirrm share/applnk/.hidden
|
||||
@dirrm share/applnk
|
||||
@dirrm lib/kde3
|
||||
@dirrm include/kpilot
|
||||
@dirrm include/korganizer
|
||||
@dirrm include/kgantt
|
||||
@dirrm include/kdepim
|
||||
@dirrm include/calendar
|
||||
|
|
|
@ -17,12 +17,15 @@ MAINTAINER= kde@FreeBSD.org
|
|||
LIB_DEPENDS= pisock:${PORTSDIR}/palm/pilot-link
|
||||
|
||||
USE_KDELIBS_VER=3
|
||||
USE_BISON= yes
|
||||
PREFIX= ${KDE_PREFIX}
|
||||
|
||||
USE_BZIP2= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_BISON= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GMAKE= yes
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
INSTALLS_SHLIB= yes
|
||||
LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (KDE/kdepim-3.0.4.tar.bz2) = 0455afeec058386049a46e7ea5ec9363
|
||||
MD5 (KDE/kdepim-3.1.tar.bz2) = 9a416238193107ed2d937a3f5b02f579
|
||||
|
|
|
@ -1,29 +0,0 @@
|
|||
Index: libical/src/libical/icaltime.c
|
||||
===================================================================
|
||||
RCS file: /home/kde/kdepim/libical/src/libical/icaltime.c,v
|
||||
retrieving revision 1.5
|
||||
retrieving revision 1.6
|
||||
diff -u -3 -p -r1.5 -r1.6
|
||||
--- libical/src/libical/icaltime.c 2001/06/26 12:22:20 1.5
|
||||
+++ libical/src/libical/icaltime.c 2002/09/27 18:49:07 1.6
|
||||
@@ -3,7 +3,7 @@
|
||||
FILE: icaltime.c
|
||||
CREATOR: eric 02 June 2000
|
||||
|
||||
- $Id: icaltime.c,v 1.5 2001/06/26 12:22:20 cschumac Exp $
|
||||
+ $Id: icaltime.c,v 1.6 2002/09/27 18:49:07 adridg Exp $
|
||||
$Locker: $
|
||||
|
||||
(C) COPYRIGHT 2000, Eric Busboom, http://www.softwarestudio.org
|
||||
@@ -141,7 +141,11 @@ void unset_tz(struct set_tz_save savetz)
|
||||
|
||||
free(orig_tzid);
|
||||
} else {
|
||||
+#ifdef __FreeBSD__
|
||||
+ unsetenv("TZ");
|
||||
+#else
|
||||
putenv("TZ"); /* Delete from environment */
|
||||
+#endif
|
||||
}
|
||||
|
||||
if(savetz.new_env_str != 0){
|
|
@ -1,11 +0,0 @@
|
|||
--- libical/src/libicalvcal/vcc.y Mon Jan 1 16:49:58 2001
|
||||
+++ libical/src/libicalvcal/vcc.y.new Sun Jun 2 12:42:57 2002
|
||||
@@ -107,7 +107,7 @@
|
||||
#endif
|
||||
|
||||
#include <string.h>
|
||||
-#ifndef __MWERKS__
|
||||
+#if !defined(__MWERKS__) && !defined(__FreeBSD__)
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
#include <stdio.h>
|
|
@ -1,11 +0,0 @@
|
|||
--- libical/src/libicalvcal/vobject.c Mon Jan 1 16:37:08 2001
|
||||
+++ libical/src/libicalvcal/vobject.c.new Mon Jun 3 02:49:58 2002
|
||||
@@ -42,7 +42,7 @@
|
||||
* vobject, and convert a vobject into its textual representation.
|
||||
*/
|
||||
|
||||
-#ifndef MWERKS
|
||||
+#if !defined(MWERKS) && !defined(__FreeBSD__)
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
bin/ical2vcal
|
||||
bin/kabcfrontend
|
||||
bin/kabc2mutt
|
||||
bin/kaddressbook
|
||||
bin/kalarm
|
||||
bin/kalarmautostart
|
||||
bin/kalarmd
|
||||
bin/kandy
|
||||
bin/kandy_client
|
||||
|
@ -13,9 +13,13 @@ bin/korganizer
|
|||
bin/korganizerIn
|
||||
bin/kpilot
|
||||
bin/kpilotDaemon
|
||||
bin/ksync
|
||||
include/KNotesIface.h
|
||||
include/calendar/calendardecoration.h
|
||||
include/calendar/plugin.h
|
||||
include/kdepim/exchangeaccount.h
|
||||
include/kdepim/exchangecalendar.h
|
||||
include/kdepim/exchangeclient.h
|
||||
include/kgantt/KGantt.h
|
||||
include/kgantt/KGanttBarConfig.h
|
||||
include/kgantt/KGanttItem.h
|
||||
|
@ -36,19 +40,25 @@ include/kpilot/pilotSerialDatabase.h
|
|||
include/kpilot/plugin.h
|
||||
include/kpilot/syncAction.h
|
||||
include/kpilot/uiDialog.h
|
||||
lib/kde3/libabbrowserconduit.la
|
||||
lib/kde3/libabbrowserconduit.so
|
||||
lib/kde3/libabbrowserconduit.so.0
|
||||
lib/kde3/kfile_vcf.la
|
||||
lib/kde3/kfile_vcf.so
|
||||
lib/kde3/libaddressconduit.la
|
||||
lib/kde3/libaddressconduit.so
|
||||
lib/kde3/libaddressconduit.so.0
|
||||
lib/kde3/libexpenseconduit.la
|
||||
lib/kde3/libexpenseconduit.so
|
||||
lib/kde3/libexpenseconduit.so.0
|
||||
lib/kde3/libkcm_alarmdaemonctrl.la
|
||||
lib/kde3/libkcm_alarmdaemonctrl.so
|
||||
lib/kde3/libkaddressbookpart.la
|
||||
lib/kde3/libkaddressbookpart.so
|
||||
lib/kde3/libknotesconduit.la
|
||||
lib/kde3/libknotesconduit.so
|
||||
lib/kde3/libknotesconduit.so.0
|
||||
lib/kde3/libkorg_birthdays.la
|
||||
lib/kde3/libkorg_birthdays.so
|
||||
lib/kde3/libkorg_datenums.la
|
||||
lib/kde3/libkorg_datenums.so
|
||||
lib/kde3/libkorg_exchange.la
|
||||
lib/kde3/libkorg_exchange.so
|
||||
lib/kde3/libkorg_holidays.la
|
||||
lib/kde3/libkorg_holidays.so
|
||||
lib/kde3/libkorg_projectview.la
|
||||
|
@ -61,6 +71,9 @@ lib/kde3/libnullconduit.so.0
|
|||
lib/kde3/libpopmailconduit.la
|
||||
lib/kde3/libpopmailconduit.so
|
||||
lib/kde3/libpopmailconduit.so.0
|
||||
lib/kde3/libtimeconduit.la
|
||||
lib/kde3/libtimeconduit.so
|
||||
lib/kde3/libtimeconduit.so.0
|
||||
lib/kde3/libtodoconduit.la
|
||||
lib/kde3/libtodoconduit.so
|
||||
lib/kde3/libtodoconduit.so.0
|
||||
|
@ -73,39 +86,79 @@ lib/libkalarmd.so.0
|
|||
lib/libkcal.la
|
||||
lib/libkcal.so
|
||||
lib/libkcal.so.2
|
||||
lib/libkcalsystem.la
|
||||
lib/libkcalsystem.so
|
||||
lib/libkcalsystem.so.0
|
||||
lib/libkdepim.la
|
||||
lib/libkdepim.so
|
||||
lib/libkdepim.so.1
|
||||
lib/libkgantt.la
|
||||
lib/libkgantt.so
|
||||
lib/libkgantt.so.0
|
||||
lib/libknewstuff.la
|
||||
lib/libknewstuff.so
|
||||
lib/libknewstuff.so.1
|
||||
lib/libkorganizer.la
|
||||
lib/libkorganizer.so
|
||||
lib/libkorganizer.so.1
|
||||
lib/libkpilot.la
|
||||
lib/libkpilot.so
|
||||
lib/libkpilot.so.0
|
||||
lib/libkpimexchange.la
|
||||
lib/libkpimexchange.so
|
||||
lib/libkpimexchange.so.1
|
||||
lib/libksync.la
|
||||
lib/libksync.so
|
||||
lib/libksync.so.1
|
||||
share/applnk/.hidden/kalarmd.desktop
|
||||
share/applnk/Applications/kalarm.desktop
|
||||
share/applnk/Applications/korganizer.desktop
|
||||
share/applnk/Settings/System/alarmdaemonctrl.desktop
|
||||
share/applnk/Utilities/More/kalarm.desktop
|
||||
share/applnk/Utilities/More/kandy.desktop
|
||||
share/applnk/Utilities/More/karm.desktop
|
||||
share/applnk/Utilities/kaddressbook.desktop
|
||||
share/applnk/Utilities/kandy.desktop
|
||||
share/applnk/Utilities/karm.desktop
|
||||
share/applnk/Utilities/knotes.desktop
|
||||
share/applnk/Utilities/kpilot.desktop
|
||||
share/applnk/Utilities/kpilotdaemon.desktop
|
||||
share/apps/kalarm/icons/hicolor/16x16/actions/eventdelete.png
|
||||
share/apps/kalarm/icons/hicolor/16x16/actions/eventnew.png
|
||||
share/apps/kalarm/icons/hicolor/16x16/actions/kalarm.png
|
||||
share/apps/kalarm/icons/hicolor/16x16/apps/kalarm.png
|
||||
share/apps/kalarm/icons/hicolor/22x22/actions/kalarm.png
|
||||
share/apps/kalarm/icons/hicolor/22x22/actions/kalarm_disabled.png
|
||||
share/apps/kalarm/icons/hicolor/32x32/apps/kalarm.png
|
||||
share/apps/kalarm/icons/hicolor/48x48/apps/kalarm.png
|
||||
share/apps/kalarm/icons/locolor/16x16/apps/kalarm.png
|
||||
share/apps/kalarm/icons/locolor/32x32/apps/kalarm.png
|
||||
share/apps/kalarmdgui/icons/hicolor/22x22/actions/kalarmdgui.png
|
||||
share/apps/kalarmdgui/icons/hicolor/22x22/actions/kalarmdgui_disabled.png
|
||||
share/apps/kaddressbook/csv-templates/kaddressbook.desktop
|
||||
share/apps/kaddressbook/csv-templates/outlook2000.desktop
|
||||
share/apps/kaddressbook/icons/crystalsvg/16x16/actions/ldap_lookup.png
|
||||
share/apps/kaddressbook/icons/crystalsvg/16x16/actions/smallcal.png
|
||||
share/apps/kaddressbook/icons/crystalsvg/32x32/actions/gohome.png
|
||||
share/apps/kaddressbook/icons/crystalsvg/32x32/actions/homepage.png
|
||||
share/apps/kaddressbook/icons/locolor/16x16/actions/contact.png
|
||||
share/apps/kaddressbook/icons/locolor/16x16/actions/down.png
|
||||
share/apps/kaddressbook/icons/locolor/16x16/actions/group.png
|
||||
share/apps/kaddressbook/icons/locolor/16x16/actions/up.png
|
||||
share/apps/kaddressbook/icons/locolor/22x22/actions/page.png
|
||||
share/apps/kaddressbook/kaddressbook_part.rc
|
||||
share/apps/kaddressbook/kaddressbookui.rc
|
||||
share/apps/kaddressbook/printing/detailed-style.png
|
||||
share/apps/kaddressbook/printing/mike-style.png
|
||||
share/apps/kalarm/icons/crystalsvg/16x16/actions/eventdelete.png
|
||||
share/apps/kalarm/icons/crystalsvg/16x16/actions/eventnew.png
|
||||
share/apps/kalarm/icons/crystalsvg/16x16/actions/file.png
|
||||
share/apps/kalarm/icons/crystalsvg/16x16/actions/kalarm.png
|
||||
share/apps/kalarm/icons/crystalsvg/16x16/actions/message.png
|
||||
share/apps/kalarm/icons/crystalsvg/16x16/actions/playsound.png
|
||||
share/apps/kalarm/icons/crystalsvg/22x22/actions/kalarm.png
|
||||
share/apps/kalarm/icons/crystalsvg/22x22/actions/kalarm_disabled.png
|
||||
share/apps/kalarmdgui/icons/crystalsvg/22x22/actions/kalarmdgui.png
|
||||
share/apps/kalarmdgui/icons/crystalsvg/22x22/actions/kalarmdgui_disabled.png
|
||||
share/apps/kandy/default.kandy
|
||||
share/apps/kandy/kandymobileui.rc
|
||||
share/apps/kandy/kandyui.rc
|
||||
share/apps/karm/karmui.rc
|
||||
share/apps/karm/pics/active-icon-0.xpm
|
||||
share/apps/karm/pics/active-icon-1.xpm
|
||||
share/apps/karm/pics/active-icon-2.xpm
|
||||
share/apps/karm/pics/active-icon-3.xpm
|
||||
share/apps/karm/pics/active-icon-4.xpm
|
||||
share/apps/karm/pics/active-icon-5.xpm
|
||||
share/apps/karm/pics/active-icon-6.xpm
|
||||
share/apps/karm/pics/active-icon-7.xpm
|
||||
share/apps/karm/pics/clock.xpm
|
||||
share/apps/karm/pics/clockedit.xpm
|
||||
share/apps/karm/pics/empty-watch.xpm
|
||||
|
@ -118,17 +171,18 @@ share/apps/karm/pics/watch-4.xpm
|
|||
share/apps/karm/pics/watch-5.xpm
|
||||
share/apps/karm/pics/watch-6.xpm
|
||||
share/apps/karm/pics/watch-7.xpm
|
||||
share/apps/kgantt/icons/hicolor/16x16/actions/ganttSelect.png
|
||||
share/apps/kgantt/icons/hicolor/16x16/actions/ganttSelecttask.png
|
||||
share/apps/kgantt/icons/hicolor/16x16/actions/ganttUnselecttask.png
|
||||
share/apps/kgantt/icons/hicolor/22x22/actions/ganttSelect.png
|
||||
share/apps/kgantt/icons/hicolor/22x22/actions/ganttSelecttask.png
|
||||
share/apps/kgantt/icons/hicolor/22x22/actions/ganttUnselecttask.png
|
||||
share/apps/kgantt/icons/hicolor/32x32/actions/ganttSelect.png
|
||||
share/apps/kgantt/icons/hicolor/32x32/actions/ganttSelecttask.png
|
||||
share/apps/kgantt/icons/hicolor/32x32/actions/ganttUnselecttask.png
|
||||
share/apps/kgantt/icons/crystalsvg/16x16/actions/ganttSelect.png
|
||||
share/apps/kgantt/icons/crystalsvg/16x16/actions/ganttSelecttask.png
|
||||
share/apps/kgantt/icons/crystalsvg/16x16/actions/ganttUnselecttask.png
|
||||
share/apps/kgantt/icons/crystalsvg/22x22/actions/ganttSelect.png
|
||||
share/apps/kgantt/icons/crystalsvg/22x22/actions/ganttSelecttask.png
|
||||
share/apps/kgantt/icons/crystalsvg/22x22/actions/ganttUnselecttask.png
|
||||
share/apps/kgantt/icons/crystalsvg/32x32/actions/ganttSelect.png
|
||||
share/apps/kgantt/icons/crystalsvg/32x32/actions/ganttSelecttask.png
|
||||
share/apps/kgantt/icons/crystalsvg/32x32/actions/ganttUnselecttask.png
|
||||
share/apps/knotes/knotesui.rc
|
||||
share/apps/knotes/pics/knotesclose.png
|
||||
share/apps/knotes/pics/knotesdate.png
|
||||
share/apps/knotes/pics/knotesdelete.png
|
||||
share/apps/knotes/pics/knoteslogo.png
|
||||
share/apps/korganizer/holiday_at
|
||||
|
@ -165,76 +219,80 @@ share/apps/korganizer/holiday_se
|
|||
share/apps/korganizer/holiday_si
|
||||
share/apps/korganizer/holiday_th
|
||||
share/apps/korganizer/holiday_us
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/1day.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/1downarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/1leftarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/1rightarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/1uparrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/2downarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/2leftarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/2rightarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/2uparrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/3downarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/3uparrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/5days.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/7days.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/appointment.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/bell.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/dayview.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/findf.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/groupevent.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/inverse_recur.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/list.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/mailappt.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/month.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/nomailappt.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/organizer.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/playsound.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/readonlyevent.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/recur.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/runprog.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/smallcal.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/smallclock.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/today.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/todo.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/webexport.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/whatsnext.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/1day.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/3leftarrow.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/3rightarrow.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/5days.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/7days.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/agenda.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/appointment.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/checkedbox.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/checkedbox/mask.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/checkedclipboard.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/checkmark.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/delete.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/emptybox.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/emptybox/mask.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/list.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/month.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/newrecurevent.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/newtodo.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/search.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/send.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/timespan.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/today.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/todo.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/webexport.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/whatsnext.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/1day.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/5days.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/7days.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/appointment.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/list.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/month.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/today.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/todo.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/1day.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/1downarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/1leftarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/1rightarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/1uparrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/2downarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/2leftarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/2rightarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/2uparrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/3downarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/3uparrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/5days.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/7days.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/appointment.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/bell.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/dayview.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/findf.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/groupevent.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/inverse_recur.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/list.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/mailappt.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/month.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/nomailappt.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/organizer.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/playsound.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/readonlyevent.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/recur.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/runprog.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/smallcal.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/smallclock.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/today.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/todo.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/webexport.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/whatsnext.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/1day.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/3leftarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/3rightarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/5days.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/7days.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/agenda.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/appointment.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/checkedbox.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/checkedbox_mask.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/checkedclipboard.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/checkmark.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/delete.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/emptybox.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/emptybox/mask.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/journal.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/list.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/month.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/newrecurevent.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/newtodo.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/search.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/send.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/timespan.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/today.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/todo.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/webexport.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/whatsnext.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/xdays.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/1day.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/5days.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/7days.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/appointment.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/list.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/month.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/today.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/todo.png
|
||||
share/apps/korganizer/korganizer_part.rc
|
||||
share/apps/korganizer/korganizergsui.rc
|
||||
share/apps/korganizer/korganizerui.rc
|
||||
share/apps/korganizer/plugins/birthdaysui.rc
|
||||
share/apps/korganizer/plugins/exchangeui.rc
|
||||
share/apps/korganizer/plugins/projectviewui.rc
|
||||
share/apps/korganizer/plugins/webexportui.rc
|
||||
share/apps/korganizer/sounds/alert.wav
|
||||
|
@ -243,21 +301,25 @@ share/apps/korganizer/sounds/lightmag.wav
|
|||
share/apps/korganizer/sounds/onscreen.wav
|
||||
share/apps/korganizer/sounds/spinout.wav
|
||||
share/apps/korganizer/tips
|
||||
share/apps/kpilot/icons/hicolor/16x16/actions/backup.png
|
||||
share/apps/kpilot/icons/hicolor/16x16/actions/busysync.png
|
||||
share/apps/kpilot/icons/hicolor/16x16/actions/fastsync.png
|
||||
share/apps/kpilot/icons/hicolor/16x16/actions/hotsync.png
|
||||
share/apps/kpilot/icons/hicolor/16x16/actions/restore.png
|
||||
share/apps/kpilot/icons/crystalsvg/16x16/actions/backup.png
|
||||
share/apps/kpilot/icons/crystalsvg/16x16/actions/busysync.png
|
||||
share/apps/kpilot/icons/crystalsvg/16x16/actions/fastsync.png
|
||||
share/apps/kpilot/icons/crystalsvg/16x16/actions/hotsync.png
|
||||
share/apps/kpilot/icons/crystalsvg/16x16/actions/restore.png
|
||||
share/apps/kpilot/kpilot-address.png
|
||||
share/apps/kpilot/kpilot-fileinstaller.png
|
||||
share/apps/kpilot/kpilot-hotsync.png
|
||||
share/apps/kpilot/kpilot-knotes.png
|
||||
share/apps/kpilot/kpilot-splash.png
|
||||
share/apps/kpilot/kpilotui.rc
|
||||
share/apps/ksync/ksyncui.rc
|
||||
share/autostart/kalarm.tray.desktop
|
||||
share/autostart/kalarmd.autostart.desktop
|
||||
share/autostart/korgac.desktop
|
||||
share/config/knotesrc
|
||||
share/doc/HTML/en/kaddressbook/common
|
||||
share/doc/HTML/en/kaddressbook/index.cache.bz2
|
||||
share/doc/HTML/en/kaddressbook/index.docbook
|
||||
share/doc/HTML/en/kalarm/alarmmessage.png
|
||||
share/doc/HTML/en/kalarm/common
|
||||
share/doc/HTML/en/kalarm/editwindow.png
|
||||
|
@ -271,6 +333,10 @@ share/doc/HTML/en/karm/common
|
|||
share/doc/HTML/en/karm/index.cache.bz2
|
||||
share/doc/HTML/en/karm/index.docbook
|
||||
share/doc/HTML/en/karm/karm.png
|
||||
share/doc/HTML/en/kcontrol/kalarmd/common
|
||||
share/doc/HTML/en/kcontrol/kalarmd/index.cache.bz2
|
||||
share/doc/HTML/en/kcontrol/kalarmd/index.docbook
|
||||
share/doc/HTML/en/kdepim-apidocs/common
|
||||
share/doc/HTML/en/knotes/common
|
||||
share/doc/HTML/en/knotes/index.cache.bz2
|
||||
share/doc/HTML/en/knotes/index.docbook
|
||||
|
@ -320,119 +386,203 @@ share/doc/HTML/en/kpilot/setup-general.png
|
|||
share/doc/HTML/en/kpilot/setup-sync.png
|
||||
share/doc/HTML/en/kpilot/toolbar_backup.png
|
||||
share/doc/HTML/en/kpilot/toolbar_hotsync.png
|
||||
share/icons/hicolor/16x16/actions/kalarm.png
|
||||
share/icons/hicolor/16x16/apps/kalarm.png
|
||||
share/icons/hicolor/16x16/apps/karm.png
|
||||
share/icons/hicolor/16x16/apps/knotes.png
|
||||
share/icons/hicolor/16x16/apps/korganizer.png
|
||||
share/icons/hicolor/16x16/apps/kpilot.png
|
||||
share/icons/hicolor/16x16/apps/kpilotDaemon.png
|
||||
share/icons/hicolor/22x22/actions/kalarm.png
|
||||
share/icons/hicolor/22x22/apps/kpilot.png
|
||||
share/icons/hicolor/32x32/apps/kalarm.png
|
||||
share/icons/hicolor/32x32/apps/karm.png
|
||||
share/icons/hicolor/32x32/apps/knotes.png
|
||||
share/icons/hicolor/32x32/apps/korganizer.png
|
||||
share/icons/hicolor/32x32/apps/kpilot.png
|
||||
share/icons/hicolor/48x48/apps/kalarm.png
|
||||
share/icons/hicolor/48x48/apps/karm.png
|
||||
share/icons/hicolor/48x48/apps/knotes.png
|
||||
share/icons/hicolor/48x48/apps/korganizer.png
|
||||
share/icons/hicolor/48x48/apps/kpilot.png
|
||||
share/icons/hicolor/48x48/apps/kpilotDaemon.png
|
||||
share/icons/crystalsvg/16x16/actions/kalarm.png
|
||||
share/icons/crystalsvg/16x16/apps/kaddressbook.png
|
||||
share/icons/crystalsvg/16x16/apps/kalarm.png
|
||||
share/icons/crystalsvg/16x16/apps/karm.png
|
||||
share/icons/crystalsvg/16x16/apps/knotes.png
|
||||
share/icons/crystalsvg/16x16/apps/korganizer.png
|
||||
share/icons/crystalsvg/16x16/apps/kpilot.png
|
||||
share/icons/crystalsvg/16x16/apps/kpilotDaemon.png
|
||||
share/icons/crystalsvg/22x22/actions/kalarm.png
|
||||
share/icons/crystalsvg/22x22/apps/kpilot.png
|
||||
share/icons/crystalsvg/32x32/apps/kaddressbook.png
|
||||
share/icons/crystalsvg/32x32/apps/kalarm.png
|
||||
share/icons/crystalsvg/32x32/apps/karm.png
|
||||
share/icons/crystalsvg/32x32/apps/knotes.png
|
||||
share/icons/crystalsvg/32x32/apps/korganizer.png
|
||||
share/icons/crystalsvg/32x32/apps/kpilot.png
|
||||
share/icons/crystalsvg/48x48/apps/kaddressbook.png
|
||||
share/icons/crystalsvg/48x48/apps/kalarm.png
|
||||
share/icons/crystalsvg/48x48/apps/karm.png
|
||||
share/icons/crystalsvg/48x48/apps/knotes.png
|
||||
share/icons/crystalsvg/48x48/apps/korganizer.png
|
||||
share/icons/crystalsvg/48x48/apps/kpilot.png
|
||||
share/icons/crystalsvg/48x48/apps/kpilotDaemon.png
|
||||
share/icons/locolor/16x16/apps/kalarm.png
|
||||
share/icons/locolor/16x16/apps/kpilot.png
|
||||
share/icons/locolor/32x32/apps/kalarm.png
|
||||
share/services/abbrowser_conduit.desktop
|
||||
share/services/expense-conduit.desktop
|
||||
share/services/kfile_vcf.desktop
|
||||
share/services/knotes-conduit.desktop
|
||||
share/services/korganizer/birthdays.desktop
|
||||
share/services/korganizer/datenums.desktop
|
||||
share/services/korganizer/exchange.desktop
|
||||
share/services/korganizer/holidays.desktop
|
||||
share/services/korganizer/projectview.desktop
|
||||
share/services/korganizer/webexport.desktop
|
||||
share/services/null-conduit.desktop
|
||||
share/services/popmail-conduit.desktop
|
||||
share/services/time_conduit.desktop
|
||||
share/services/todo-conduit.desktop
|
||||
share/services/vcal-conduit.desktop
|
||||
share/services/webcal.protocol
|
||||
share/servicetypes/calendardecoration.desktop
|
||||
share/servicetypes/calendarplugin.desktop
|
||||
share/servicetypes/korganizerpart.desktop
|
||||
share/servicetypes/kpilotconduit.desktop
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/calendarsystem/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kabc/kabc2mutt/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kaddressbook/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kalarm/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kalarmd/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kandy/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kfile-plugins/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kgantt/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/knotes/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/konsolekalendar/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/korganizer/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kpilot/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/ksync/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/libkcal/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/libkdepim/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/libkpimexchange/html
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/libkpimexchange/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/libkdepim/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/libkcal/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/ksync/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kpilot/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/korganizer/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/konsolekalendar/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/knotes/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kgantt/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kfile-plugins/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kandy/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kalarmd/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kalarm/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kaddressbook/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kabc/kabc2mutt/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/calendarsystem/html || true
|
||||
@dirrm share/servicetypes
|
||||
@dirrm share/services/korganizer
|
||||
@dirrm share/services
|
||||
@dirrm share/icons/locolor/32x32/apps
|
||||
@dirrm share/icons/locolor/32x32
|
||||
@dirrm share/icons/locolor/16x16/apps
|
||||
@dirrm share/icons/locolor/16x16
|
||||
@dirrm share/icons/locolor
|
||||
@dirrm share/icons/hicolor/48x48/apps
|
||||
@dirrm share/icons/hicolor/32x32/apps
|
||||
@dirrm share/icons/hicolor/22x22/apps
|
||||
@dirrm share/icons/crystalsvg/48x48/apps
|
||||
@dirrm share/icons/crystalsvg/48x48
|
||||
@dirrm share/icons/crystalsvg/32x32/apps
|
||||
@dirrm share/icons/crystalsvg/32x32
|
||||
@dirrm share/icons/crystalsvg/22x22/apps
|
||||
@dirrm share/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/icons/crystalsvg/22x22
|
||||
@dirrm share/icons/crystalsvg/16x16/apps
|
||||
@dirrm share/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/icons/crystalsvg/16x16
|
||||
@dirrm share/icons/crystalsvg
|
||||
@dirrm share/icons
|
||||
@dirrm share/doc/HTML/en/kpilot
|
||||
@dirrm share/doc/HTML/en/korganizer
|
||||
@dirrm share/doc/HTML/en/knotes
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/libkpimexchange
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/libkdepim
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/libkcal
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/ksync
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kpilot
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/korganizer
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/konsolekalendar
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/knotes
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kgantt
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kfile-plugins
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kandy
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kalarmd
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kalarm
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kaddressbook
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kabc/kabc2mutt
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kabc
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/calendarsystem
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs
|
||||
@dirrm share/doc/HTML/en/kcontrol/kalarmd
|
||||
@dirrm share/doc/HTML/en/kcontrol
|
||||
@dirrm share/doc/HTML/en/karm
|
||||
@dirrm share/doc/HTML/en/kandy
|
||||
@dirrm share/doc/HTML/en/kalarm
|
||||
@dirrm share/apps/kpilot/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/kpilot/icons/hicolor/16x16
|
||||
@dirrm share/apps/kpilot/icons/hicolor
|
||||
@dirrm share/doc/HTML/en/kaddressbook
|
||||
@dirrm share/doc/HTML/en
|
||||
@dirrm share/doc/HTML
|
||||
@dirrm share/doc
|
||||
@dirrm share/config
|
||||
@dirrm share/autostart
|
||||
@dirrm share/apps/ksync
|
||||
@dirrm share/apps/kpilot/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/kpilot/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/kpilot/icons/crystalsvg
|
||||
@dirrm share/apps/kpilot/icons
|
||||
@dirrm share/apps/kpilot
|
||||
@dirrm share/apps/korganizer/sounds
|
||||
@dirrm share/apps/korganizer/plugins
|
||||
@dirrm share/apps/korganizer/icons/hicolor/32x32/actions
|
||||
@dirrm share/apps/korganizer/icons/hicolor/32x32
|
||||
@dirrm share/apps/korganizer/icons/hicolor/22x22/actions/emptybox
|
||||
@dirrm share/apps/korganizer/icons/hicolor/22x22/actions/checkedbox
|
||||
@dirrm share/apps/korganizer/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/korganizer/icons/hicolor/22x22
|
||||
@dirrm share/apps/korganizer/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/korganizer/icons/hicolor/16x16
|
||||
@dirrm share/apps/korganizer/icons/hicolor
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/32x32/actions
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/32x32
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/22x22/actions/emptybox
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/22x22
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg
|
||||
@dirrm share/apps/korganizer/icons
|
||||
@dirrm share/apps/korganizer
|
||||
@dirrm share/apps/knotes/pics
|
||||
@dirrm share/apps/knotes
|
||||
@dirrm share/apps/kgantt/icons/hicolor/32x32/actions
|
||||
@dirrm share/apps/kgantt/icons/hicolor/32x32
|
||||
@dirrm share/apps/kgantt/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/kgantt/icons/hicolor/22x22
|
||||
@dirrm share/apps/kgantt/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/kgantt/icons/hicolor/16x16
|
||||
@dirrm share/apps/kgantt/icons/hicolor
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg/32x32/actions
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg/32x32
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg/22x22
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg
|
||||
@dirrm share/apps/kgantt/icons
|
||||
@dirrm share/apps/kgantt
|
||||
@dirrm share/apps/karm/pics
|
||||
@dirrm share/apps/karm
|
||||
@dirrm share/apps/kandy
|
||||
@dirrm share/apps/kalarmdgui/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/kalarmdgui/icons/hicolor/22x22
|
||||
@dirrm share/apps/kalarmdgui/icons/hicolor
|
||||
@dirrm share/apps/kalarmdgui/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/apps/kalarmdgui/icons/crystalsvg/22x22
|
||||
@dirrm share/apps/kalarmdgui/icons/crystalsvg
|
||||
@dirrm share/apps/kalarmdgui/icons
|
||||
@dirrm share/apps/kalarmdgui
|
||||
@dirrm share/apps/kalarm/icons/locolor/32x32/apps
|
||||
@dirrm share/apps/kalarm/icons/locolor/32x32
|
||||
@dirrm share/apps/kalarm/icons/locolor/16x16/apps
|
||||
@dirrm share/apps/kalarm/icons/locolor/16x16
|
||||
@dirrm share/apps/kalarm/icons/locolor
|
||||
@dirrm share/apps/kalarm/icons/hicolor/48x48/apps
|
||||
@dirrm share/apps/kalarm/icons/hicolor/48x48
|
||||
@dirrm share/apps/kalarm/icons/hicolor/32x32/apps
|
||||
@dirrm share/apps/kalarm/icons/hicolor/32x32
|
||||
@dirrm share/apps/kalarm/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/kalarm/icons/hicolor/22x22
|
||||
@dirrm share/apps/kalarm/icons/hicolor/16x16/apps
|
||||
@dirrm share/apps/kalarm/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/kalarm/icons/hicolor/16x16
|
||||
@dirrm share/apps/kalarm/icons/hicolor
|
||||
@dirrm share/apps/kalarm/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/apps/kalarm/icons/crystalsvg/22x22
|
||||
@dirrm share/apps/kalarm/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/kalarm/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/kalarm/icons/crystalsvg
|
||||
@dirrm share/apps/kalarm/icons
|
||||
@dirrm share/apps/kalarm
|
||||
@dirrm share/apps/kaddressbook/printing
|
||||
@dirrm share/apps/kaddressbook/icons/locolor/22x22/actions
|
||||
@dirrm share/apps/kaddressbook/icons/locolor/22x22
|
||||
@dirrm share/apps/kaddressbook/icons/locolor/16x16/actions
|
||||
@dirrm share/apps/kaddressbook/icons/locolor/16x16
|
||||
@dirrm share/apps/kaddressbook/icons/locolor
|
||||
@dirrm share/apps/kaddressbook/icons/crystalsvg/32x32/actions
|
||||
@dirrm share/apps/kaddressbook/icons/crystalsvg/32x32
|
||||
@dirrm share/apps/kaddressbook/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/kaddressbook/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/kaddressbook/icons/crystalsvg
|
||||
@dirrm share/apps/kaddressbook/icons
|
||||
@dirrm share/apps/kaddressbook/csv-templates
|
||||
@dirrm share/apps/kaddressbook
|
||||
@dirrm share/apps
|
||||
@dirrm share/applnk/Utilities/More
|
||||
@dirrm share/applnk/Utilities
|
||||
@dirrm share/applnk/Settings/System
|
||||
@dirrm share/applnk/Settings
|
||||
@dirrm share/applnk/Applications
|
||||
@dirrm share/applnk/.hidden
|
||||
@dirrm share/applnk
|
||||
@dirrm lib/kde3
|
||||
@dirrm include/kpilot
|
||||
@dirrm include/korganizer
|
||||
@dirrm include/kgantt
|
||||
@dirrm include/kdepim
|
||||
@dirrm include/calendar
|
||||
|
|
|
@ -17,12 +17,15 @@ MAINTAINER= kde@FreeBSD.org
|
|||
LIB_DEPENDS= pisock:${PORTSDIR}/palm/pilot-link
|
||||
|
||||
USE_KDELIBS_VER=3
|
||||
USE_BISON= yes
|
||||
PREFIX= ${KDE_PREFIX}
|
||||
|
||||
USE_BZIP2= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_BISON= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GMAKE= yes
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
INSTALLS_SHLIB= yes
|
||||
LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (KDE/kdepim-3.0.4.tar.bz2) = 0455afeec058386049a46e7ea5ec9363
|
||||
MD5 (KDE/kdepim-3.1.tar.bz2) = 9a416238193107ed2d937a3f5b02f579
|
||||
|
|
|
@ -1,29 +0,0 @@
|
|||
Index: libical/src/libical/icaltime.c
|
||||
===================================================================
|
||||
RCS file: /home/kde/kdepim/libical/src/libical/icaltime.c,v
|
||||
retrieving revision 1.5
|
||||
retrieving revision 1.6
|
||||
diff -u -3 -p -r1.5 -r1.6
|
||||
--- libical/src/libical/icaltime.c 2001/06/26 12:22:20 1.5
|
||||
+++ libical/src/libical/icaltime.c 2002/09/27 18:49:07 1.6
|
||||
@@ -3,7 +3,7 @@
|
||||
FILE: icaltime.c
|
||||
CREATOR: eric 02 June 2000
|
||||
|
||||
- $Id: icaltime.c,v 1.5 2001/06/26 12:22:20 cschumac Exp $
|
||||
+ $Id: icaltime.c,v 1.6 2002/09/27 18:49:07 adridg Exp $
|
||||
$Locker: $
|
||||
|
||||
(C) COPYRIGHT 2000, Eric Busboom, http://www.softwarestudio.org
|
||||
@@ -141,7 +141,11 @@ void unset_tz(struct set_tz_save savetz)
|
||||
|
||||
free(orig_tzid);
|
||||
} else {
|
||||
+#ifdef __FreeBSD__
|
||||
+ unsetenv("TZ");
|
||||
+#else
|
||||
putenv("TZ"); /* Delete from environment */
|
||||
+#endif
|
||||
}
|
||||
|
||||
if(savetz.new_env_str != 0){
|
|
@ -1,11 +0,0 @@
|
|||
--- libical/src/libicalvcal/vcc.y Mon Jan 1 16:49:58 2001
|
||||
+++ libical/src/libicalvcal/vcc.y.new Sun Jun 2 12:42:57 2002
|
||||
@@ -107,7 +107,7 @@
|
||||
#endif
|
||||
|
||||
#include <string.h>
|
||||
-#ifndef __MWERKS__
|
||||
+#if !defined(__MWERKS__) && !defined(__FreeBSD__)
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
#include <stdio.h>
|
|
@ -1,11 +0,0 @@
|
|||
--- libical/src/libicalvcal/vobject.c Mon Jan 1 16:37:08 2001
|
||||
+++ libical/src/libicalvcal/vobject.c.new Mon Jun 3 02:49:58 2002
|
||||
@@ -42,7 +42,7 @@
|
||||
* vobject, and convert a vobject into its textual representation.
|
||||
*/
|
||||
|
||||
-#ifndef MWERKS
|
||||
+#if !defined(MWERKS) && !defined(__FreeBSD__)
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
bin/ical2vcal
|
||||
bin/kabcfrontend
|
||||
bin/kabc2mutt
|
||||
bin/kaddressbook
|
||||
bin/kalarm
|
||||
bin/kalarmautostart
|
||||
bin/kalarmd
|
||||
bin/kandy
|
||||
bin/kandy_client
|
||||
|
@ -13,9 +13,13 @@ bin/korganizer
|
|||
bin/korganizerIn
|
||||
bin/kpilot
|
||||
bin/kpilotDaemon
|
||||
bin/ksync
|
||||
include/KNotesIface.h
|
||||
include/calendar/calendardecoration.h
|
||||
include/calendar/plugin.h
|
||||
include/kdepim/exchangeaccount.h
|
||||
include/kdepim/exchangecalendar.h
|
||||
include/kdepim/exchangeclient.h
|
||||
include/kgantt/KGantt.h
|
||||
include/kgantt/KGanttBarConfig.h
|
||||
include/kgantt/KGanttItem.h
|
||||
|
@ -36,19 +40,25 @@ include/kpilot/pilotSerialDatabase.h
|
|||
include/kpilot/plugin.h
|
||||
include/kpilot/syncAction.h
|
||||
include/kpilot/uiDialog.h
|
||||
lib/kde3/libabbrowserconduit.la
|
||||
lib/kde3/libabbrowserconduit.so
|
||||
lib/kde3/libabbrowserconduit.so.0
|
||||
lib/kde3/kfile_vcf.la
|
||||
lib/kde3/kfile_vcf.so
|
||||
lib/kde3/libaddressconduit.la
|
||||
lib/kde3/libaddressconduit.so
|
||||
lib/kde3/libaddressconduit.so.0
|
||||
lib/kde3/libexpenseconduit.la
|
||||
lib/kde3/libexpenseconduit.so
|
||||
lib/kde3/libexpenseconduit.so.0
|
||||
lib/kde3/libkcm_alarmdaemonctrl.la
|
||||
lib/kde3/libkcm_alarmdaemonctrl.so
|
||||
lib/kde3/libkaddressbookpart.la
|
||||
lib/kde3/libkaddressbookpart.so
|
||||
lib/kde3/libknotesconduit.la
|
||||
lib/kde3/libknotesconduit.so
|
||||
lib/kde3/libknotesconduit.so.0
|
||||
lib/kde3/libkorg_birthdays.la
|
||||
lib/kde3/libkorg_birthdays.so
|
||||
lib/kde3/libkorg_datenums.la
|
||||
lib/kde3/libkorg_datenums.so
|
||||
lib/kde3/libkorg_exchange.la
|
||||
lib/kde3/libkorg_exchange.so
|
||||
lib/kde3/libkorg_holidays.la
|
||||
lib/kde3/libkorg_holidays.so
|
||||
lib/kde3/libkorg_projectview.la
|
||||
|
@ -61,6 +71,9 @@ lib/kde3/libnullconduit.so.0
|
|||
lib/kde3/libpopmailconduit.la
|
||||
lib/kde3/libpopmailconduit.so
|
||||
lib/kde3/libpopmailconduit.so.0
|
||||
lib/kde3/libtimeconduit.la
|
||||
lib/kde3/libtimeconduit.so
|
||||
lib/kde3/libtimeconduit.so.0
|
||||
lib/kde3/libtodoconduit.la
|
||||
lib/kde3/libtodoconduit.so
|
||||
lib/kde3/libtodoconduit.so.0
|
||||
|
@ -73,39 +86,79 @@ lib/libkalarmd.so.0
|
|||
lib/libkcal.la
|
||||
lib/libkcal.so
|
||||
lib/libkcal.so.2
|
||||
lib/libkcalsystem.la
|
||||
lib/libkcalsystem.so
|
||||
lib/libkcalsystem.so.0
|
||||
lib/libkdepim.la
|
||||
lib/libkdepim.so
|
||||
lib/libkdepim.so.1
|
||||
lib/libkgantt.la
|
||||
lib/libkgantt.so
|
||||
lib/libkgantt.so.0
|
||||
lib/libknewstuff.la
|
||||
lib/libknewstuff.so
|
||||
lib/libknewstuff.so.1
|
||||
lib/libkorganizer.la
|
||||
lib/libkorganizer.so
|
||||
lib/libkorganizer.so.1
|
||||
lib/libkpilot.la
|
||||
lib/libkpilot.so
|
||||
lib/libkpilot.so.0
|
||||
lib/libkpimexchange.la
|
||||
lib/libkpimexchange.so
|
||||
lib/libkpimexchange.so.1
|
||||
lib/libksync.la
|
||||
lib/libksync.so
|
||||
lib/libksync.so.1
|
||||
share/applnk/.hidden/kalarmd.desktop
|
||||
share/applnk/Applications/kalarm.desktop
|
||||
share/applnk/Applications/korganizer.desktop
|
||||
share/applnk/Settings/System/alarmdaemonctrl.desktop
|
||||
share/applnk/Utilities/More/kalarm.desktop
|
||||
share/applnk/Utilities/More/kandy.desktop
|
||||
share/applnk/Utilities/More/karm.desktop
|
||||
share/applnk/Utilities/kaddressbook.desktop
|
||||
share/applnk/Utilities/kandy.desktop
|
||||
share/applnk/Utilities/karm.desktop
|
||||
share/applnk/Utilities/knotes.desktop
|
||||
share/applnk/Utilities/kpilot.desktop
|
||||
share/applnk/Utilities/kpilotdaemon.desktop
|
||||
share/apps/kalarm/icons/hicolor/16x16/actions/eventdelete.png
|
||||
share/apps/kalarm/icons/hicolor/16x16/actions/eventnew.png
|
||||
share/apps/kalarm/icons/hicolor/16x16/actions/kalarm.png
|
||||
share/apps/kalarm/icons/hicolor/16x16/apps/kalarm.png
|
||||
share/apps/kalarm/icons/hicolor/22x22/actions/kalarm.png
|
||||
share/apps/kalarm/icons/hicolor/22x22/actions/kalarm_disabled.png
|
||||
share/apps/kalarm/icons/hicolor/32x32/apps/kalarm.png
|
||||
share/apps/kalarm/icons/hicolor/48x48/apps/kalarm.png
|
||||
share/apps/kalarm/icons/locolor/16x16/apps/kalarm.png
|
||||
share/apps/kalarm/icons/locolor/32x32/apps/kalarm.png
|
||||
share/apps/kalarmdgui/icons/hicolor/22x22/actions/kalarmdgui.png
|
||||
share/apps/kalarmdgui/icons/hicolor/22x22/actions/kalarmdgui_disabled.png
|
||||
share/apps/kaddressbook/csv-templates/kaddressbook.desktop
|
||||
share/apps/kaddressbook/csv-templates/outlook2000.desktop
|
||||
share/apps/kaddressbook/icons/crystalsvg/16x16/actions/ldap_lookup.png
|
||||
share/apps/kaddressbook/icons/crystalsvg/16x16/actions/smallcal.png
|
||||
share/apps/kaddressbook/icons/crystalsvg/32x32/actions/gohome.png
|
||||
share/apps/kaddressbook/icons/crystalsvg/32x32/actions/homepage.png
|
||||
share/apps/kaddressbook/icons/locolor/16x16/actions/contact.png
|
||||
share/apps/kaddressbook/icons/locolor/16x16/actions/down.png
|
||||
share/apps/kaddressbook/icons/locolor/16x16/actions/group.png
|
||||
share/apps/kaddressbook/icons/locolor/16x16/actions/up.png
|
||||
share/apps/kaddressbook/icons/locolor/22x22/actions/page.png
|
||||
share/apps/kaddressbook/kaddressbook_part.rc
|
||||
share/apps/kaddressbook/kaddressbookui.rc
|
||||
share/apps/kaddressbook/printing/detailed-style.png
|
||||
share/apps/kaddressbook/printing/mike-style.png
|
||||
share/apps/kalarm/icons/crystalsvg/16x16/actions/eventdelete.png
|
||||
share/apps/kalarm/icons/crystalsvg/16x16/actions/eventnew.png
|
||||
share/apps/kalarm/icons/crystalsvg/16x16/actions/file.png
|
||||
share/apps/kalarm/icons/crystalsvg/16x16/actions/kalarm.png
|
||||
share/apps/kalarm/icons/crystalsvg/16x16/actions/message.png
|
||||
share/apps/kalarm/icons/crystalsvg/16x16/actions/playsound.png
|
||||
share/apps/kalarm/icons/crystalsvg/22x22/actions/kalarm.png
|
||||
share/apps/kalarm/icons/crystalsvg/22x22/actions/kalarm_disabled.png
|
||||
share/apps/kalarmdgui/icons/crystalsvg/22x22/actions/kalarmdgui.png
|
||||
share/apps/kalarmdgui/icons/crystalsvg/22x22/actions/kalarmdgui_disabled.png
|
||||
share/apps/kandy/default.kandy
|
||||
share/apps/kandy/kandymobileui.rc
|
||||
share/apps/kandy/kandyui.rc
|
||||
share/apps/karm/karmui.rc
|
||||
share/apps/karm/pics/active-icon-0.xpm
|
||||
share/apps/karm/pics/active-icon-1.xpm
|
||||
share/apps/karm/pics/active-icon-2.xpm
|
||||
share/apps/karm/pics/active-icon-3.xpm
|
||||
share/apps/karm/pics/active-icon-4.xpm
|
||||
share/apps/karm/pics/active-icon-5.xpm
|
||||
share/apps/karm/pics/active-icon-6.xpm
|
||||
share/apps/karm/pics/active-icon-7.xpm
|
||||
share/apps/karm/pics/clock.xpm
|
||||
share/apps/karm/pics/clockedit.xpm
|
||||
share/apps/karm/pics/empty-watch.xpm
|
||||
|
@ -118,17 +171,18 @@ share/apps/karm/pics/watch-4.xpm
|
|||
share/apps/karm/pics/watch-5.xpm
|
||||
share/apps/karm/pics/watch-6.xpm
|
||||
share/apps/karm/pics/watch-7.xpm
|
||||
share/apps/kgantt/icons/hicolor/16x16/actions/ganttSelect.png
|
||||
share/apps/kgantt/icons/hicolor/16x16/actions/ganttSelecttask.png
|
||||
share/apps/kgantt/icons/hicolor/16x16/actions/ganttUnselecttask.png
|
||||
share/apps/kgantt/icons/hicolor/22x22/actions/ganttSelect.png
|
||||
share/apps/kgantt/icons/hicolor/22x22/actions/ganttSelecttask.png
|
||||
share/apps/kgantt/icons/hicolor/22x22/actions/ganttUnselecttask.png
|
||||
share/apps/kgantt/icons/hicolor/32x32/actions/ganttSelect.png
|
||||
share/apps/kgantt/icons/hicolor/32x32/actions/ganttSelecttask.png
|
||||
share/apps/kgantt/icons/hicolor/32x32/actions/ganttUnselecttask.png
|
||||
share/apps/kgantt/icons/crystalsvg/16x16/actions/ganttSelect.png
|
||||
share/apps/kgantt/icons/crystalsvg/16x16/actions/ganttSelecttask.png
|
||||
share/apps/kgantt/icons/crystalsvg/16x16/actions/ganttUnselecttask.png
|
||||
share/apps/kgantt/icons/crystalsvg/22x22/actions/ganttSelect.png
|
||||
share/apps/kgantt/icons/crystalsvg/22x22/actions/ganttSelecttask.png
|
||||
share/apps/kgantt/icons/crystalsvg/22x22/actions/ganttUnselecttask.png
|
||||
share/apps/kgantt/icons/crystalsvg/32x32/actions/ganttSelect.png
|
||||
share/apps/kgantt/icons/crystalsvg/32x32/actions/ganttSelecttask.png
|
||||
share/apps/kgantt/icons/crystalsvg/32x32/actions/ganttUnselecttask.png
|
||||
share/apps/knotes/knotesui.rc
|
||||
share/apps/knotes/pics/knotesclose.png
|
||||
share/apps/knotes/pics/knotesdate.png
|
||||
share/apps/knotes/pics/knotesdelete.png
|
||||
share/apps/knotes/pics/knoteslogo.png
|
||||
share/apps/korganizer/holiday_at
|
||||
|
@ -165,76 +219,80 @@ share/apps/korganizer/holiday_se
|
|||
share/apps/korganizer/holiday_si
|
||||
share/apps/korganizer/holiday_th
|
||||
share/apps/korganizer/holiday_us
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/1day.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/1downarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/1leftarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/1rightarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/1uparrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/2downarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/2leftarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/2rightarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/2uparrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/3downarrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/3uparrow.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/5days.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/7days.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/appointment.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/bell.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/dayview.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/findf.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/groupevent.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/inverse_recur.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/list.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/mailappt.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/month.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/nomailappt.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/organizer.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/playsound.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/readonlyevent.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/recur.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/runprog.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/smallcal.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/smallclock.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/today.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/todo.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/webexport.png
|
||||
share/apps/korganizer/icons/hicolor/16x16/actions/whatsnext.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/1day.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/3leftarrow.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/3rightarrow.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/5days.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/7days.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/agenda.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/appointment.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/checkedbox.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/checkedbox/mask.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/checkedclipboard.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/checkmark.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/delete.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/emptybox.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/emptybox/mask.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/list.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/month.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/newrecurevent.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/newtodo.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/search.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/send.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/timespan.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/today.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/todo.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/webexport.png
|
||||
share/apps/korganizer/icons/hicolor/22x22/actions/whatsnext.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/1day.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/5days.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/7days.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/appointment.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/list.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/month.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/today.png
|
||||
share/apps/korganizer/icons/hicolor/32x32/actions/todo.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/1day.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/1downarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/1leftarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/1rightarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/1uparrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/2downarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/2leftarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/2rightarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/2uparrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/3downarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/3uparrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/5days.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/7days.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/appointment.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/bell.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/dayview.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/findf.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/groupevent.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/inverse_recur.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/list.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/mailappt.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/month.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/nomailappt.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/organizer.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/playsound.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/readonlyevent.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/recur.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/runprog.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/smallcal.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/smallclock.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/today.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/todo.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/webexport.png
|
||||
share/apps/korganizer/icons/crystalsvg/16x16/actions/whatsnext.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/1day.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/3leftarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/3rightarrow.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/5days.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/7days.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/agenda.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/appointment.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/checkedbox.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/checkedbox_mask.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/checkedclipboard.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/checkmark.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/delete.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/emptybox.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/emptybox/mask.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/journal.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/list.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/month.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/newrecurevent.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/newtodo.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/search.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/send.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/timespan.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/today.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/todo.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/webexport.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/whatsnext.png
|
||||
share/apps/korganizer/icons/crystalsvg/22x22/actions/xdays.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/1day.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/5days.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/7days.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/appointment.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/list.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/month.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/today.png
|
||||
share/apps/korganizer/icons/crystalsvg/32x32/actions/todo.png
|
||||
share/apps/korganizer/korganizer_part.rc
|
||||
share/apps/korganizer/korganizergsui.rc
|
||||
share/apps/korganizer/korganizerui.rc
|
||||
share/apps/korganizer/plugins/birthdaysui.rc
|
||||
share/apps/korganizer/plugins/exchangeui.rc
|
||||
share/apps/korganizer/plugins/projectviewui.rc
|
||||
share/apps/korganizer/plugins/webexportui.rc
|
||||
share/apps/korganizer/sounds/alert.wav
|
||||
|
@ -243,21 +301,25 @@ share/apps/korganizer/sounds/lightmag.wav
|
|||
share/apps/korganizer/sounds/onscreen.wav
|
||||
share/apps/korganizer/sounds/spinout.wav
|
||||
share/apps/korganizer/tips
|
||||
share/apps/kpilot/icons/hicolor/16x16/actions/backup.png
|
||||
share/apps/kpilot/icons/hicolor/16x16/actions/busysync.png
|
||||
share/apps/kpilot/icons/hicolor/16x16/actions/fastsync.png
|
||||
share/apps/kpilot/icons/hicolor/16x16/actions/hotsync.png
|
||||
share/apps/kpilot/icons/hicolor/16x16/actions/restore.png
|
||||
share/apps/kpilot/icons/crystalsvg/16x16/actions/backup.png
|
||||
share/apps/kpilot/icons/crystalsvg/16x16/actions/busysync.png
|
||||
share/apps/kpilot/icons/crystalsvg/16x16/actions/fastsync.png
|
||||
share/apps/kpilot/icons/crystalsvg/16x16/actions/hotsync.png
|
||||
share/apps/kpilot/icons/crystalsvg/16x16/actions/restore.png
|
||||
share/apps/kpilot/kpilot-address.png
|
||||
share/apps/kpilot/kpilot-fileinstaller.png
|
||||
share/apps/kpilot/kpilot-hotsync.png
|
||||
share/apps/kpilot/kpilot-knotes.png
|
||||
share/apps/kpilot/kpilot-splash.png
|
||||
share/apps/kpilot/kpilotui.rc
|
||||
share/apps/ksync/ksyncui.rc
|
||||
share/autostart/kalarm.tray.desktop
|
||||
share/autostart/kalarmd.autostart.desktop
|
||||
share/autostart/korgac.desktop
|
||||
share/config/knotesrc
|
||||
share/doc/HTML/en/kaddressbook/common
|
||||
share/doc/HTML/en/kaddressbook/index.cache.bz2
|
||||
share/doc/HTML/en/kaddressbook/index.docbook
|
||||
share/doc/HTML/en/kalarm/alarmmessage.png
|
||||
share/doc/HTML/en/kalarm/common
|
||||
share/doc/HTML/en/kalarm/editwindow.png
|
||||
|
@ -271,6 +333,10 @@ share/doc/HTML/en/karm/common
|
|||
share/doc/HTML/en/karm/index.cache.bz2
|
||||
share/doc/HTML/en/karm/index.docbook
|
||||
share/doc/HTML/en/karm/karm.png
|
||||
share/doc/HTML/en/kcontrol/kalarmd/common
|
||||
share/doc/HTML/en/kcontrol/kalarmd/index.cache.bz2
|
||||
share/doc/HTML/en/kcontrol/kalarmd/index.docbook
|
||||
share/doc/HTML/en/kdepim-apidocs/common
|
||||
share/doc/HTML/en/knotes/common
|
||||
share/doc/HTML/en/knotes/index.cache.bz2
|
||||
share/doc/HTML/en/knotes/index.docbook
|
||||
|
@ -320,119 +386,203 @@ share/doc/HTML/en/kpilot/setup-general.png
|
|||
share/doc/HTML/en/kpilot/setup-sync.png
|
||||
share/doc/HTML/en/kpilot/toolbar_backup.png
|
||||
share/doc/HTML/en/kpilot/toolbar_hotsync.png
|
||||
share/icons/hicolor/16x16/actions/kalarm.png
|
||||
share/icons/hicolor/16x16/apps/kalarm.png
|
||||
share/icons/hicolor/16x16/apps/karm.png
|
||||
share/icons/hicolor/16x16/apps/knotes.png
|
||||
share/icons/hicolor/16x16/apps/korganizer.png
|
||||
share/icons/hicolor/16x16/apps/kpilot.png
|
||||
share/icons/hicolor/16x16/apps/kpilotDaemon.png
|
||||
share/icons/hicolor/22x22/actions/kalarm.png
|
||||
share/icons/hicolor/22x22/apps/kpilot.png
|
||||
share/icons/hicolor/32x32/apps/kalarm.png
|
||||
share/icons/hicolor/32x32/apps/karm.png
|
||||
share/icons/hicolor/32x32/apps/knotes.png
|
||||
share/icons/hicolor/32x32/apps/korganizer.png
|
||||
share/icons/hicolor/32x32/apps/kpilot.png
|
||||
share/icons/hicolor/48x48/apps/kalarm.png
|
||||
share/icons/hicolor/48x48/apps/karm.png
|
||||
share/icons/hicolor/48x48/apps/knotes.png
|
||||
share/icons/hicolor/48x48/apps/korganizer.png
|
||||
share/icons/hicolor/48x48/apps/kpilot.png
|
||||
share/icons/hicolor/48x48/apps/kpilotDaemon.png
|
||||
share/icons/crystalsvg/16x16/actions/kalarm.png
|
||||
share/icons/crystalsvg/16x16/apps/kaddressbook.png
|
||||
share/icons/crystalsvg/16x16/apps/kalarm.png
|
||||
share/icons/crystalsvg/16x16/apps/karm.png
|
||||
share/icons/crystalsvg/16x16/apps/knotes.png
|
||||
share/icons/crystalsvg/16x16/apps/korganizer.png
|
||||
share/icons/crystalsvg/16x16/apps/kpilot.png
|
||||
share/icons/crystalsvg/16x16/apps/kpilotDaemon.png
|
||||
share/icons/crystalsvg/22x22/actions/kalarm.png
|
||||
share/icons/crystalsvg/22x22/apps/kpilot.png
|
||||
share/icons/crystalsvg/32x32/apps/kaddressbook.png
|
||||
share/icons/crystalsvg/32x32/apps/kalarm.png
|
||||
share/icons/crystalsvg/32x32/apps/karm.png
|
||||
share/icons/crystalsvg/32x32/apps/knotes.png
|
||||
share/icons/crystalsvg/32x32/apps/korganizer.png
|
||||
share/icons/crystalsvg/32x32/apps/kpilot.png
|
||||
share/icons/crystalsvg/48x48/apps/kaddressbook.png
|
||||
share/icons/crystalsvg/48x48/apps/kalarm.png
|
||||
share/icons/crystalsvg/48x48/apps/karm.png
|
||||
share/icons/crystalsvg/48x48/apps/knotes.png
|
||||
share/icons/crystalsvg/48x48/apps/korganizer.png
|
||||
share/icons/crystalsvg/48x48/apps/kpilot.png
|
||||
share/icons/crystalsvg/48x48/apps/kpilotDaemon.png
|
||||
share/icons/locolor/16x16/apps/kalarm.png
|
||||
share/icons/locolor/16x16/apps/kpilot.png
|
||||
share/icons/locolor/32x32/apps/kalarm.png
|
||||
share/services/abbrowser_conduit.desktop
|
||||
share/services/expense-conduit.desktop
|
||||
share/services/kfile_vcf.desktop
|
||||
share/services/knotes-conduit.desktop
|
||||
share/services/korganizer/birthdays.desktop
|
||||
share/services/korganizer/datenums.desktop
|
||||
share/services/korganizer/exchange.desktop
|
||||
share/services/korganizer/holidays.desktop
|
||||
share/services/korganizer/projectview.desktop
|
||||
share/services/korganizer/webexport.desktop
|
||||
share/services/null-conduit.desktop
|
||||
share/services/popmail-conduit.desktop
|
||||
share/services/time_conduit.desktop
|
||||
share/services/todo-conduit.desktop
|
||||
share/services/vcal-conduit.desktop
|
||||
share/services/webcal.protocol
|
||||
share/servicetypes/calendardecoration.desktop
|
||||
share/servicetypes/calendarplugin.desktop
|
||||
share/servicetypes/korganizerpart.desktop
|
||||
share/servicetypes/kpilotconduit.desktop
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/calendarsystem/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kabc/kabc2mutt/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kaddressbook/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kalarm/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kalarmd/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kandy/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kfile-plugins/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kgantt/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/knotes/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/konsolekalendar/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/korganizer/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/kpilot/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/ksync/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/libkcal/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/libkdepim/html
|
||||
@exec /bin/mkdir -p %D/share/doc/HTML/en/kdepim-apidocs/libkpimexchange/html
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/libkpimexchange/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/libkdepim/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/libkcal/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/ksync/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kpilot/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/korganizer/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/konsolekalendar/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/knotes/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kgantt/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kfile-plugins/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kandy/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kalarmd/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kalarm/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kaddressbook/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/kabc/kabc2mutt/html || true
|
||||
@unexec /bin/rmdir %D/share/doc/HTML/en/kdepim-apidocs/calendarsystem/html || true
|
||||
@dirrm share/servicetypes
|
||||
@dirrm share/services/korganizer
|
||||
@dirrm share/services
|
||||
@dirrm share/icons/locolor/32x32/apps
|
||||
@dirrm share/icons/locolor/32x32
|
||||
@dirrm share/icons/locolor/16x16/apps
|
||||
@dirrm share/icons/locolor/16x16
|
||||
@dirrm share/icons/locolor
|
||||
@dirrm share/icons/hicolor/48x48/apps
|
||||
@dirrm share/icons/hicolor/32x32/apps
|
||||
@dirrm share/icons/hicolor/22x22/apps
|
||||
@dirrm share/icons/crystalsvg/48x48/apps
|
||||
@dirrm share/icons/crystalsvg/48x48
|
||||
@dirrm share/icons/crystalsvg/32x32/apps
|
||||
@dirrm share/icons/crystalsvg/32x32
|
||||
@dirrm share/icons/crystalsvg/22x22/apps
|
||||
@dirrm share/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/icons/crystalsvg/22x22
|
||||
@dirrm share/icons/crystalsvg/16x16/apps
|
||||
@dirrm share/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/icons/crystalsvg/16x16
|
||||
@dirrm share/icons/crystalsvg
|
||||
@dirrm share/icons
|
||||
@dirrm share/doc/HTML/en/kpilot
|
||||
@dirrm share/doc/HTML/en/korganizer
|
||||
@dirrm share/doc/HTML/en/knotes
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/libkpimexchange
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/libkdepim
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/libkcal
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/ksync
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kpilot
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/korganizer
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/konsolekalendar
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/knotes
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kgantt
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kfile-plugins
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kandy
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kalarmd
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kalarm
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kaddressbook
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kabc/kabc2mutt
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/kabc
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs/calendarsystem
|
||||
@dirrm share/doc/HTML/en/kdepim-apidocs
|
||||
@dirrm share/doc/HTML/en/kcontrol/kalarmd
|
||||
@dirrm share/doc/HTML/en/kcontrol
|
||||
@dirrm share/doc/HTML/en/karm
|
||||
@dirrm share/doc/HTML/en/kandy
|
||||
@dirrm share/doc/HTML/en/kalarm
|
||||
@dirrm share/apps/kpilot/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/kpilot/icons/hicolor/16x16
|
||||
@dirrm share/apps/kpilot/icons/hicolor
|
||||
@dirrm share/doc/HTML/en/kaddressbook
|
||||
@dirrm share/doc/HTML/en
|
||||
@dirrm share/doc/HTML
|
||||
@dirrm share/doc
|
||||
@dirrm share/config
|
||||
@dirrm share/autostart
|
||||
@dirrm share/apps/ksync
|
||||
@dirrm share/apps/kpilot/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/kpilot/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/kpilot/icons/crystalsvg
|
||||
@dirrm share/apps/kpilot/icons
|
||||
@dirrm share/apps/kpilot
|
||||
@dirrm share/apps/korganizer/sounds
|
||||
@dirrm share/apps/korganizer/plugins
|
||||
@dirrm share/apps/korganizer/icons/hicolor/32x32/actions
|
||||
@dirrm share/apps/korganizer/icons/hicolor/32x32
|
||||
@dirrm share/apps/korganizer/icons/hicolor/22x22/actions/emptybox
|
||||
@dirrm share/apps/korganizer/icons/hicolor/22x22/actions/checkedbox
|
||||
@dirrm share/apps/korganizer/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/korganizer/icons/hicolor/22x22
|
||||
@dirrm share/apps/korganizer/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/korganizer/icons/hicolor/16x16
|
||||
@dirrm share/apps/korganizer/icons/hicolor
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/32x32/actions
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/32x32
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/22x22/actions/emptybox
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/22x22
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/korganizer/icons/crystalsvg
|
||||
@dirrm share/apps/korganizer/icons
|
||||
@dirrm share/apps/korganizer
|
||||
@dirrm share/apps/knotes/pics
|
||||
@dirrm share/apps/knotes
|
||||
@dirrm share/apps/kgantt/icons/hicolor/32x32/actions
|
||||
@dirrm share/apps/kgantt/icons/hicolor/32x32
|
||||
@dirrm share/apps/kgantt/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/kgantt/icons/hicolor/22x22
|
||||
@dirrm share/apps/kgantt/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/kgantt/icons/hicolor/16x16
|
||||
@dirrm share/apps/kgantt/icons/hicolor
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg/32x32/actions
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg/32x32
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg/22x22
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/kgantt/icons/crystalsvg
|
||||
@dirrm share/apps/kgantt/icons
|
||||
@dirrm share/apps/kgantt
|
||||
@dirrm share/apps/karm/pics
|
||||
@dirrm share/apps/karm
|
||||
@dirrm share/apps/kandy
|
||||
@dirrm share/apps/kalarmdgui/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/kalarmdgui/icons/hicolor/22x22
|
||||
@dirrm share/apps/kalarmdgui/icons/hicolor
|
||||
@dirrm share/apps/kalarmdgui/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/apps/kalarmdgui/icons/crystalsvg/22x22
|
||||
@dirrm share/apps/kalarmdgui/icons/crystalsvg
|
||||
@dirrm share/apps/kalarmdgui/icons
|
||||
@dirrm share/apps/kalarmdgui
|
||||
@dirrm share/apps/kalarm/icons/locolor/32x32/apps
|
||||
@dirrm share/apps/kalarm/icons/locolor/32x32
|
||||
@dirrm share/apps/kalarm/icons/locolor/16x16/apps
|
||||
@dirrm share/apps/kalarm/icons/locolor/16x16
|
||||
@dirrm share/apps/kalarm/icons/locolor
|
||||
@dirrm share/apps/kalarm/icons/hicolor/48x48/apps
|
||||
@dirrm share/apps/kalarm/icons/hicolor/48x48
|
||||
@dirrm share/apps/kalarm/icons/hicolor/32x32/apps
|
||||
@dirrm share/apps/kalarm/icons/hicolor/32x32
|
||||
@dirrm share/apps/kalarm/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/kalarm/icons/hicolor/22x22
|
||||
@dirrm share/apps/kalarm/icons/hicolor/16x16/apps
|
||||
@dirrm share/apps/kalarm/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/kalarm/icons/hicolor/16x16
|
||||
@dirrm share/apps/kalarm/icons/hicolor
|
||||
@dirrm share/apps/kalarm/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/apps/kalarm/icons/crystalsvg/22x22
|
||||
@dirrm share/apps/kalarm/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/kalarm/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/kalarm/icons/crystalsvg
|
||||
@dirrm share/apps/kalarm/icons
|
||||
@dirrm share/apps/kalarm
|
||||
@dirrm share/apps/kaddressbook/printing
|
||||
@dirrm share/apps/kaddressbook/icons/locolor/22x22/actions
|
||||
@dirrm share/apps/kaddressbook/icons/locolor/22x22
|
||||
@dirrm share/apps/kaddressbook/icons/locolor/16x16/actions
|
||||
@dirrm share/apps/kaddressbook/icons/locolor/16x16
|
||||
@dirrm share/apps/kaddressbook/icons/locolor
|
||||
@dirrm share/apps/kaddressbook/icons/crystalsvg/32x32/actions
|
||||
@dirrm share/apps/kaddressbook/icons/crystalsvg/32x32
|
||||
@dirrm share/apps/kaddressbook/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/kaddressbook/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/kaddressbook/icons/crystalsvg
|
||||
@dirrm share/apps/kaddressbook/icons
|
||||
@dirrm share/apps/kaddressbook/csv-templates
|
||||
@dirrm share/apps/kaddressbook
|
||||
@dirrm share/apps
|
||||
@dirrm share/applnk/Utilities/More
|
||||
@dirrm share/applnk/Utilities
|
||||
@dirrm share/applnk/Settings/System
|
||||
@dirrm share/applnk/Settings
|
||||
@dirrm share/applnk/Applications
|
||||
@dirrm share/applnk/.hidden
|
||||
@dirrm share/applnk
|
||||
@dirrm lib/kde3
|
||||
@dirrm include/kpilot
|
||||
@dirrm include/korganizer
|
||||
@dirrm include/kgantt
|
||||
@dirrm include/kdepim
|
||||
@dirrm include/calendar
|
||||
|
|
|
@ -17,25 +17,34 @@ MAINTAINER= kde@FreeBSD.org
|
|||
LIB_DEPENDS= db2.0:${PORTSDIR}/databases/db2
|
||||
|
||||
USE_KDEBASE_VER=3
|
||||
GNU_CONFIGURE= yes
|
||||
PREFIX= ${KDE_PREFIX}
|
||||
KDE_BUILD_PLIST=yes
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
INSTALLS_SHLIB= yes
|
||||
LDCONFIG_DIRS= %%PREFIX%%/lib %%PREFIX%%/lib/kde3
|
||||
|
||||
MAN1= cvs2pack.1 cvsversion.1 noncvslist.1 kde-build.1
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
# Doesn't compile due to C++-unsafe header sys/wait.h.
|
||||
# XXX: Need to figure out when this actually happens.
|
||||
.if ${OSVERSION} > 500000
|
||||
CONFIGURE_ENV= DO_NOT_COMPILE="cervisia"
|
||||
PLIST_SUB+= CERVISIA="@comment "
|
||||
WITHOUT_CERVISIA= yes
|
||||
.endif # ${OSVERSION} > 500000
|
||||
|
||||
.if defined(WITHOUT_CERVISIA)
|
||||
DO_NOT_COMPILE+=cervisia
|
||||
.else
|
||||
PLIST_SUB+= CERVISIA=""
|
||||
.endif
|
||||
PLIST_APPEND+= plist.cervisia
|
||||
.include "${FILESDIR}/manpages.mk"
|
||||
.endif # defined(WITHOUT_CERVISIA)
|
||||
|
||||
.if defined(DO_NOT_COMPILE)
|
||||
CONFIGURE_ENV+= DO_NOT_COMPILE="${DO_NOT_COMPILE}"
|
||||
.endif # defined(DO_NOT_COMPILE)
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
51
devel/kdesdk3/Makefile~
Normal file
51
devel/kdesdk3/Makefile~
Normal file
|
@ -0,0 +1,51 @@
|
|||
# New ports collection makefile for: KDE SDK
|
||||
# Date created: 2 March 2001
|
||||
# Whom: Dmitry Sivachenko <demon@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD: /tmp/pcvs/ports/devel/kdesdk3/Attic/Makefile~,v 1.1 2003-01-28 18:36:52 alane Exp $
|
||||
#
|
||||
|
||||
PORTNAME= kdesdk
|
||||
PORTVERSION= ${KDE_VERSION}
|
||||
CATEGORIES= devel kde
|
||||
MASTER_SITES= ${MASTER_SITE_KDE}
|
||||
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
|
||||
DIST_SUBDIR= KDE
|
||||
|
||||
MAINTAINER= kde@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= db2.0:${PORTSDIR}/databases/db2
|
||||
|
||||
USE_KDEBASE_VER=3
|
||||
PREFIX= ${KDE_PREFIX}
|
||||
KDE_BUILD_PLIST=yes
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
INSTALLS_SHLIB= yes
|
||||
LDCONFIG_DIRS= %%PREFIX%%/lib %%PREFIX%%/lib/kde3
|
||||
|
||||
MAN1= cvs2pack.1 cvsversion.1 noncvslist.1 kde-build.1
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
# Doesn't compile due to C++-unsafe header sys/wait.h.
|
||||
# XXX: Need to figure out when this actually happens.
|
||||
.if ${OSVERSION} > 500000
|
||||
WITHOUT_CERVISIA= yes
|
||||
.endif # ${OSVERSION} > 500000
|
||||
|
||||
.if defined(WITHOUT_CERVISIA)
|
||||
DO_NOT_COMPILE+=cervisia
|
||||
.else
|
||||
PLIST_APPEND+= plist.cervisia
|
||||
.endif # defined(WITHOUT_CERVISIA)
|
||||
|
||||
.if defined(DO_NOT_COMPILE)
|
||||
CONFIGURE_ENV+= DO_NOT_COMPILE="${DO_NOT_COMPILE}"
|
||||
.endif # defined(DO_NOT_COMPILE)
|
||||
|
||||
.include <bsd.port.post.mk>
|
|
@ -1 +1 @@
|
|||
MD5 (KDE/kdesdk-3.0.4.tar.bz2) = 13c54f973533f4816069e82f7f375c34
|
||||
MD5 (KDE/kdesdk-3.1.tar.bz2) = 8c4e22ce1dd2be8464d31800cb0b347b
|
||||
|
|
7
devel/kdesdk3/files/manpages.mk
Normal file
7
devel/kdesdk3/files/manpages.mk
Normal file
|
@ -0,0 +1,7 @@
|
|||
MAN1+= cervisia.1
|
||||
MAN1+= cvs2pack.1
|
||||
MAN1+= cvsversion.1
|
||||
MAN1+= noncvslist.1
|
||||
MAN1+= kde-build.1
|
||||
MAN1+= cvsblame.1
|
||||
MAN1+= cvscheck.1
|
|
@ -1,6 +1,6 @@
|
|||
bin/adddebug
|
||||
bin/catalogmanager
|
||||
%%CERVISIA%%bin/cervisia
|
||||
bin/cheatmake
|
||||
bin/create_cvsignore
|
||||
bin/create_makefile
|
||||
bin/create_makefiles
|
||||
|
@ -14,11 +14,13 @@ bin/cvsversion
|
|||
bin/cxxmetric
|
||||
bin/extend_dmalloc
|
||||
bin/extractrc
|
||||
bin/fixincludes
|
||||
bin/fixsgml
|
||||
bin/includemocs
|
||||
bin/kapptemplate
|
||||
bin/kbabel
|
||||
bin/kbabeldict
|
||||
bin/kbugbuster
|
||||
bin/kde-build
|
||||
bin/kdedoc
|
||||
bin/kdekillall
|
||||
|
@ -34,6 +36,7 @@ bin/split2po
|
|||
bin/swappo
|
||||
bin/transxx
|
||||
bin/xml2pot
|
||||
bin/zonetab2pot.py
|
||||
include/kbabel/catalog.h
|
||||
include/kbabel/catalogitem.h
|
||||
include/kbabel/catalogsettings.h
|
||||
|
@ -47,9 +50,20 @@ include/kbabel/kbabeldictiface.h
|
|||
include/kbabel/msgfmt.h
|
||||
include/kbabel/searchengine.h
|
||||
include/kbabel/tagextractor.h
|
||||
include/kprofilemethod.h
|
||||
include/kspy.h
|
||||
lib/kde3/kabcformat_kdeaccounts.la
|
||||
lib/kde3/kabcformat_kdeaccounts.so
|
||||
lib/kde3/kfile_cpp.la
|
||||
lib/kde3/kfile_cpp.so
|
||||
lib/kde3/kfile_diff.la
|
||||
lib/kde3/kfile_diff.so
|
||||
lib/kde3/kfile_po.la
|
||||
lib/kde3/kfile_po.so
|
||||
lib/kde3/libdbsearchengine.la
|
||||
lib/kde3/libdbsearchengine.so
|
||||
lib/kde3/libkomparenavtreepart.la
|
||||
lib/kde3/libkomparenavtreepart.so
|
||||
lib/kde3/libkomparepart.la
|
||||
lib/kde3/libkomparepart.so
|
||||
lib/kde3/libpoauxiliary.la
|
||||
|
@ -61,9 +75,6 @@ lib/kde3/pothumbnail.so
|
|||
lib/libcatalogmanager.la
|
||||
lib/libcatalogmanager.so
|
||||
lib/libcatalogmanager.so.1
|
||||
%%CERVISIA%%lib/libcervisia.la
|
||||
%%CERVISIA%%lib/libcervisia.so
|
||||
%%CERVISIA%%lib/libcervisia.so.1
|
||||
lib/libkbabel.la
|
||||
lib/libkbabel.so
|
||||
lib/libkbabel.so.1
|
||||
|
@ -80,55 +91,38 @@ lib/libkspy.la
|
|||
lib/libkspy.so
|
||||
lib/libkspy.so.1
|
||||
share/applnk/Development/catalogmanager.desktop
|
||||
%%CERVISIA%%share/applnk/Development/cervisia.desktop
|
||||
share/applnk/Development/kbabel.desktop
|
||||
share/applnk/Development/kbabeldict.desktop
|
||||
share/applnk/Development/kbugbuster.desktop
|
||||
share/applnk/Development/kompare.desktop
|
||||
share/apps/catalogmanager/catalogmanagerui.rc
|
||||
share/apps/catalogmanager/icons/hicolor/16x16/actions/statistics.png
|
||||
share/apps/catalogmanager/icons/hicolor/16x16/actions/syntax.png
|
||||
share/apps/catalogmanager/icons/hicolor/22x22/actions/statistics.png
|
||||
share/apps/catalogmanager/icons/hicolor/22x22/actions/syntax.png
|
||||
share/apps/catalogmanager/icons/hicolor/32x32/actions/statistics.png
|
||||
share/apps/catalogmanager/icons/hicolor/32x32/actions/syntax.png
|
||||
share/apps/catalogmanager/icons/locolor/16x16/actions/statistics.png
|
||||
share/apps/catalogmanager/icons/locolor/16x16/actions/syntax.png
|
||||
share/apps/catalogmanager/icons/locolor/22x22/actions/statistics.png
|
||||
share/apps/catalogmanager/icons/locolor/22x22/actions/syntax.png
|
||||
share/apps/catalogmanager/icons/locolor/32x32/actions/statistics.png
|
||||
share/apps/catalogmanager/icons/locolor/32x32/actions/syntax.png
|
||||
share/apps/catalogmanager/pics/broken.png
|
||||
share/apps/catalogmanager/pics/missing.png
|
||||
share/apps/catalogmanager/pics/needwork.png
|
||||
share/apps/catalogmanager/pics/ok.png
|
||||
%%CERVISIA%%share/apps/cervisia/cervisiashellui.rc
|
||||
%%CERVISIA%%share/apps/cervisia/cervisiaui.rc
|
||||
share/apps/kabc/formats/kdeaccountsplugin.desktop
|
||||
share/apps/kapptemplate/admin/ChangeLog
|
||||
share/apps/kapptemplate/admin/Doxyfile.am
|
||||
share/apps/kapptemplate/admin/Doxyfile.global
|
||||
share/apps/kapptemplate/admin/Makefile
|
||||
share/apps/kapptemplate/admin/Makefile.am
|
||||
share/apps/kapptemplate/admin/Makefile.common
|
||||
share/apps/kapptemplate/admin/Makefile.in
|
||||
share/apps/kapptemplate/admin/acinclude.m4.in
|
||||
share/apps/kapptemplate/admin/am_edit
|
||||
share/apps/kapptemplate/admin/compile
|
||||
share/apps/kapptemplate/admin/conf.change.pl
|
||||
share/apps/kapptemplate/admin/config.guess
|
||||
share/apps/kapptemplate/admin/config.pl
|
||||
share/apps/kapptemplate/admin/config.sub
|
||||
share/apps/kapptemplate/admin/configure.in.bot.end
|
||||
share/apps/kapptemplate/admin/configure.in.min
|
||||
share/apps/kapptemplate/admin/cvs-clean.pl
|
||||
share/apps/kapptemplate/admin/cvs.sh
|
||||
share/apps/kapptemplate/admin/debianrules
|
||||
share/apps/kapptemplate/admin/depcomp
|
||||
share/apps/kapptemplate/admin/detect-autoconf.sh
|
||||
share/apps/kapptemplate/admin/install-sh
|
||||
share/apps/kapptemplate/admin/libtool.m4.in
|
||||
share/apps/kapptemplate/admin/ltconfig
|
||||
share/apps/kapptemplate/admin/ltmain.sh
|
||||
share/apps/kapptemplate/admin/missing
|
||||
share/apps/kapptemplate/admin/mkinstalldirs
|
||||
share/apps/kapptemplate/admin/old-libtool.m4.in
|
||||
share/apps/kapptemplate/admin/old-ltcf-c.sh
|
||||
share/apps/kapptemplate/admin/old-ltcf-cxx.sh
|
||||
share/apps/kapptemplate/admin/old-ltcf-gcj.sh
|
||||
share/apps/kapptemplate/admin/old-ltconfig
|
||||
share/apps/kapptemplate/admin/old-ltmain.sh
|
||||
share/apps/kapptemplate/admin/ylwrap
|
||||
share/apps/kapptemplate/appframework/AUTHORS
|
||||
share/apps/kapptemplate/appframework/COPYING
|
||||
|
@ -141,7 +135,6 @@ share/apps/kapptemplate/appframework/app.lsm
|
|||
share/apps/kapptemplate/appframework/app.spec
|
||||
share/apps/kapptemplate/appframework/base-Makefile.am
|
||||
share/apps/kapptemplate/appframework/base-Makefile.cvs
|
||||
share/apps/kapptemplate/appframework/config.h.bot
|
||||
share/apps/kapptemplate/appframework/configure.in.in.in
|
||||
share/apps/kapptemplate/appframework/no-exe/COPYING
|
||||
share/apps/kapptemplate/appframework/no-exe/INSTALL
|
||||
|
@ -216,81 +209,136 @@ share/apps/kapptemplate/kpartplugin/plugin_app.rc
|
|||
share/apps/kbabel/icons/hicolor/16x16/actions/autodiff.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/catalogmanager.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/diff.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/insert_arg.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/insert_tag.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/msgid2msgstr.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/nexterror.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/nextfuzzy.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/nextfuzzyuntrans.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/nextmarked.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/nextpo.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/nexttemplate.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/nextuntranslated.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/preverror.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/prevfuzzy.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/prevfuzzyuntrans.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/prevmarked.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/prevpo.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/prevtemplate.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/prevuntranslated.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/search2msgstr.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/spellcheck_actual.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/spellcheck_all.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/spellcheck_from_cursor.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/spellcheck_selected.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/statistics.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/syntax.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/togglefuzzy.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/transsearch.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/autodiff.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/catalogmanager.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/diff.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/insert_arg.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/insert_tag.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/msgid2msgstr.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/nexterror.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/nextfuzzy.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/nextfuzzyuntrans.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/nextmarked.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/nextpo.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/nexttemplate.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/nextuntranslated.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/preverror.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/prevfuzzy.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/prevfuzzyuntrans.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/prevmarked.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/prevpo.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/prevtemplate.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/prevuntranslated.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/search2msgstr.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/statistics.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/syntax.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/togglefuzzy.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/transsearch.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/autodiff.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/catalogmanager.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/diff.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/insert_arg.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/insert_tag.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/msgid2msgstr.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/nexterror.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/nextfuzzy.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/nextfuzzyuntrans.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/nextmarked.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/nextpo.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/nexttemplate.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/nextuntranslated.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/preverror.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/prevfuzzy.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/prevfuzzyuntrans.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/prevmarked.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/prevpo.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/prevtemplate.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/prevuntranslated.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/search2msgstr.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/statistics.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/syntax.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/togglefuzzy.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/transsearch.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/autodiff.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/catalogmanager.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/diff.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/insert_arg.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/insert_tag.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/msgid2msgstr.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/nexterror.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/nextfuzzy.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/nextfuzzyuntrans.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/nextmarked.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/nextpo.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/nexttemplate.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/nextuntranslated.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/preverror.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/prevfuzzy.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/prevfuzzyuntrans.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/prevmarked.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/prevpo.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/prevtemplate.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/prevuntranslated.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/search2msgstr.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/spellcheck_actual.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/spellcheck_all.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/spellcheck_from_cursor.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/spellcheck_selected.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/statistics.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/syntax.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/togglefuzzy.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/transsearch.png
|
||||
share/apps/kbabel/icons/locolor/22x22/actions/statistics.png
|
||||
share/apps/kbabel/icons/locolor/22x22/actions/syntax.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/autodiff.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/catalogmanager.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/diff.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/insert_arg.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/insert_tag.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/msgid2msgstr.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/nexterror.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/nextfuzzy.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/nextfuzzyuntrans.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/nextmarked.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/nextpo.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/nexttemplate.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/nextuntranslated.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/preverror.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/prevfuzzy.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/prevfuzzyuntrans.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/prevmarked.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/prevpo.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/prevtemplate.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/prevuntranslated.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/search2msgstr.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/statistics.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/syntax.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/togglefuzzy.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/transsearch.png
|
||||
share/apps/kbabel/kbabelui.rc
|
||||
|
@ -303,23 +351,29 @@ share/apps/kbabel/pics/splash.png
|
|||
share/apps/kbabeldict/modules/dbsearchengine.rc
|
||||
share/apps/kbabeldict/modules/poauxiliary.rc
|
||||
share/apps/kbabeldict/modules/pocompendium.rc
|
||||
share/apps/kompare/icons/hicolor/16x16/apps/kompare.png
|
||||
share/apps/kbugbuster/kbugbusterui.rc
|
||||
share/apps/kbugbuster/pics/bars.png
|
||||
share/apps/kbugbuster/pics/logo.png
|
||||
share/apps/kbugbuster/pics/tools.png
|
||||
share/apps/kompare/icons/crystalsvg/16x16/apps/kompare.png
|
||||
share/apps/kompare/icons/locolor/16x16/apps/kompare.png
|
||||
share/apps/kompare/icons/locolor/32x32/apps/kompare.png
|
||||
share/apps/kompare/kompareui.rc
|
||||
share/apps/komparepart/komparepartui.rc
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/checkout.png
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/commit.png
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/common
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/diff.png
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/history.png
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/import.png
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/index.cache.bz2
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/index.docbook
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/logtree.png
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/mainview.png
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/resolve.png
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/updatetag.png
|
||||
share/doc/HTML/en/cervisia/annotate.png
|
||||
share/doc/HTML/en/cervisia/checkout.png
|
||||
share/doc/HTML/en/cervisia/commit.png
|
||||
share/doc/HTML/en/cervisia/common
|
||||
share/doc/HTML/en/cervisia/diff.png
|
||||
share/doc/HTML/en/cervisia/history.png
|
||||
share/doc/HTML/en/cervisia/import.png
|
||||
share/doc/HTML/en/cervisia/index.cache.bz2
|
||||
share/doc/HTML/en/cervisia/index.docbook
|
||||
share/doc/HTML/en/cervisia/logtree.png
|
||||
share/doc/HTML/en/cervisia/mainview.png
|
||||
share/doc/HTML/en/cervisia/resolve.png
|
||||
share/doc/HTML/en/cervisia/updatetag.png
|
||||
share/doc/HTML/en/kbabel/TODO
|
||||
share/doc/HTML/en/kbabel/back.png
|
||||
share/doc/HTML/en/kbabel/bottom.png
|
||||
share/doc/HTML/en/kbabel/catalogmanager.png
|
||||
|
@ -329,140 +383,85 @@ share/doc/HTML/en/kbabel/catalogmanager_needwork.png
|
|||
share/doc/HTML/en/kbabel/catalogmanager_nopot.png
|
||||
share/doc/HTML/en/kbabel/catalogmanager_nopot_ok.png
|
||||
share/doc/HTML/en/kbabel/catalogmanager_ok.png
|
||||
share/doc/HTML/en/kbabel/catalogmanager_reload.png
|
||||
share/doc/HTML/en/kbabel/catman.docbook
|
||||
share/doc/HTML/en/kbabel/common
|
||||
share/doc/HTML/en/kbabel/dbcan.png
|
||||
share/doc/HTML/en/kbabel/dictionaries.docbook
|
||||
share/doc/HTML/en/kbabel/editcopy.png
|
||||
share/doc/HTML/en/kbabel/editcut.png
|
||||
share/doc/HTML/en/kbabel/editpaste.png
|
||||
share/doc/HTML/en/kbabel/faq.docbook
|
||||
share/doc/HTML/en/kbabel/fileopen.png
|
||||
share/doc/HTML/en/kbabel/filesave.png
|
||||
share/doc/HTML/en/kbabel/find.png
|
||||
share/doc/HTML/en/kbabel/forward.png
|
||||
share/doc/HTML/en/kbabel/glossary.docbook
|
||||
share/doc/HTML/en/kbabel/index.cache.bz2
|
||||
share/doc/HTML/en/kbabel/index.docbook
|
||||
share/doc/HTML/en/kbabel/kbabeldict.docbook
|
||||
share/doc/HTML/en/kbabel/menu.docbook
|
||||
share/doc/HTML/en/kbabel/msgid2msgstr.png
|
||||
share/doc/HTML/en/kbabel/next.png
|
||||
share/doc/HTML/en/kbabel/nexterror.png
|
||||
share/doc/HTML/en/kbabel/nextfuzzy.png
|
||||
share/doc/HTML/en/kbabel/nextfuzzyuntrans.png
|
||||
share/doc/HTML/en/kbabel/nextuntranslated.png
|
||||
share/doc/HTML/en/kbabel/preferences.docbook
|
||||
share/doc/HTML/en/kbabel/preverror.png
|
||||
share/doc/HTML/en/kbabel/prevfuzzy.png
|
||||
share/doc/HTML/en/kbabel/prevfuzzyuntrans.png
|
||||
share/doc/HTML/en/kbabel/previous.png
|
||||
share/doc/HTML/en/kbabel/prevuntranslated.png
|
||||
share/doc/HTML/en/kbabel/redo.png
|
||||
share/doc/HTML/en/kbabel/roughtranslation.png
|
||||
share/doc/HTML/en/kbabel/snap1.png
|
||||
share/doc/HTML/en/kbabel/snap_catalogmanager.png
|
||||
share/doc/HTML/en/kbabel/snap_kbabeldict.png
|
||||
share/doc/HTML/en/kbabel/snap_kbabeldict2.png
|
||||
share/doc/HTML/en/kbabel/stop.png
|
||||
share/doc/HTML/en/kbabel/top.png
|
||||
share/doc/HTML/en/kbabel/transsearch.png
|
||||
share/doc/HTML/en/kbabel/undo.png
|
||||
share/icons/hicolor/16x16/apps/catalogmanager.png
|
||||
%%CERVISIA%%share/icons/hicolor/16x16/apps/cervisia.png
|
||||
share/icons/hicolor/16x16/apps/kbabel.png
|
||||
share/icons/hicolor/16x16/apps/kbabeldict.png
|
||||
share/icons/hicolor/16x16/apps/kompare.png
|
||||
share/icons/hicolor/16x16/mimetypes/gettext.png
|
||||
share/icons/hicolor/32x32/apps/catalogmanager.png
|
||||
%%CERVISIA%%share/icons/hicolor/32x32/apps/cervisia.png
|
||||
share/icons/hicolor/32x32/apps/kbabel.png
|
||||
share/icons/hicolor/32x32/apps/kbabeldict.png
|
||||
share/icons/hicolor/32x32/mimetypes/gettext.png
|
||||
share/icons/hicolor/48x48/apps/catalogmanager.png
|
||||
share/icons/hicolor/48x48/apps/kbabel.png
|
||||
share/icons/hicolor/48x48/mimetypes/gettext.png
|
||||
share/doc/HTML/en/kbabel/using.docbook
|
||||
share/doc/HTML/en/kbugbuster/common
|
||||
share/doc/HTML/en/kbugbuster/index.cache.bz2
|
||||
share/doc/HTML/en/kbugbuster/index.docbook
|
||||
share/doc/HTML/en/kompare/common
|
||||
share/doc/HTML/en/kompare/index.cache.bz2
|
||||
share/doc/HTML/en/kompare/index.docbook
|
||||
share/icons/crystalsvg/16x16/apps/catalogmanager.png
|
||||
share/icons/crystalsvg/16x16/apps/kbabel.png
|
||||
share/icons/crystalsvg/16x16/apps/kbabeldict.png
|
||||
share/icons/crystalsvg/16x16/apps/kbugbuster.png
|
||||
share/icons/crystalsvg/16x16/apps/kompare.png
|
||||
share/icons/crystalsvg/16x16/mimetypes/gettext.png
|
||||
share/icons/crystalsvg/32x32/apps/catalogmanager.png
|
||||
share/icons/crystalsvg/32x32/apps/kbabel.png
|
||||
share/icons/crystalsvg/32x32/apps/kbabeldict.png
|
||||
share/icons/crystalsvg/32x32/mimetypes/gettext.png
|
||||
share/icons/crystalsvg/48x48/apps/catalogmanager.png
|
||||
share/icons/crystalsvg/48x48/apps/kbabel.png
|
||||
share/icons/crystalsvg/48x48/mimetypes/gettext.png
|
||||
share/icons/locolor/16x16/apps/catalogmanager.png
|
||||
share/icons/locolor/16x16/apps/kbabel.png
|
||||
share/icons/locolor/16x16/apps/kbabeldict.png
|
||||
share/icons/locolor/16x16/apps/kbugbuster.png
|
||||
share/icons/locolor/16x16/apps/kompare.png
|
||||
share/icons/locolor/16x16/mimetypes/gettext.png
|
||||
share/icons/locolor/32x32/apps/catalogmanager.png
|
||||
share/icons/locolor/32x32/apps/kbabel.png
|
||||
share/icons/locolor/32x32/apps/kbabeldict.png
|
||||
share/icons/locolor/32x32/apps/kbugbuster.png
|
||||
share/icons/locolor/32x32/apps/kompare.png
|
||||
share/icons/locolor/32x32/mimetypes/gettext.png
|
||||
share/mimelnk/application/x-gettext.desktop
|
||||
share/services/kompare_part.desktop
|
||||
share/services/kfile_cpp.desktop
|
||||
share/services/kfile_diff.desktop
|
||||
share/services/kfile_h.desktop
|
||||
share/services/kfile_po.desktop
|
||||
share/services/komparenavtreepart.desktop
|
||||
share/services/komparepart.desktop
|
||||
share/services/pothumbnail.desktop
|
||||
@dirrm share/mimelnk/application
|
||||
@dirrm share/mimelnk
|
||||
@dirrm share/icons/locolor/32x32/mimetypes
|
||||
@dirrm share/icons/locolor/32x32/apps
|
||||
@dirrm share/icons/locolor/32x32
|
||||
@dirrm share/icons/locolor/16x16/mimetypes
|
||||
@dirrm share/icons/locolor/16x16/apps
|
||||
@dirrm share/icons/locolor/16x16
|
||||
@dirrm share/icons/locolor
|
||||
@dirrm share/icons/hicolor/48x48/mimetypes
|
||||
@dirrm share/icons/hicolor/48x48/apps
|
||||
@dirrm share/icons/hicolor/48x48
|
||||
@dirrm share/icons/hicolor/32x32/mimetypes
|
||||
@dirrm share/icons/hicolor/32x32/apps
|
||||
@dirrm share/icons/hicolor/32x32
|
||||
@dirrm share/icons/hicolor/16x16/mimetypes
|
||||
@dirrm share/icons/hicolor/16x16/apps
|
||||
@dirrm share/icons/hicolor/16x16
|
||||
@dirrm share/icons/hicolor
|
||||
@dirrm share/doc/HTML/en/kbabel
|
||||
%%CERVISIA%%@dirrm share/doc/HTML/en/cervisia
|
||||
@dirrm share/apps/komparepart
|
||||
@dirrm share/apps/kompare/icons/locolor/32x32/apps
|
||||
@dirrm share/apps/kompare/icons/locolor/32x32
|
||||
@dirrm share/apps/kompare/icons/locolor/16x16/apps
|
||||
@dirrm share/apps/kompare/icons/locolor/16x16
|
||||
@dirrm share/apps/kompare/icons/locolor
|
||||
@dirrm share/apps/kompare/icons/hicolor/16x16/apps
|
||||
@dirrm share/apps/kompare/icons/hicolor/16x16
|
||||
@dirrm share/apps/kompare/icons/hicolor
|
||||
@dirrm share/apps/kompare/icons
|
||||
@dirrm share/apps/kompare
|
||||
@dirrm share/apps/kbabeldict/modules
|
||||
@dirrm share/apps/kbabeldict
|
||||
@dirrm share/apps/kbabel/pics
|
||||
@dirrm share/apps/kbabel/icons/locolor/32x32/actions
|
||||
@dirrm share/apps/kbabel/icons/locolor/32x32
|
||||
@dirrm share/apps/kbabel/icons/locolor/16x16/actions
|
||||
@dirrm share/apps/kbabel/icons/locolor/16x16
|
||||
@dirrm share/apps/kbabel/icons/locolor
|
||||
@dirrm share/apps/kbabel/icons/hicolor/32x32/actions
|
||||
@dirrm share/apps/kbabel/icons/hicolor/32x32
|
||||
@dirrm share/apps/kbabel/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/kbabel/icons/hicolor/22x22
|
||||
@dirrm share/apps/kbabel/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/kbabel/icons/hicolor/16x16
|
||||
@dirrm share/apps/kbabel/icons/hicolor
|
||||
@dirrm share/apps/kbabel/icons
|
||||
@dirrm share/apps/kbabel
|
||||
@dirrm share/apps/kapptemplate/kpartplugin/no-exe
|
||||
@dirrm share/apps/kapptemplate/kpartplugin
|
||||
@dirrm share/apps/kapptemplate/kpartapp/no-exe
|
||||
@dirrm share/apps/kapptemplate/kpartapp
|
||||
@dirrm share/apps/kapptemplate/kapp/no-exe
|
||||
@dirrm share/apps/kapptemplate/kapp
|
||||
@dirrm share/apps/kapptemplate/include
|
||||
@dirrm share/apps/kapptemplate/existing
|
||||
@dirrm share/apps/kapptemplate/bin
|
||||
@dirrm share/apps/kapptemplate/appframework/no-exe
|
||||
@dirrm share/apps/kapptemplate/appframework
|
||||
@dirrm share/apps/kapptemplate/admin
|
||||
@dirrm share/apps/kapptemplate
|
||||
%%CERVISIA%%@dirrm share/apps/cervisia
|
||||
@dirrm share/apps/catalogmanager/pics
|
||||
@dirrm share/apps/catalogmanager/icons/locolor/32x32/actions
|
||||
@dirrm share/apps/catalogmanager/icons/locolor/32x32
|
||||
@dirrm share/apps/catalogmanager/icons/locolor/22x22/actions
|
||||
@dirrm share/apps/catalogmanager/icons/locolor/22x22
|
||||
@dirrm share/apps/catalogmanager/icons/locolor/16x16/actions
|
||||
@dirrm share/apps/catalogmanager/icons/locolor/16x16
|
||||
@dirrm share/apps/catalogmanager/icons/locolor
|
||||
@dirrm share/apps/catalogmanager/icons/hicolor/32x32/actions
|
||||
@dirrm share/apps/catalogmanager/icons/hicolor/32x32
|
||||
@dirrm share/apps/catalogmanager/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/catalogmanager/icons/hicolor/22x22
|
||||
@dirrm share/apps/catalogmanager/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/catalogmanager/icons/hicolor/16x16
|
||||
@dirrm share/apps/catalogmanager/icons/hicolor
|
||||
@dirrm share/apps/catalogmanager/icons
|
||||
@dirrm share/apps/catalogmanager
|
||||
@dirrm share/applnk/Development
|
||||
@dirrm include/kbabel
|
||||
share/servicetypes/komparenavigationpart.desktop
|
||||
share/servicetypes/kompareviewpart.desktop
|
82
devel/kdesdk3/files/plist.base.rm
Normal file
82
devel/kdesdk3/files/plist.base.rm
Normal file
|
@ -0,0 +1,82 @@
|
|||
@dirrm share/servicetypes
|
||||
@dirrm share/services
|
||||
@dirrm share/mimelnk/application
|
||||
@dirrm share/mimelnk
|
||||
@dirrm share/icons/locolor/32x32/mimetypes
|
||||
@dirrm share/icons/locolor/32x32/apps
|
||||
@dirrm share/icons/locolor/32x32
|
||||
@dirrm share/icons/locolor/16x16/mimetypes
|
||||
@dirrm share/icons/locolor/16x16/apps
|
||||
@dirrm share/icons/locolor/16x16
|
||||
@dirrm share/icons/locolor
|
||||
@dirrm share/icons/crystalsvg/48x48/mimetypes
|
||||
@dirrm share/icons/crystalsvg/48x48/apps
|
||||
@dirrm share/icons/crystalsvg/48x48
|
||||
@dirrm share/icons/crystalsvg/32x32/mimetypes
|
||||
@dirrm share/icons/crystalsvg/32x32/apps
|
||||
@dirrm share/icons/crystalsvg/32x32
|
||||
@dirrm share/icons/crystalsvg/16x16/mimetypes
|
||||
@dirrm share/icons/crystalsvg/16x16/apps
|
||||
@dirrm share/icons/crystalsvg/16x16
|
||||
@dirrm share/icons/crystalsvg
|
||||
@dirrm share/icons
|
||||
@dirrm share/doc/HTML/en/kompare
|
||||
@dirrm share/doc/HTML/en/kbugbuster
|
||||
@dirrm share/doc/HTML/en/kbabel
|
||||
@dirrm share/doc/HTML/en/cervisia
|
||||
@dirrm share/doc/HTML/en
|
||||
@dirrm share/doc/HTML
|
||||
@dirrm share/doc
|
||||
@dirrm share/apps/komparepart
|
||||
@dirrm share/apps/kompare/icons/locolor/32x32/apps
|
||||
@dirrm share/apps/kompare/icons/locolor/32x32
|
||||
@dirrm share/apps/kompare/icons/locolor/16x16/apps
|
||||
@dirrm share/apps/kompare/icons/locolor/16x16
|
||||
@dirrm share/apps/kompare/icons/locolor
|
||||
@dirrm share/apps/kompare/icons/crystalsvg/16x16/apps
|
||||
@dirrm share/apps/kompare/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/kompare/icons/crystalsvg
|
||||
@dirrm share/apps/kompare/icons
|
||||
@dirrm share/apps/kompare
|
||||
@dirrm share/apps/kbugbuster/pics
|
||||
@dirrm share/apps/kbugbuster
|
||||
@dirrm share/apps/kbabeldict/modules
|
||||
@dirrm share/apps/kbabeldict
|
||||
@dirrm share/apps/kbabel/pics
|
||||
@dirrm share/apps/kbabel/icons/locolor/32x32/actions
|
||||
@dirrm share/apps/kbabel/icons/locolor/32x32
|
||||
@dirrm share/apps/kbabel/icons/locolor/22x22/actions
|
||||
@dirrm share/apps/kbabel/icons/locolor/22x22
|
||||
@dirrm share/apps/kbabel/icons/locolor/16x16/actions
|
||||
@dirrm share/apps/kbabel/icons/locolor/16x16
|
||||
@dirrm share/apps/kbabel/icons/locolor
|
||||
@dirrm share/apps/kbabel/icons/hicolor/32x32/actions
|
||||
@dirrm share/apps/kbabel/icons/hicolor/32x32
|
||||
@dirrm share/apps/kbabel/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/kbabel/icons/hicolor/22x22
|
||||
@dirrm share/apps/kbabel/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/kbabel/icons/hicolor/16x16
|
||||
@dirrm share/apps/kbabel/icons/hicolor
|
||||
@dirrm share/apps/kbabel/icons
|
||||
@dirrm share/apps/kbabel
|
||||
@dirrm share/apps/kapptemplate/kpartplugin/no-exe
|
||||
@dirrm share/apps/kapptemplate/kpartplugin
|
||||
@dirrm share/apps/kapptemplate/kpartapp/no-exe
|
||||
@dirrm share/apps/kapptemplate/kpartapp
|
||||
@dirrm share/apps/kapptemplate/kapp/no-exe
|
||||
@dirrm share/apps/kapptemplate/kapp
|
||||
@dirrm share/apps/kapptemplate/include
|
||||
@dirrm share/apps/kapptemplate/existing
|
||||
@dirrm share/apps/kapptemplate/bin
|
||||
@dirrm share/apps/kapptemplate/appframework/no-exe
|
||||
@dirrm share/apps/kapptemplate/appframework
|
||||
@dirrm share/apps/kapptemplate/admin
|
||||
@dirrm share/apps/kapptemplate
|
||||
@dirrm share/apps/kabc/formats
|
||||
@dirrm share/apps/kabc
|
||||
@dirrm share/apps/catalogmanager
|
||||
@dirrm share/apps
|
||||
@dirrm share/applnk/Development
|
||||
@dirrm share/applnk
|
||||
@dirrm lib/kde3
|
||||
@dirrm include/kbabel
|
9
devel/kdesdk3/files/plist.cervisia
Normal file
9
devel/kdesdk3/files/plist.cervisia
Normal file
|
@ -0,0 +1,9 @@
|
|||
bin/cervisia
|
||||
lib/libcervisia.la
|
||||
lib/libcervisia.so
|
||||
lib/libcervisia.so.1
|
||||
share/applnk/Development/cervisia.desktop
|
||||
share/apps/cervisia/cervisiashellui.rc
|
||||
share/apps/cervisiapart/cervisiaui.rc
|
||||
share/icons/crystalsvg/16x16/apps/cervisia.png
|
||||
share/icons/crystalsvg/32x32/apps/cervisia.png
|
2
devel/kdesdk3/files/plist.cervisia.rm
Normal file
2
devel/kdesdk3/files/plist.cervisia.rm
Normal file
|
@ -0,0 +1,2 @@
|
|||
@dirrm share/apps/cervisiapart
|
||||
@dirrm share/apps/cervisia
|
|
@ -17,25 +17,34 @@ MAINTAINER= kde@FreeBSD.org
|
|||
LIB_DEPENDS= db2.0:${PORTSDIR}/databases/db2
|
||||
|
||||
USE_KDEBASE_VER=3
|
||||
GNU_CONFIGURE= yes
|
||||
PREFIX= ${KDE_PREFIX}
|
||||
KDE_BUILD_PLIST=yes
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
INSTALLS_SHLIB= yes
|
||||
LDCONFIG_DIRS= %%PREFIX%%/lib %%PREFIX%%/lib/kde3
|
||||
|
||||
MAN1= cvs2pack.1 cvsversion.1 noncvslist.1 kde-build.1
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
# Doesn't compile due to C++-unsafe header sys/wait.h.
|
||||
# XXX: Need to figure out when this actually happens.
|
||||
.if ${OSVERSION} > 500000
|
||||
CONFIGURE_ENV= DO_NOT_COMPILE="cervisia"
|
||||
PLIST_SUB+= CERVISIA="@comment "
|
||||
WITHOUT_CERVISIA= yes
|
||||
.endif # ${OSVERSION} > 500000
|
||||
|
||||
.if defined(WITHOUT_CERVISIA)
|
||||
DO_NOT_COMPILE+=cervisia
|
||||
.else
|
||||
PLIST_SUB+= CERVISIA=""
|
||||
.endif
|
||||
PLIST_APPEND+= plist.cervisia
|
||||
.include "${FILESDIR}/manpages.mk"
|
||||
.endif # defined(WITHOUT_CERVISIA)
|
||||
|
||||
.if defined(DO_NOT_COMPILE)
|
||||
CONFIGURE_ENV+= DO_NOT_COMPILE="${DO_NOT_COMPILE}"
|
||||
.endif # defined(DO_NOT_COMPILE)
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
51
devel/kdesdk4/Makefile~
Normal file
51
devel/kdesdk4/Makefile~
Normal file
|
@ -0,0 +1,51 @@
|
|||
# New ports collection makefile for: KDE SDK
|
||||
# Date created: 2 March 2001
|
||||
# Whom: Dmitry Sivachenko <demon@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD: /tmp/pcvs/ports/devel/kdesdk4/Attic/Makefile~,v 1.1 2003-01-28 18:36:52 alane Exp $
|
||||
#
|
||||
|
||||
PORTNAME= kdesdk
|
||||
PORTVERSION= ${KDE_VERSION}
|
||||
CATEGORIES= devel kde
|
||||
MASTER_SITES= ${MASTER_SITE_KDE}
|
||||
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
|
||||
DIST_SUBDIR= KDE
|
||||
|
||||
MAINTAINER= kde@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= db2.0:${PORTSDIR}/databases/db2
|
||||
|
||||
USE_KDEBASE_VER=3
|
||||
PREFIX= ${KDE_PREFIX}
|
||||
KDE_BUILD_PLIST=yes
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
INSTALLS_SHLIB= yes
|
||||
LDCONFIG_DIRS= %%PREFIX%%/lib %%PREFIX%%/lib/kde3
|
||||
|
||||
MAN1= cvs2pack.1 cvsversion.1 noncvslist.1 kde-build.1
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
# Doesn't compile due to C++-unsafe header sys/wait.h.
|
||||
# XXX: Need to figure out when this actually happens.
|
||||
.if ${OSVERSION} > 500000
|
||||
WITHOUT_CERVISIA= yes
|
||||
.endif # ${OSVERSION} > 500000
|
||||
|
||||
.if defined(WITHOUT_CERVISIA)
|
||||
DO_NOT_COMPILE+=cervisia
|
||||
.else
|
||||
PLIST_APPEND+= plist.cervisia
|
||||
.endif # defined(WITHOUT_CERVISIA)
|
||||
|
||||
.if defined(DO_NOT_COMPILE)
|
||||
CONFIGURE_ENV+= DO_NOT_COMPILE="${DO_NOT_COMPILE}"
|
||||
.endif # defined(DO_NOT_COMPILE)
|
||||
|
||||
.include <bsd.port.post.mk>
|
|
@ -1 +1 @@
|
|||
MD5 (KDE/kdesdk-3.0.4.tar.bz2) = 13c54f973533f4816069e82f7f375c34
|
||||
MD5 (KDE/kdesdk-3.1.tar.bz2) = 8c4e22ce1dd2be8464d31800cb0b347b
|
||||
|
|
7
devel/kdesdk4/files/manpages.mk
Normal file
7
devel/kdesdk4/files/manpages.mk
Normal file
|
@ -0,0 +1,7 @@
|
|||
MAN1+= cervisia.1
|
||||
MAN1+= cvs2pack.1
|
||||
MAN1+= cvsversion.1
|
||||
MAN1+= noncvslist.1
|
||||
MAN1+= kde-build.1
|
||||
MAN1+= cvsblame.1
|
||||
MAN1+= cvscheck.1
|
|
@ -1,6 +1,6 @@
|
|||
bin/adddebug
|
||||
bin/catalogmanager
|
||||
%%CERVISIA%%bin/cervisia
|
||||
bin/cheatmake
|
||||
bin/create_cvsignore
|
||||
bin/create_makefile
|
||||
bin/create_makefiles
|
||||
|
@ -14,11 +14,13 @@ bin/cvsversion
|
|||
bin/cxxmetric
|
||||
bin/extend_dmalloc
|
||||
bin/extractrc
|
||||
bin/fixincludes
|
||||
bin/fixsgml
|
||||
bin/includemocs
|
||||
bin/kapptemplate
|
||||
bin/kbabel
|
||||
bin/kbabeldict
|
||||
bin/kbugbuster
|
||||
bin/kde-build
|
||||
bin/kdedoc
|
||||
bin/kdekillall
|
||||
|
@ -34,6 +36,7 @@ bin/split2po
|
|||
bin/swappo
|
||||
bin/transxx
|
||||
bin/xml2pot
|
||||
bin/zonetab2pot.py
|
||||
include/kbabel/catalog.h
|
||||
include/kbabel/catalogitem.h
|
||||
include/kbabel/catalogsettings.h
|
||||
|
@ -47,9 +50,20 @@ include/kbabel/kbabeldictiface.h
|
|||
include/kbabel/msgfmt.h
|
||||
include/kbabel/searchengine.h
|
||||
include/kbabel/tagextractor.h
|
||||
include/kprofilemethod.h
|
||||
include/kspy.h
|
||||
lib/kde3/kabcformat_kdeaccounts.la
|
||||
lib/kde3/kabcformat_kdeaccounts.so
|
||||
lib/kde3/kfile_cpp.la
|
||||
lib/kde3/kfile_cpp.so
|
||||
lib/kde3/kfile_diff.la
|
||||
lib/kde3/kfile_diff.so
|
||||
lib/kde3/kfile_po.la
|
||||
lib/kde3/kfile_po.so
|
||||
lib/kde3/libdbsearchengine.la
|
||||
lib/kde3/libdbsearchengine.so
|
||||
lib/kde3/libkomparenavtreepart.la
|
||||
lib/kde3/libkomparenavtreepart.so
|
||||
lib/kde3/libkomparepart.la
|
||||
lib/kde3/libkomparepart.so
|
||||
lib/kde3/libpoauxiliary.la
|
||||
|
@ -61,9 +75,6 @@ lib/kde3/pothumbnail.so
|
|||
lib/libcatalogmanager.la
|
||||
lib/libcatalogmanager.so
|
||||
lib/libcatalogmanager.so.1
|
||||
%%CERVISIA%%lib/libcervisia.la
|
||||
%%CERVISIA%%lib/libcervisia.so
|
||||
%%CERVISIA%%lib/libcervisia.so.1
|
||||
lib/libkbabel.la
|
||||
lib/libkbabel.so
|
||||
lib/libkbabel.so.1
|
||||
|
@ -80,55 +91,38 @@ lib/libkspy.la
|
|||
lib/libkspy.so
|
||||
lib/libkspy.so.1
|
||||
share/applnk/Development/catalogmanager.desktop
|
||||
%%CERVISIA%%share/applnk/Development/cervisia.desktop
|
||||
share/applnk/Development/kbabel.desktop
|
||||
share/applnk/Development/kbabeldict.desktop
|
||||
share/applnk/Development/kbugbuster.desktop
|
||||
share/applnk/Development/kompare.desktop
|
||||
share/apps/catalogmanager/catalogmanagerui.rc
|
||||
share/apps/catalogmanager/icons/hicolor/16x16/actions/statistics.png
|
||||
share/apps/catalogmanager/icons/hicolor/16x16/actions/syntax.png
|
||||
share/apps/catalogmanager/icons/hicolor/22x22/actions/statistics.png
|
||||
share/apps/catalogmanager/icons/hicolor/22x22/actions/syntax.png
|
||||
share/apps/catalogmanager/icons/hicolor/32x32/actions/statistics.png
|
||||
share/apps/catalogmanager/icons/hicolor/32x32/actions/syntax.png
|
||||
share/apps/catalogmanager/icons/locolor/16x16/actions/statistics.png
|
||||
share/apps/catalogmanager/icons/locolor/16x16/actions/syntax.png
|
||||
share/apps/catalogmanager/icons/locolor/22x22/actions/statistics.png
|
||||
share/apps/catalogmanager/icons/locolor/22x22/actions/syntax.png
|
||||
share/apps/catalogmanager/icons/locolor/32x32/actions/statistics.png
|
||||
share/apps/catalogmanager/icons/locolor/32x32/actions/syntax.png
|
||||
share/apps/catalogmanager/pics/broken.png
|
||||
share/apps/catalogmanager/pics/missing.png
|
||||
share/apps/catalogmanager/pics/needwork.png
|
||||
share/apps/catalogmanager/pics/ok.png
|
||||
%%CERVISIA%%share/apps/cervisia/cervisiashellui.rc
|
||||
%%CERVISIA%%share/apps/cervisia/cervisiaui.rc
|
||||
share/apps/kabc/formats/kdeaccountsplugin.desktop
|
||||
share/apps/kapptemplate/admin/ChangeLog
|
||||
share/apps/kapptemplate/admin/Doxyfile.am
|
||||
share/apps/kapptemplate/admin/Doxyfile.global
|
||||
share/apps/kapptemplate/admin/Makefile
|
||||
share/apps/kapptemplate/admin/Makefile.am
|
||||
share/apps/kapptemplate/admin/Makefile.common
|
||||
share/apps/kapptemplate/admin/Makefile.in
|
||||
share/apps/kapptemplate/admin/acinclude.m4.in
|
||||
share/apps/kapptemplate/admin/am_edit
|
||||
share/apps/kapptemplate/admin/compile
|
||||
share/apps/kapptemplate/admin/conf.change.pl
|
||||
share/apps/kapptemplate/admin/config.guess
|
||||
share/apps/kapptemplate/admin/config.pl
|
||||
share/apps/kapptemplate/admin/config.sub
|
||||
share/apps/kapptemplate/admin/configure.in.bot.end
|
||||
share/apps/kapptemplate/admin/configure.in.min
|
||||
share/apps/kapptemplate/admin/cvs-clean.pl
|
||||
share/apps/kapptemplate/admin/cvs.sh
|
||||
share/apps/kapptemplate/admin/debianrules
|
||||
share/apps/kapptemplate/admin/depcomp
|
||||
share/apps/kapptemplate/admin/detect-autoconf.sh
|
||||
share/apps/kapptemplate/admin/install-sh
|
||||
share/apps/kapptemplate/admin/libtool.m4.in
|
||||
share/apps/kapptemplate/admin/ltconfig
|
||||
share/apps/kapptemplate/admin/ltmain.sh
|
||||
share/apps/kapptemplate/admin/missing
|
||||
share/apps/kapptemplate/admin/mkinstalldirs
|
||||
share/apps/kapptemplate/admin/old-libtool.m4.in
|
||||
share/apps/kapptemplate/admin/old-ltcf-c.sh
|
||||
share/apps/kapptemplate/admin/old-ltcf-cxx.sh
|
||||
share/apps/kapptemplate/admin/old-ltcf-gcj.sh
|
||||
share/apps/kapptemplate/admin/old-ltconfig
|
||||
share/apps/kapptemplate/admin/old-ltmain.sh
|
||||
share/apps/kapptemplate/admin/ylwrap
|
||||
share/apps/kapptemplate/appframework/AUTHORS
|
||||
share/apps/kapptemplate/appframework/COPYING
|
||||
|
@ -141,7 +135,6 @@ share/apps/kapptemplate/appframework/app.lsm
|
|||
share/apps/kapptemplate/appframework/app.spec
|
||||
share/apps/kapptemplate/appframework/base-Makefile.am
|
||||
share/apps/kapptemplate/appframework/base-Makefile.cvs
|
||||
share/apps/kapptemplate/appframework/config.h.bot
|
||||
share/apps/kapptemplate/appframework/configure.in.in.in
|
||||
share/apps/kapptemplate/appframework/no-exe/COPYING
|
||||
share/apps/kapptemplate/appframework/no-exe/INSTALL
|
||||
|
@ -216,81 +209,136 @@ share/apps/kapptemplate/kpartplugin/plugin_app.rc
|
|||
share/apps/kbabel/icons/hicolor/16x16/actions/autodiff.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/catalogmanager.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/diff.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/insert_arg.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/insert_tag.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/msgid2msgstr.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/nexterror.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/nextfuzzy.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/nextfuzzyuntrans.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/nextmarked.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/nextpo.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/nexttemplate.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/nextuntranslated.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/preverror.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/prevfuzzy.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/prevfuzzyuntrans.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/prevmarked.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/prevpo.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/prevtemplate.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/prevuntranslated.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/search2msgstr.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/spellcheck_actual.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/spellcheck_all.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/spellcheck_from_cursor.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/spellcheck_selected.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/statistics.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/syntax.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/togglefuzzy.png
|
||||
share/apps/kbabel/icons/hicolor/16x16/actions/transsearch.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/autodiff.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/catalogmanager.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/diff.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/insert_arg.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/insert_tag.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/msgid2msgstr.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/nexterror.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/nextfuzzy.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/nextfuzzyuntrans.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/nextmarked.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/nextpo.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/nexttemplate.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/nextuntranslated.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/preverror.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/prevfuzzy.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/prevfuzzyuntrans.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/prevmarked.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/prevpo.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/prevtemplate.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/prevuntranslated.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/search2msgstr.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/statistics.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/syntax.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/togglefuzzy.png
|
||||
share/apps/kbabel/icons/hicolor/22x22/actions/transsearch.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/autodiff.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/catalogmanager.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/diff.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/insert_arg.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/insert_tag.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/msgid2msgstr.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/nexterror.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/nextfuzzy.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/nextfuzzyuntrans.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/nextmarked.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/nextpo.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/nexttemplate.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/nextuntranslated.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/preverror.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/prevfuzzy.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/prevfuzzyuntrans.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/prevmarked.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/prevpo.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/prevtemplate.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/prevuntranslated.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/search2msgstr.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/statistics.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/syntax.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/togglefuzzy.png
|
||||
share/apps/kbabel/icons/hicolor/32x32/actions/transsearch.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/autodiff.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/catalogmanager.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/diff.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/insert_arg.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/insert_tag.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/msgid2msgstr.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/nexterror.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/nextfuzzy.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/nextfuzzyuntrans.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/nextmarked.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/nextpo.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/nexttemplate.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/nextuntranslated.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/preverror.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/prevfuzzy.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/prevfuzzyuntrans.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/prevmarked.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/prevpo.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/prevtemplate.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/prevuntranslated.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/search2msgstr.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/spellcheck_actual.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/spellcheck_all.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/spellcheck_from_cursor.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/spellcheck_selected.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/statistics.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/syntax.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/togglefuzzy.png
|
||||
share/apps/kbabel/icons/locolor/16x16/actions/transsearch.png
|
||||
share/apps/kbabel/icons/locolor/22x22/actions/statistics.png
|
||||
share/apps/kbabel/icons/locolor/22x22/actions/syntax.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/autodiff.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/catalogmanager.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/diff.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/insert_arg.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/insert_tag.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/msgid2msgstr.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/nexterror.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/nextfuzzy.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/nextfuzzyuntrans.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/nextmarked.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/nextpo.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/nexttemplate.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/nextuntranslated.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/preverror.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/prevfuzzy.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/prevfuzzyuntrans.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/prevmarked.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/prevpo.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/prevtemplate.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/prevuntranslated.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/search2msgstr.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/statistics.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/syntax.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/togglefuzzy.png
|
||||
share/apps/kbabel/icons/locolor/32x32/actions/transsearch.png
|
||||
share/apps/kbabel/kbabelui.rc
|
||||
|
@ -303,23 +351,29 @@ share/apps/kbabel/pics/splash.png
|
|||
share/apps/kbabeldict/modules/dbsearchengine.rc
|
||||
share/apps/kbabeldict/modules/poauxiliary.rc
|
||||
share/apps/kbabeldict/modules/pocompendium.rc
|
||||
share/apps/kompare/icons/hicolor/16x16/apps/kompare.png
|
||||
share/apps/kbugbuster/kbugbusterui.rc
|
||||
share/apps/kbugbuster/pics/bars.png
|
||||
share/apps/kbugbuster/pics/logo.png
|
||||
share/apps/kbugbuster/pics/tools.png
|
||||
share/apps/kompare/icons/crystalsvg/16x16/apps/kompare.png
|
||||
share/apps/kompare/icons/locolor/16x16/apps/kompare.png
|
||||
share/apps/kompare/icons/locolor/32x32/apps/kompare.png
|
||||
share/apps/kompare/kompareui.rc
|
||||
share/apps/komparepart/komparepartui.rc
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/checkout.png
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/commit.png
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/common
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/diff.png
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/history.png
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/import.png
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/index.cache.bz2
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/index.docbook
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/logtree.png
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/mainview.png
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/resolve.png
|
||||
%%CERVISIA%%share/doc/HTML/en/cervisia/updatetag.png
|
||||
share/doc/HTML/en/cervisia/annotate.png
|
||||
share/doc/HTML/en/cervisia/checkout.png
|
||||
share/doc/HTML/en/cervisia/commit.png
|
||||
share/doc/HTML/en/cervisia/common
|
||||
share/doc/HTML/en/cervisia/diff.png
|
||||
share/doc/HTML/en/cervisia/history.png
|
||||
share/doc/HTML/en/cervisia/import.png
|
||||
share/doc/HTML/en/cervisia/index.cache.bz2
|
||||
share/doc/HTML/en/cervisia/index.docbook
|
||||
share/doc/HTML/en/cervisia/logtree.png
|
||||
share/doc/HTML/en/cervisia/mainview.png
|
||||
share/doc/HTML/en/cervisia/resolve.png
|
||||
share/doc/HTML/en/cervisia/updatetag.png
|
||||
share/doc/HTML/en/kbabel/TODO
|
||||
share/doc/HTML/en/kbabel/back.png
|
||||
share/doc/HTML/en/kbabel/bottom.png
|
||||
share/doc/HTML/en/kbabel/catalogmanager.png
|
||||
|
@ -329,140 +383,85 @@ share/doc/HTML/en/kbabel/catalogmanager_needwork.png
|
|||
share/doc/HTML/en/kbabel/catalogmanager_nopot.png
|
||||
share/doc/HTML/en/kbabel/catalogmanager_nopot_ok.png
|
||||
share/doc/HTML/en/kbabel/catalogmanager_ok.png
|
||||
share/doc/HTML/en/kbabel/catalogmanager_reload.png
|
||||
share/doc/HTML/en/kbabel/catman.docbook
|
||||
share/doc/HTML/en/kbabel/common
|
||||
share/doc/HTML/en/kbabel/dbcan.png
|
||||
share/doc/HTML/en/kbabel/dictionaries.docbook
|
||||
share/doc/HTML/en/kbabel/editcopy.png
|
||||
share/doc/HTML/en/kbabel/editcut.png
|
||||
share/doc/HTML/en/kbabel/editpaste.png
|
||||
share/doc/HTML/en/kbabel/faq.docbook
|
||||
share/doc/HTML/en/kbabel/fileopen.png
|
||||
share/doc/HTML/en/kbabel/filesave.png
|
||||
share/doc/HTML/en/kbabel/find.png
|
||||
share/doc/HTML/en/kbabel/forward.png
|
||||
share/doc/HTML/en/kbabel/glossary.docbook
|
||||
share/doc/HTML/en/kbabel/index.cache.bz2
|
||||
share/doc/HTML/en/kbabel/index.docbook
|
||||
share/doc/HTML/en/kbabel/kbabeldict.docbook
|
||||
share/doc/HTML/en/kbabel/menu.docbook
|
||||
share/doc/HTML/en/kbabel/msgid2msgstr.png
|
||||
share/doc/HTML/en/kbabel/next.png
|
||||
share/doc/HTML/en/kbabel/nexterror.png
|
||||
share/doc/HTML/en/kbabel/nextfuzzy.png
|
||||
share/doc/HTML/en/kbabel/nextfuzzyuntrans.png
|
||||
share/doc/HTML/en/kbabel/nextuntranslated.png
|
||||
share/doc/HTML/en/kbabel/preferences.docbook
|
||||
share/doc/HTML/en/kbabel/preverror.png
|
||||
share/doc/HTML/en/kbabel/prevfuzzy.png
|
||||
share/doc/HTML/en/kbabel/prevfuzzyuntrans.png
|
||||
share/doc/HTML/en/kbabel/previous.png
|
||||
share/doc/HTML/en/kbabel/prevuntranslated.png
|
||||
share/doc/HTML/en/kbabel/redo.png
|
||||
share/doc/HTML/en/kbabel/roughtranslation.png
|
||||
share/doc/HTML/en/kbabel/snap1.png
|
||||
share/doc/HTML/en/kbabel/snap_catalogmanager.png
|
||||
share/doc/HTML/en/kbabel/snap_kbabeldict.png
|
||||
share/doc/HTML/en/kbabel/snap_kbabeldict2.png
|
||||
share/doc/HTML/en/kbabel/stop.png
|
||||
share/doc/HTML/en/kbabel/top.png
|
||||
share/doc/HTML/en/kbabel/transsearch.png
|
||||
share/doc/HTML/en/kbabel/undo.png
|
||||
share/icons/hicolor/16x16/apps/catalogmanager.png
|
||||
%%CERVISIA%%share/icons/hicolor/16x16/apps/cervisia.png
|
||||
share/icons/hicolor/16x16/apps/kbabel.png
|
||||
share/icons/hicolor/16x16/apps/kbabeldict.png
|
||||
share/icons/hicolor/16x16/apps/kompare.png
|
||||
share/icons/hicolor/16x16/mimetypes/gettext.png
|
||||
share/icons/hicolor/32x32/apps/catalogmanager.png
|
||||
%%CERVISIA%%share/icons/hicolor/32x32/apps/cervisia.png
|
||||
share/icons/hicolor/32x32/apps/kbabel.png
|
||||
share/icons/hicolor/32x32/apps/kbabeldict.png
|
||||
share/icons/hicolor/32x32/mimetypes/gettext.png
|
||||
share/icons/hicolor/48x48/apps/catalogmanager.png
|
||||
share/icons/hicolor/48x48/apps/kbabel.png
|
||||
share/icons/hicolor/48x48/mimetypes/gettext.png
|
||||
share/doc/HTML/en/kbabel/using.docbook
|
||||
share/doc/HTML/en/kbugbuster/common
|
||||
share/doc/HTML/en/kbugbuster/index.cache.bz2
|
||||
share/doc/HTML/en/kbugbuster/index.docbook
|
||||
share/doc/HTML/en/kompare/common
|
||||
share/doc/HTML/en/kompare/index.cache.bz2
|
||||
share/doc/HTML/en/kompare/index.docbook
|
||||
share/icons/crystalsvg/16x16/apps/catalogmanager.png
|
||||
share/icons/crystalsvg/16x16/apps/kbabel.png
|
||||
share/icons/crystalsvg/16x16/apps/kbabeldict.png
|
||||
share/icons/crystalsvg/16x16/apps/kbugbuster.png
|
||||
share/icons/crystalsvg/16x16/apps/kompare.png
|
||||
share/icons/crystalsvg/16x16/mimetypes/gettext.png
|
||||
share/icons/crystalsvg/32x32/apps/catalogmanager.png
|
||||
share/icons/crystalsvg/32x32/apps/kbabel.png
|
||||
share/icons/crystalsvg/32x32/apps/kbabeldict.png
|
||||
share/icons/crystalsvg/32x32/mimetypes/gettext.png
|
||||
share/icons/crystalsvg/48x48/apps/catalogmanager.png
|
||||
share/icons/crystalsvg/48x48/apps/kbabel.png
|
||||
share/icons/crystalsvg/48x48/mimetypes/gettext.png
|
||||
share/icons/locolor/16x16/apps/catalogmanager.png
|
||||
share/icons/locolor/16x16/apps/kbabel.png
|
||||
share/icons/locolor/16x16/apps/kbabeldict.png
|
||||
share/icons/locolor/16x16/apps/kbugbuster.png
|
||||
share/icons/locolor/16x16/apps/kompare.png
|
||||
share/icons/locolor/16x16/mimetypes/gettext.png
|
||||
share/icons/locolor/32x32/apps/catalogmanager.png
|
||||
share/icons/locolor/32x32/apps/kbabel.png
|
||||
share/icons/locolor/32x32/apps/kbabeldict.png
|
||||
share/icons/locolor/32x32/apps/kbugbuster.png
|
||||
share/icons/locolor/32x32/apps/kompare.png
|
||||
share/icons/locolor/32x32/mimetypes/gettext.png
|
||||
share/mimelnk/application/x-gettext.desktop
|
||||
share/services/kompare_part.desktop
|
||||
share/services/kfile_cpp.desktop
|
||||
share/services/kfile_diff.desktop
|
||||
share/services/kfile_h.desktop
|
||||
share/services/kfile_po.desktop
|
||||
share/services/komparenavtreepart.desktop
|
||||
share/services/komparepart.desktop
|
||||
share/services/pothumbnail.desktop
|
||||
@dirrm share/mimelnk/application
|
||||
@dirrm share/mimelnk
|
||||
@dirrm share/icons/locolor/32x32/mimetypes
|
||||
@dirrm share/icons/locolor/32x32/apps
|
||||
@dirrm share/icons/locolor/32x32
|
||||
@dirrm share/icons/locolor/16x16/mimetypes
|
||||
@dirrm share/icons/locolor/16x16/apps
|
||||
@dirrm share/icons/locolor/16x16
|
||||
@dirrm share/icons/locolor
|
||||
@dirrm share/icons/hicolor/48x48/mimetypes
|
||||
@dirrm share/icons/hicolor/48x48/apps
|
||||
@dirrm share/icons/hicolor/48x48
|
||||
@dirrm share/icons/hicolor/32x32/mimetypes
|
||||
@dirrm share/icons/hicolor/32x32/apps
|
||||
@dirrm share/icons/hicolor/32x32
|
||||
@dirrm share/icons/hicolor/16x16/mimetypes
|
||||
@dirrm share/icons/hicolor/16x16/apps
|
||||
@dirrm share/icons/hicolor/16x16
|
||||
@dirrm share/icons/hicolor
|
||||
@dirrm share/doc/HTML/en/kbabel
|
||||
%%CERVISIA%%@dirrm share/doc/HTML/en/cervisia
|
||||
@dirrm share/apps/komparepart
|
||||
@dirrm share/apps/kompare/icons/locolor/32x32/apps
|
||||
@dirrm share/apps/kompare/icons/locolor/32x32
|
||||
@dirrm share/apps/kompare/icons/locolor/16x16/apps
|
||||
@dirrm share/apps/kompare/icons/locolor/16x16
|
||||
@dirrm share/apps/kompare/icons/locolor
|
||||
@dirrm share/apps/kompare/icons/hicolor/16x16/apps
|
||||
@dirrm share/apps/kompare/icons/hicolor/16x16
|
||||
@dirrm share/apps/kompare/icons/hicolor
|
||||
@dirrm share/apps/kompare/icons
|
||||
@dirrm share/apps/kompare
|
||||
@dirrm share/apps/kbabeldict/modules
|
||||
@dirrm share/apps/kbabeldict
|
||||
@dirrm share/apps/kbabel/pics
|
||||
@dirrm share/apps/kbabel/icons/locolor/32x32/actions
|
||||
@dirrm share/apps/kbabel/icons/locolor/32x32
|
||||
@dirrm share/apps/kbabel/icons/locolor/16x16/actions
|
||||
@dirrm share/apps/kbabel/icons/locolor/16x16
|
||||
@dirrm share/apps/kbabel/icons/locolor
|
||||
@dirrm share/apps/kbabel/icons/hicolor/32x32/actions
|
||||
@dirrm share/apps/kbabel/icons/hicolor/32x32
|
||||
@dirrm share/apps/kbabel/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/kbabel/icons/hicolor/22x22
|
||||
@dirrm share/apps/kbabel/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/kbabel/icons/hicolor/16x16
|
||||
@dirrm share/apps/kbabel/icons/hicolor
|
||||
@dirrm share/apps/kbabel/icons
|
||||
@dirrm share/apps/kbabel
|
||||
@dirrm share/apps/kapptemplate/kpartplugin/no-exe
|
||||
@dirrm share/apps/kapptemplate/kpartplugin
|
||||
@dirrm share/apps/kapptemplate/kpartapp/no-exe
|
||||
@dirrm share/apps/kapptemplate/kpartapp
|
||||
@dirrm share/apps/kapptemplate/kapp/no-exe
|
||||
@dirrm share/apps/kapptemplate/kapp
|
||||
@dirrm share/apps/kapptemplate/include
|
||||
@dirrm share/apps/kapptemplate/existing
|
||||
@dirrm share/apps/kapptemplate/bin
|
||||
@dirrm share/apps/kapptemplate/appframework/no-exe
|
||||
@dirrm share/apps/kapptemplate/appframework
|
||||
@dirrm share/apps/kapptemplate/admin
|
||||
@dirrm share/apps/kapptemplate
|
||||
%%CERVISIA%%@dirrm share/apps/cervisia
|
||||
@dirrm share/apps/catalogmanager/pics
|
||||
@dirrm share/apps/catalogmanager/icons/locolor/32x32/actions
|
||||
@dirrm share/apps/catalogmanager/icons/locolor/32x32
|
||||
@dirrm share/apps/catalogmanager/icons/locolor/22x22/actions
|
||||
@dirrm share/apps/catalogmanager/icons/locolor/22x22
|
||||
@dirrm share/apps/catalogmanager/icons/locolor/16x16/actions
|
||||
@dirrm share/apps/catalogmanager/icons/locolor/16x16
|
||||
@dirrm share/apps/catalogmanager/icons/locolor
|
||||
@dirrm share/apps/catalogmanager/icons/hicolor/32x32/actions
|
||||
@dirrm share/apps/catalogmanager/icons/hicolor/32x32
|
||||
@dirrm share/apps/catalogmanager/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/catalogmanager/icons/hicolor/22x22
|
||||
@dirrm share/apps/catalogmanager/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/catalogmanager/icons/hicolor/16x16
|
||||
@dirrm share/apps/catalogmanager/icons/hicolor
|
||||
@dirrm share/apps/catalogmanager/icons
|
||||
@dirrm share/apps/catalogmanager
|
||||
@dirrm share/applnk/Development
|
||||
@dirrm include/kbabel
|
||||
share/servicetypes/komparenavigationpart.desktop
|
||||
share/servicetypes/kompareviewpart.desktop
|
82
devel/kdesdk4/files/plist.base.rm
Normal file
82
devel/kdesdk4/files/plist.base.rm
Normal file
|
@ -0,0 +1,82 @@
|
|||
@dirrm share/servicetypes
|
||||
@dirrm share/services
|
||||
@dirrm share/mimelnk/application
|
||||
@dirrm share/mimelnk
|
||||
@dirrm share/icons/locolor/32x32/mimetypes
|
||||
@dirrm share/icons/locolor/32x32/apps
|
||||
@dirrm share/icons/locolor/32x32
|
||||
@dirrm share/icons/locolor/16x16/mimetypes
|
||||
@dirrm share/icons/locolor/16x16/apps
|
||||
@dirrm share/icons/locolor/16x16
|
||||
@dirrm share/icons/locolor
|
||||
@dirrm share/icons/crystalsvg/48x48/mimetypes
|
||||
@dirrm share/icons/crystalsvg/48x48/apps
|
||||
@dirrm share/icons/crystalsvg/48x48
|
||||
@dirrm share/icons/crystalsvg/32x32/mimetypes
|
||||
@dirrm share/icons/crystalsvg/32x32/apps
|
||||
@dirrm share/icons/crystalsvg/32x32
|
||||
@dirrm share/icons/crystalsvg/16x16/mimetypes
|
||||
@dirrm share/icons/crystalsvg/16x16/apps
|
||||
@dirrm share/icons/crystalsvg/16x16
|
||||
@dirrm share/icons/crystalsvg
|
||||
@dirrm share/icons
|
||||
@dirrm share/doc/HTML/en/kompare
|
||||
@dirrm share/doc/HTML/en/kbugbuster
|
||||
@dirrm share/doc/HTML/en/kbabel
|
||||
@dirrm share/doc/HTML/en/cervisia
|
||||
@dirrm share/doc/HTML/en
|
||||
@dirrm share/doc/HTML
|
||||
@dirrm share/doc
|
||||
@dirrm share/apps/komparepart
|
||||
@dirrm share/apps/kompare/icons/locolor/32x32/apps
|
||||
@dirrm share/apps/kompare/icons/locolor/32x32
|
||||
@dirrm share/apps/kompare/icons/locolor/16x16/apps
|
||||
@dirrm share/apps/kompare/icons/locolor/16x16
|
||||
@dirrm share/apps/kompare/icons/locolor
|
||||
@dirrm share/apps/kompare/icons/crystalsvg/16x16/apps
|
||||
@dirrm share/apps/kompare/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/kompare/icons/crystalsvg
|
||||
@dirrm share/apps/kompare/icons
|
||||
@dirrm share/apps/kompare
|
||||
@dirrm share/apps/kbugbuster/pics
|
||||
@dirrm share/apps/kbugbuster
|
||||
@dirrm share/apps/kbabeldict/modules
|
||||
@dirrm share/apps/kbabeldict
|
||||
@dirrm share/apps/kbabel/pics
|
||||
@dirrm share/apps/kbabel/icons/locolor/32x32/actions
|
||||
@dirrm share/apps/kbabel/icons/locolor/32x32
|
||||
@dirrm share/apps/kbabel/icons/locolor/22x22/actions
|
||||
@dirrm share/apps/kbabel/icons/locolor/22x22
|
||||
@dirrm share/apps/kbabel/icons/locolor/16x16/actions
|
||||
@dirrm share/apps/kbabel/icons/locolor/16x16
|
||||
@dirrm share/apps/kbabel/icons/locolor
|
||||
@dirrm share/apps/kbabel/icons/hicolor/32x32/actions
|
||||
@dirrm share/apps/kbabel/icons/hicolor/32x32
|
||||
@dirrm share/apps/kbabel/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/kbabel/icons/hicolor/22x22
|
||||
@dirrm share/apps/kbabel/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/kbabel/icons/hicolor/16x16
|
||||
@dirrm share/apps/kbabel/icons/hicolor
|
||||
@dirrm share/apps/kbabel/icons
|
||||
@dirrm share/apps/kbabel
|
||||
@dirrm share/apps/kapptemplate/kpartplugin/no-exe
|
||||
@dirrm share/apps/kapptemplate/kpartplugin
|
||||
@dirrm share/apps/kapptemplate/kpartapp/no-exe
|
||||
@dirrm share/apps/kapptemplate/kpartapp
|
||||
@dirrm share/apps/kapptemplate/kapp/no-exe
|
||||
@dirrm share/apps/kapptemplate/kapp
|
||||
@dirrm share/apps/kapptemplate/include
|
||||
@dirrm share/apps/kapptemplate/existing
|
||||
@dirrm share/apps/kapptemplate/bin
|
||||
@dirrm share/apps/kapptemplate/appframework/no-exe
|
||||
@dirrm share/apps/kapptemplate/appframework
|
||||
@dirrm share/apps/kapptemplate/admin
|
||||
@dirrm share/apps/kapptemplate
|
||||
@dirrm share/apps/kabc/formats
|
||||
@dirrm share/apps/kabc
|
||||
@dirrm share/apps/catalogmanager
|
||||
@dirrm share/apps
|
||||
@dirrm share/applnk/Development
|
||||
@dirrm share/applnk
|
||||
@dirrm lib/kde3
|
||||
@dirrm include/kbabel
|
9
devel/kdesdk4/files/plist.cervisia
Normal file
9
devel/kdesdk4/files/plist.cervisia
Normal file
|
@ -0,0 +1,9 @@
|
|||
bin/cervisia
|
||||
lib/libcervisia.la
|
||||
lib/libcervisia.so
|
||||
lib/libcervisia.so.1
|
||||
share/applnk/Development/cervisia.desktop
|
||||
share/apps/cervisia/cervisiashellui.rc
|
||||
share/apps/cervisiapart/cervisiaui.rc
|
||||
share/icons/crystalsvg/16x16/apps/cervisia.png
|
||||
share/icons/crystalsvg/32x32/apps/cervisia.png
|
2
devel/kdesdk4/files/plist.cervisia.rm
Normal file
2
devel/kdesdk4/files/plist.cervisia.rm
Normal file
|
@ -0,0 +1,2 @@
|
|||
@dirrm share/apps/cervisiapart
|
||||
@dirrm share/apps/cervisia
|
|
@ -15,14 +15,16 @@ DIST_SUBDIR= KDE
|
|||
MAINTAINER= kde@FreeBSD.org
|
||||
|
||||
USE_KDELIBS_VER=3
|
||||
PREFIX= ${KDE_PREFIX}
|
||||
|
||||
USE_BZIP2= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GMAKE= yes
|
||||
USE_REINPLACE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
INSTALLS_SHLIB= yes
|
||||
LDCONFIG_DIRS+= %%PREFIX%%/lib
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
|
||||
post-patch:
|
||||
@${PERL} -pi -e 's@(defined\(__sgi\))$$@\1 || defined(__FreeBSD__)@' \
|
||||
${WRKSRC}/ksirtet/lib/wizard.cpp
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (KDE/kdegames-3.0.4.tar.bz2) = 5f7ea33c54e68fd673c5c48b49e0c1e3
|
||||
MD5 (KDE/kdegames-3.1.tar.bz2) = cfc3fef5f162dc7ecd9465a11bdf9b1b
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
bin/atlantik
|
||||
bin/kasteroids
|
||||
bin/katomic
|
||||
bin/kbackgammon
|
||||
|
@ -7,9 +8,11 @@ bin/kbounce
|
|||
bin/kenolaba
|
||||
bin/kfouleggs
|
||||
bin/kjumpingcube
|
||||
bin/klickety
|
||||
bin/klines
|
||||
bin/kmahjongg
|
||||
bin/kmines
|
||||
bin/kolf
|
||||
bin/konquest
|
||||
bin/kpat
|
||||
bin/kpoker
|
||||
|
@ -27,6 +30,23 @@ bin/kwin4
|
|||
bin/kwin4proc
|
||||
bin/lskat
|
||||
bin/lskatproc
|
||||
bin/megami
|
||||
include/atlantic/atlantic_core.h
|
||||
include/atlantic/auction.h
|
||||
include/atlantic/estate.h
|
||||
include/atlantic/estategroup.h
|
||||
include/atlantic/player.h
|
||||
include/atlantic/trade.h
|
||||
include/atlantik/ui/auction_widget.h
|
||||
include/atlantik/ui/board.h
|
||||
include/atlantik/ui/display_widget.h
|
||||
include/atlantik/ui/estatedetails.h
|
||||
include/atlantik/ui/estateview.h
|
||||
include/atlantik/ui/portfolioestate.h
|
||||
include/atlantik/ui/portfolioview.h
|
||||
include/atlantik/ui/token.h
|
||||
include/atlantik/ui/trade_widget.h
|
||||
include/kcanvasrootpixmap.h
|
||||
include/kcarddialog.h
|
||||
include/kchat.h
|
||||
include/kchatbase.h
|
||||
|
@ -54,30 +74,48 @@ include/kgame/kplayer.h
|
|||
include/kgamemisc.h
|
||||
include/kgameprogress.h
|
||||
include/khighscore.h
|
||||
include/kolf/ball.h
|
||||
include/kolf/canvasitem.h
|
||||
include/kolf/config.h
|
||||
include/kolf/floater.h
|
||||
include/kolf/game.h
|
||||
include/kolf/object.h
|
||||
include/kolf/rtti.h
|
||||
include/kolf/slope.h
|
||||
include/kolf/statedb.h
|
||||
include/kolf/vector.h
|
||||
include/kscoredialog.h
|
||||
include/kstdgameaction.h
|
||||
lib/kbackgammon.la
|
||||
lib/kbackgammon.so
|
||||
lib/kde3/kio_atlantik.la
|
||||
lib/kde3/kio_atlantik.so
|
||||
lib/kde3/kolf.la
|
||||
lib/kde3/kolf.so
|
||||
lib/libatlantic.la
|
||||
lib/libatlantic.so
|
||||
lib/libatlantic.so.2
|
||||
lib/libatlantikclient.la
|
||||
lib/libatlantikclient.so
|
||||
lib/libatlantikclient.so.2
|
||||
lib/libatlantikui.la
|
||||
lib/libatlantikui.so
|
||||
lib/libatlantikui.so.2
|
||||
lib/libkdegames.la
|
||||
lib/libkdegames.so
|
||||
lib/libkdegames.so.1
|
||||
lib/libkdehighscores.la
|
||||
lib/libkdehighscores.so
|
||||
lib/libkdehighscores.so.0
|
||||
lib/libksirtetbase.la
|
||||
lib/libksirtetbase.so
|
||||
lib/libksirtetbase.so.0
|
||||
lib/libksirtetcommon.la
|
||||
lib/libksirtetcommon.so
|
||||
lib/libksirtetcommon.so.0
|
||||
lib/libkdegames.so.2
|
||||
lib/libkolf.la
|
||||
lib/libkolf.so
|
||||
lib/libkolf.so.0
|
||||
share/applnk/Games/Arcade/kasteroids.desktop
|
||||
share/applnk/Games/Arcade/kbounce.desktop
|
||||
share/applnk/Games/Arcade/kfouleggs.desktop
|
||||
share/applnk/Games/Arcade/klickety.desktop
|
||||
share/applnk/Games/Arcade/kolf.desktop
|
||||
share/applnk/Games/Arcade/ksirtet.desktop
|
||||
share/applnk/Games/Arcade/ksmiletris.desktop
|
||||
share/applnk/Games/Arcade/ksnake.desktop
|
||||
share/applnk/Games/Arcade/kspaceduel.desktop
|
||||
share/applnk/Games/Arcade/ktron.desktop
|
||||
share/applnk/Games/Board/atlantik.desktop
|
||||
share/applnk/Games/Board/kbackgammon.desktop
|
||||
share/applnk/Games/Board/kbattleship.desktop
|
||||
share/applnk/Games/Board/kblackbox.desktop
|
||||
|
@ -89,6 +127,8 @@ share/applnk/Games/Board/kwin4.desktop
|
|||
share/applnk/Games/Card/kpat.desktop
|
||||
share/applnk/Games/Card/kpoker.desktop
|
||||
share/applnk/Games/Card/lskat.desktop
|
||||
share/applnk/Games/Card/megami.desktop
|
||||
share/applnk/Games/Kidsgames/ktuberling.desktop
|
||||
share/applnk/Games/TacticStrategy/katomic.desktop
|
||||
share/applnk/Games/TacticStrategy/kjumpingcube.desktop
|
||||
share/applnk/Games/TacticStrategy/klines.desktop
|
||||
|
@ -97,6 +137,20 @@ share/applnk/Games/TacticStrategy/konquest.desktop
|
|||
share/applnk/Games/TacticStrategy/ksame.desktop
|
||||
share/applnk/Games/TacticStrategy/ksokoban.desktop
|
||||
share/applnk/Toys/ktuberling.desktop
|
||||
share/apps/atlantik/atlantikui.rc
|
||||
share/apps/atlantik/icons/crystalsvg/16x16/actions/jail_pay.png
|
||||
share/apps/atlantik/icons/crystalsvg/22x22/actions/atlantik_buy_estate.png
|
||||
share/apps/atlantik/icons/crystalsvg/22x22/actions/jail_pay.png
|
||||
share/apps/atlantik/icons/crystalsvg/32x32/actions/atlantik_buy_estate.png
|
||||
share/apps/atlantik/icons/crystalsvg/32x32/actions/auction.png
|
||||
share/apps/atlantik/icons/crystalsvg/32x32/actions/jail_pay.png
|
||||
share/apps/atlantik/icons/crystalsvg/32x32/actions/monop_board.png
|
||||
share/apps/atlantik/icons/locolor/16x16/actions/atlantik_buy_estate.png
|
||||
share/apps/atlantik/pics/arrow.png
|
||||
share/apps/atlantik/pics/qmark-blue.png
|
||||
share/apps/atlantik/pics/qmark-red.png
|
||||
share/apps/atlantik/pics/token.png
|
||||
share/apps/atlantik/pics/train.png
|
||||
share/apps/carddecks/cards-aisleriot/1.png
|
||||
share/apps/carddecks/cards-aisleriot/10.png
|
||||
share/apps/carddecks/cards-aisleriot/11.png
|
||||
|
@ -979,18 +1033,12 @@ share/apps/kbackgammon/eventsrc
|
|||
share/apps/kbackgammon/kbackgammonui.rc
|
||||
share/apps/kbackgammon/pics/kbackgammon-chat.png
|
||||
share/apps/kbackgammon/pics/kbackgammon-double.xpm
|
||||
share/apps/kbackgammon/pics/kbackgammon-fonts.xpm
|
||||
share/apps/kbackgammon/pics/kbackgammon-hint.xpm
|
||||
share/apps/kbackgammon/pics/kbackgammon-redo.xpm
|
||||
share/apps/kbackgammon/pics/kbackgammon-reload.xpm
|
||||
share/apps/kbackgammon/pics/kbackgammon-roll.xpm
|
||||
share/apps/kbackgammon/pics/kbackgammon-send.xpm
|
||||
share/apps/kbackgammon/pics/kbackgammon-undo.xpm
|
||||
share/apps/kbackgammon/sounds/kbackgammon-lost.wav
|
||||
share/apps/kbackgammon/sounds/kbackgammon-move.wav
|
||||
share/apps/kbackgammon/sounds/kbackgammon-roll.wav
|
||||
share/apps/kbackgammon/sounds/kbackgammon-won.wav
|
||||
share/apps/kbattleship/kbattleshipui.rc
|
||||
share/apps/kbattleship/pictures/border.png
|
||||
share/apps/kbattleship/pictures/death.png
|
||||
share/apps/kbattleship/pictures/hit.png
|
||||
share/apps/kbattleship/pictures/sea.png
|
||||
|
@ -1080,11 +1128,16 @@ share/apps/kenolaba/toolbar/stop.xpm
|
|||
share/apps/kenolaba/toolbar/undo.xpm
|
||||
share/apps/kenolaba/toolbar/warning.xpm
|
||||
share/apps/kenolaba/toolbar/yellowball.xpm
|
||||
share/apps/kfouleggs/kfouleggsconfig.rc
|
||||
share/apps/kfouleggs/kfouleggsui.rc
|
||||
share/apps/kjumpingcube/kjumpingcubeui.rc
|
||||
share/apps/klickety/klicketyconfig.rc
|
||||
share/apps/klickety/klicketyui.rc
|
||||
share/apps/klines/balls.jpg
|
||||
share/apps/klines/field.jpg
|
||||
share/apps/klines/fire.jpg
|
||||
share/apps/klines/klinesui.rc
|
||||
share/apps/kmahjongg/kmahjonggui.rc
|
||||
share/apps/kmahjongg/pics/cross.layout
|
||||
share/apps/kmahjongg/pics/default.bgnd
|
||||
share/apps/kmahjongg/pics/default.layout
|
||||
|
@ -1108,9 +1161,31 @@ share/apps/kmahjongg/pics/traditional.tileset
|
|||
share/apps/kmahjongg/pics/triangle.layout
|
||||
share/apps/kmahjongg/pics/wood.bgnd
|
||||
share/apps/kmahjongg/toolbar/newnum.xpm
|
||||
share/apps/kmahjongg/toolbar/pause.xpm
|
||||
share/apps/kmahjongg/toolbar/play.xpm
|
||||
share/apps/kmines/kminesconfig.rc
|
||||
share/apps/kmines/kminesui.rc
|
||||
share/apps/kolf/courses/Classic.kolf
|
||||
share/apps/kolf/courses/Easy.kolf
|
||||
share/apps/kolf/courses/Hard.kolf
|
||||
share/apps/kolf/courses/Impossible
|
||||
share/apps/kolf/courses/Medium.kolf
|
||||
share/apps/kolf/courses/Practice
|
||||
share/apps/kolf/courses/ReallyEasy
|
||||
share/apps/kolf/intro
|
||||
share/apps/kolf/kolfui.rc
|
||||
share/apps/kolf/pics/cup.png
|
||||
share/apps/kolf/pics/grass.png
|
||||
share/apps/kolf/pics/puddle.png
|
||||
share/apps/kolf/pics/sand.png
|
||||
share/apps/kolf/sounds/blackhole.wav
|
||||
share/apps/kolf/sounds/blackholeeject.wav
|
||||
share/apps/kolf/sounds/blackholeputin.wav
|
||||
share/apps/kolf/sounds/hit.wav
|
||||
share/apps/kolf/sounds/holed.wav
|
||||
share/apps/kolf/sounds/holeinone.wav
|
||||
share/apps/kolf/sounds/puddle.wav
|
||||
share/apps/kolf/sounds/wall.wav
|
||||
share/apps/kolf/tutorial.kolf
|
||||
share/apps/kolf/tutorial.kolfgame
|
||||
share/apps/konquest/konquestui.rc
|
||||
share/apps/konquest/pics/konquest-splash.png
|
||||
share/apps/konquest/pics/planet1.xpm
|
||||
|
@ -1139,8 +1214,8 @@ share/apps/kreversi/pics/background/Ocean.xpm
|
|||
share/apps/kreversi/pics/background/Pipes.xpm
|
||||
share/apps/kreversi/pics/background/Puzzle.xpm
|
||||
share/apps/kreversi/pics/background/Stones.xpm
|
||||
share/apps/kreversi/pics/chips.xpm
|
||||
share/apps/kreversi/pics/chips_mono.xpm
|
||||
share/apps/kreversi/pics/chips.png
|
||||
share/apps/kreversi/pics/chips_mono.png
|
||||
share/apps/kreversi/pics/help.xpm
|
||||
share/apps/kreversi/pics/hint.xpm
|
||||
share/apps/kreversi/pics/logo.xpm
|
||||
|
@ -1157,8 +1232,8 @@ share/apps/ksame/stones.png
|
|||
share/apps/kshisen/kshisen.xpm
|
||||
share/apps/kshisen/kshisen_bgnd.xpm
|
||||
share/apps/kshisen/kshisenui.rc
|
||||
share/apps/kshisen/mask.xpm
|
||||
share/apps/kshisen/paused.xpm
|
||||
share/apps/ksirtet/ksirtetconfig.rc
|
||||
share/apps/ksirtet/ksirtetui.rc
|
||||
share/apps/ksmiletris/data/bg1.bmp
|
||||
share/apps/ksmiletris/data/bg10.bmp
|
||||
|
@ -1255,15 +1330,15 @@ share/apps/ksnake/pics/samy.png
|
|||
share/apps/ksnake/pics/snake1.png
|
||||
share/apps/ksnake/pics/snake2.png
|
||||
share/apps/ksnake/pics/up.png
|
||||
share/apps/kspaceduel/icons/hicolor/16x16/actions/spnewgame.png
|
||||
share/apps/kspaceduel/icons/hicolor/16x16/actions/spnewround.png
|
||||
share/apps/kspaceduel/icons/hicolor/16x16/actions/sppausegame.png
|
||||
share/apps/kspaceduel/icons/hicolor/22x22/actions/spnewgame.png
|
||||
share/apps/kspaceduel/icons/hicolor/22x22/actions/spnewround.png
|
||||
share/apps/kspaceduel/icons/hicolor/22x22/actions/sppausegame.png
|
||||
share/apps/kspaceduel/icons/hicolor/32x32/actions/spnewgame.png
|
||||
share/apps/kspaceduel/icons/hicolor/32x32/actions/spnewround.png
|
||||
share/apps/kspaceduel/icons/hicolor/32x32/actions/sppausegame.png
|
||||
share/apps/kspaceduel/icons/crystalsvg/16x16/actions/spnewgame.png
|
||||
share/apps/kspaceduel/icons/crystalsvg/16x16/actions/spnewround.png
|
||||
share/apps/kspaceduel/icons/crystalsvg/16x16/actions/sppausegame.png
|
||||
share/apps/kspaceduel/icons/crystalsvg/22x22/actions/spnewgame.png
|
||||
share/apps/kspaceduel/icons/crystalsvg/22x22/actions/spnewround.png
|
||||
share/apps/kspaceduel/icons/crystalsvg/22x22/actions/sppausegame.png
|
||||
share/apps/kspaceduel/icons/crystalsvg/32x32/actions/spnewgame.png
|
||||
share/apps/kspaceduel/icons/crystalsvg/32x32/actions/spnewround.png
|
||||
share/apps/kspaceduel/icons/crystalsvg/32x32/actions/sppausegame.png
|
||||
share/apps/kspaceduel/icons/locolor/16x16/actions/spnewgame.png
|
||||
share/apps/kspaceduel/icons/locolor/16x16/actions/spnewround.png
|
||||
share/apps/kspaceduel/icons/locolor/16x16/actions/sppausegame.png
|
||||
|
@ -1670,11 +1745,16 @@ share/apps/ktuberling/museum/dali.tuberling
|
|||
share/apps/ktuberling/museum/einstein.tuberling
|
||||
share/apps/ktuberling/museum/fly.tuberling
|
||||
share/apps/ktuberling/museum/grandpa.tuberling
|
||||
share/apps/ktuberling/museum/happy.tuberling
|
||||
share/apps/ktuberling/museum/hippie.tuberling
|
||||
share/apps/ktuberling/museum/idiot.tuberling
|
||||
share/apps/ktuberling/museum/miss.tuberling
|
||||
share/apps/ktuberling/museum/mouse.tuberling
|
||||
share/apps/ktuberling/museum/picasso.tuberling
|
||||
share/apps/ktuberling/museum/sea.tuberling
|
||||
share/apps/ktuberling/museum/serious.tuberling
|
||||
share/apps/ktuberling/pics/aquarium-game.png
|
||||
share/apps/ktuberling/pics/aquarium-mask.png
|
||||
share/apps/ktuberling/pics/layout.xml
|
||||
share/apps/ktuberling/pics/penguin-game.png
|
||||
share/apps/ktuberling/pics/penguin-mask.png
|
||||
|
@ -1702,6 +1782,7 @@ share/apps/kwin4/grafix/default/arrow2.png
|
|||
share/apps/kwin4/grafix/default/arrow_mask.png
|
||||
share/apps/kwin4/grafix/default/background.png
|
||||
share/apps/kwin4/grafix/default/board.png
|
||||
share/apps/kwin4/grafix/default/crnt.png
|
||||
share/apps/kwin4/grafix/default/empty.png
|
||||
share/apps/kwin4/grafix/default/empty2.png
|
||||
share/apps/kwin4/grafix/default/empty2_mask.png
|
||||
|
@ -1709,7 +1790,6 @@ share/apps/kwin4/grafix/default/empty_mask.png
|
|||
share/apps/kwin4/grafix/default/game_over.png
|
||||
share/apps/kwin4/grafix/default/game_over_mask.png
|
||||
share/apps/kwin4/grafix/default/grafix.rc
|
||||
share/apps/kwin4/grafix/default/hint.png
|
||||
share/apps/kwin4/grafix/default/introabout.png
|
||||
share/apps/kwin4/grafix/default/introabout_mask.png
|
||||
share/apps/kwin4/grafix/default/piece0.png
|
||||
|
@ -1767,6 +1847,11 @@ share/apps/lskat/grafix/type1.png
|
|||
share/apps/lskat/grafix/type2.png
|
||||
share/apps/lskat/grafix/type3.png
|
||||
share/apps/lskat/lskatui.rc
|
||||
share/apps/megami/megamiui.rc
|
||||
share/config/magic/kolf.magic
|
||||
share/doc/HTML/en/atlantik/common
|
||||
share/doc/HTML/en/atlantik/index.cache.bz2
|
||||
share/doc/HTML/en/atlantik/index.docbook
|
||||
share/doc/HTML/en/kasteroids/common
|
||||
share/doc/HTML/en/kasteroids/fuel.png
|
||||
share/doc/HTML/en/kasteroids/index.cache.bz2
|
||||
|
@ -1802,6 +1887,9 @@ share/doc/HTML/en/kfouleggs/index.docbook
|
|||
share/doc/HTML/en/kjumpingcube/common
|
||||
share/doc/HTML/en/kjumpingcube/index.cache.bz2
|
||||
share/doc/HTML/en/kjumpingcube/index.docbook
|
||||
share/doc/HTML/en/klickety/common
|
||||
share/doc/HTML/en/klickety/index.cache.bz2
|
||||
share/doc/HTML/en/klickety/index.docbook
|
||||
share/doc/HTML/en/klines/common
|
||||
share/doc/HTML/en/klines/index.cache.bz2
|
||||
share/doc/HTML/en/klines/index.docbook
|
||||
|
@ -1810,6 +1898,9 @@ share/doc/HTML/en/kmines/index.cache.bz2
|
|||
share/doc/HTML/en/kmines/index.docbook
|
||||
share/doc/HTML/en/kmines/kmines1.png
|
||||
share/doc/HTML/en/kmines/kmines2.png
|
||||
share/doc/HTML/en/kolf/common
|
||||
share/doc/HTML/en/kolf/index.cache.bz2
|
||||
share/doc/HTML/en/kolf/index.docbook
|
||||
share/doc/HTML/en/konquest/common
|
||||
share/doc/HTML/en/konquest/index.cache.bz2
|
||||
share/doc/HTML/en/konquest/index.docbook
|
||||
|
@ -1837,6 +1928,8 @@ share/doc/HTML/en/ksame/index.docbook
|
|||
share/doc/HTML/en/kshisen/common
|
||||
share/doc/HTML/en/kshisen/index.cache.bz2
|
||||
share/doc/HTML/en/kshisen/index.docbook
|
||||
share/doc/HTML/en/kshisen/score-formula.png
|
||||
share/doc/HTML/en/kshisen/score-formula.tex
|
||||
share/doc/HTML/en/ksirtet/common
|
||||
share/doc/HTML/en/ksirtet/index.cache.bz2
|
||||
share/doc/HTML/en/ksirtet/index.docbook
|
||||
|
@ -1865,11 +1958,13 @@ share/doc/HTML/en/ktuberling/common
|
|||
share/doc/HTML/en/ktuberling/gameboard.png
|
||||
share/doc/HTML/en/ktuberling/index.cache.bz2
|
||||
share/doc/HTML/en/ktuberling/index.docbook
|
||||
share/doc/HTML/en/ktuberling/ktuberling.png
|
||||
share/doc/HTML/en/ktuberling/menu.edit.png
|
||||
share/doc/HTML/en/ktuberling/menu.file.png
|
||||
share/doc/HTML/en/ktuberling/menu.game.png
|
||||
share/doc/HTML/en/ktuberling/menu.help.png
|
||||
share/doc/HTML/en/ktuberling/menu.option.png
|
||||
share/doc/HTML/en/ktuberling/menu.playground.png
|
||||
share/doc/HTML/en/ktuberling/menu.raw.png
|
||||
share/doc/HTML/en/ktuberling/menu.speech.png
|
||||
share/doc/HTML/en/ktuberling/technical-reference.docbook
|
||||
share/doc/HTML/en/ktuberling/toolbar.png
|
||||
share/doc/HTML/en/kwin4/common
|
||||
|
@ -1878,94 +1973,127 @@ share/doc/HTML/en/kwin4/index.docbook
|
|||
share/doc/HTML/en/lskat/common
|
||||
share/doc/HTML/en/lskat/index.cache.bz2
|
||||
share/doc/HTML/en/lskat/index.docbook
|
||||
share/icons/hicolor/16x16/actions/highscore.png
|
||||
share/icons/hicolor/16x16/actions/roll.png
|
||||
share/icons/hicolor/16x16/apps/kasteroids.png
|
||||
share/icons/hicolor/16x16/apps/kbackgammon.png
|
||||
share/icons/hicolor/16x16/apps/kbackgammon_engine.png
|
||||
share/icons/hicolor/16x16/apps/kbattleship.png
|
||||
share/icons/hicolor/16x16/apps/kblackbox.png
|
||||
share/icons/hicolor/16x16/apps/kbounce.png
|
||||
share/icons/hicolor/16x16/apps/kenolaba.png
|
||||
share/icons/hicolor/16x16/apps/kjumpingcube.png
|
||||
share/icons/hicolor/16x16/apps/klines.png
|
||||
share/icons/hicolor/16x16/apps/kmahjongg.png
|
||||
share/icons/hicolor/16x16/apps/kmines.png
|
||||
share/icons/hicolor/16x16/apps/konquest.png
|
||||
share/icons/hicolor/16x16/apps/kpat.png
|
||||
share/icons/hicolor/16x16/apps/kpoker.png
|
||||
share/icons/hicolor/16x16/apps/kreversi.png
|
||||
share/icons/hicolor/16x16/apps/ksame.png
|
||||
share/icons/hicolor/16x16/apps/kshisen.png
|
||||
share/icons/hicolor/16x16/apps/ksirtet.png
|
||||
share/icons/hicolor/16x16/apps/ksmiletris.png
|
||||
share/icons/hicolor/16x16/apps/ksnake.png
|
||||
share/icons/hicolor/16x16/apps/ksokoban.png
|
||||
share/icons/hicolor/16x16/apps/kspaceduel.png
|
||||
share/icons/hicolor/16x16/apps/ktron.png
|
||||
share/icons/hicolor/16x16/apps/kwin4.png
|
||||
share/icons/hicolor/22x22/actions/roll.png
|
||||
share/icons/hicolor/32x32/actions/highscore.png
|
||||
share/icons/hicolor/32x32/actions/roll.png
|
||||
share/icons/hicolor/32x32/apps/kasteroids.png
|
||||
share/icons/hicolor/32x32/apps/katomic.png
|
||||
share/icons/hicolor/32x32/apps/kbackgammon.png
|
||||
share/icons/hicolor/32x32/apps/kbackgammon_engine.png
|
||||
share/icons/hicolor/32x32/apps/kbattleship.png
|
||||
share/icons/hicolor/32x32/apps/kblackbox.png
|
||||
share/icons/hicolor/32x32/apps/kbounce.png
|
||||
share/icons/hicolor/32x32/apps/kenolaba.png
|
||||
share/icons/hicolor/32x32/apps/kjumpingcube.png
|
||||
share/icons/hicolor/32x32/apps/klines.png
|
||||
share/icons/hicolor/32x32/apps/kmahjongg.png
|
||||
share/icons/hicolor/32x32/apps/kmines.png
|
||||
share/icons/hicolor/32x32/apps/konquest.png
|
||||
share/icons/hicolor/32x32/apps/kpat.png
|
||||
share/icons/hicolor/32x32/apps/kpoker.png
|
||||
share/icons/hicolor/32x32/apps/kreversi.png
|
||||
share/icons/hicolor/32x32/apps/ksame.png
|
||||
share/icons/hicolor/32x32/apps/kshisen.png
|
||||
share/icons/hicolor/32x32/apps/ksirtet.png
|
||||
share/icons/hicolor/32x32/apps/ksmiletris.png
|
||||
share/icons/hicolor/32x32/apps/ksnake.png
|
||||
share/icons/hicolor/32x32/apps/ksokoban.png
|
||||
share/icons/hicolor/32x32/apps/kspaceduel.png
|
||||
share/icons/hicolor/32x32/apps/ktron.png
|
||||
share/icons/hicolor/32x32/apps/ktuberling.png
|
||||
share/icons/hicolor/32x32/apps/kwin4.png
|
||||
share/icons/hicolor/32x32/apps/lskat.png
|
||||
share/icons/hicolor/48x48/apps/kasteroids.png
|
||||
share/icons/hicolor/48x48/apps/kbackgammon.png
|
||||
share/icons/hicolor/48x48/apps/kbackgammon_engine.png
|
||||
share/icons/hicolor/48x48/apps/kblackbox.png
|
||||
share/icons/hicolor/48x48/apps/kenolaba.png
|
||||
share/icons/hicolor/48x48/apps/kmahjongg.png
|
||||
share/icons/hicolor/48x48/apps/kmines.png
|
||||
share/icons/hicolor/48x48/apps/konquest.png
|
||||
share/icons/hicolor/48x48/apps/kpat.png
|
||||
share/icons/hicolor/48x48/apps/kpoker.png
|
||||
share/icons/hicolor/48x48/apps/kreversi.png
|
||||
share/icons/hicolor/48x48/apps/ksame.png
|
||||
share/icons/hicolor/48x48/apps/kshisen.png
|
||||
share/icons/hicolor/48x48/apps/ksirtet.png
|
||||
share/icons/hicolor/48x48/apps/ksmiletris.png
|
||||
share/icons/hicolor/48x48/apps/ksnake.png
|
||||
share/icons/hicolor/48x48/apps/ksokoban.png
|
||||
share/icons/hicolor/48x48/apps/kwin4.png
|
||||
share/icons/hicolor/48x48/apps/lskat.png
|
||||
share/doc/HTML/en/megami/common
|
||||
share/doc/HTML/en/megami/index.cache.bz2
|
||||
share/doc/HTML/en/megami/index.docbook
|
||||
share/icons/crystalsvg/16x16/actions/endturn.png
|
||||
share/icons/crystalsvg/16x16/actions/highscore.png
|
||||
share/icons/crystalsvg/16x16/actions/roll.png
|
||||
share/icons/crystalsvg/16x16/apps/atlantik.png
|
||||
share/icons/crystalsvg/16x16/apps/kasteroids.png
|
||||
share/icons/crystalsvg/16x16/apps/kbackgammon.png
|
||||
share/icons/crystalsvg/16x16/apps/kbackgammon_engine.png
|
||||
share/icons/crystalsvg/16x16/apps/kbattleship.png
|
||||
share/icons/crystalsvg/16x16/apps/kblackbox.png
|
||||
share/icons/crystalsvg/16x16/apps/kbounce.png
|
||||
share/icons/crystalsvg/16x16/apps/kenolaba.png
|
||||
share/icons/crystalsvg/16x16/apps/kjumpingcube.png
|
||||
share/icons/crystalsvg/16x16/apps/klines.png
|
||||
share/icons/crystalsvg/16x16/apps/kmahjongg.png
|
||||
share/icons/crystalsvg/16x16/apps/kmines.png
|
||||
share/icons/crystalsvg/16x16/apps/kolf.png
|
||||
share/icons/crystalsvg/16x16/apps/konquest.png
|
||||
share/icons/crystalsvg/16x16/apps/kpat.png
|
||||
share/icons/crystalsvg/16x16/apps/kpoker.png
|
||||
share/icons/crystalsvg/16x16/apps/kreversi.png
|
||||
share/icons/crystalsvg/16x16/apps/ksame.png
|
||||
share/icons/crystalsvg/16x16/apps/kshisen.png
|
||||
share/icons/crystalsvg/16x16/apps/ksirtet.png
|
||||
share/icons/crystalsvg/16x16/apps/ksmiletris.png
|
||||
share/icons/crystalsvg/16x16/apps/ksnake.png
|
||||
share/icons/crystalsvg/16x16/apps/ksokoban.png
|
||||
share/icons/crystalsvg/16x16/apps/kspaceduel.png
|
||||
share/icons/crystalsvg/16x16/apps/ktron.png
|
||||
share/icons/crystalsvg/16x16/apps/kwin4.png
|
||||
share/icons/crystalsvg/22x22/actions/roll.png
|
||||
share/icons/crystalsvg/32x32/actions/endturn.png
|
||||
share/icons/crystalsvg/32x32/actions/highscore.png
|
||||
share/icons/crystalsvg/32x32/actions/roll.png
|
||||
share/icons/crystalsvg/32x32/apps/atlantik.png
|
||||
share/icons/crystalsvg/32x32/apps/kasteroids.png
|
||||
share/icons/crystalsvg/32x32/apps/katomic.png
|
||||
share/icons/crystalsvg/32x32/apps/kbackgammon.png
|
||||
share/icons/crystalsvg/32x32/apps/kbackgammon_engine.png
|
||||
share/icons/crystalsvg/32x32/apps/kbattleship.png
|
||||
share/icons/crystalsvg/32x32/apps/kblackbox.png
|
||||
share/icons/crystalsvg/32x32/apps/kbounce.png
|
||||
share/icons/crystalsvg/32x32/apps/kenolaba.png
|
||||
share/icons/crystalsvg/32x32/apps/kjumpingcube.png
|
||||
share/icons/crystalsvg/32x32/apps/klines.png
|
||||
share/icons/crystalsvg/32x32/apps/kmahjongg.png
|
||||
share/icons/crystalsvg/32x32/apps/kmines.png
|
||||
share/icons/crystalsvg/32x32/apps/kolf.png
|
||||
share/icons/crystalsvg/32x32/apps/konquest.png
|
||||
share/icons/crystalsvg/32x32/apps/kpat.png
|
||||
share/icons/crystalsvg/32x32/apps/kpoker.png
|
||||
share/icons/crystalsvg/32x32/apps/kreversi.png
|
||||
share/icons/crystalsvg/32x32/apps/ksame.png
|
||||
share/icons/crystalsvg/32x32/apps/kshisen.png
|
||||
share/icons/crystalsvg/32x32/apps/ksirtet.png
|
||||
share/icons/crystalsvg/32x32/apps/ksmiletris.png
|
||||
share/icons/crystalsvg/32x32/apps/ksnake.png
|
||||
share/icons/crystalsvg/32x32/apps/ksokoban.png
|
||||
share/icons/crystalsvg/32x32/apps/kspaceduel.png
|
||||
share/icons/crystalsvg/32x32/apps/ktron.png
|
||||
share/icons/crystalsvg/32x32/apps/ktuberling.png
|
||||
share/icons/crystalsvg/32x32/apps/kwin4.png
|
||||
share/icons/crystalsvg/32x32/apps/lskat.png
|
||||
share/icons/crystalsvg/32x32/apps/megami.png
|
||||
share/icons/crystalsvg/48x48/apps/atlantik.png
|
||||
share/icons/crystalsvg/48x48/apps/kasteroids.png
|
||||
share/icons/crystalsvg/48x48/apps/kbackgammon.png
|
||||
share/icons/crystalsvg/48x48/apps/kbackgammon_engine.png
|
||||
share/icons/crystalsvg/48x48/apps/kblackbox.png
|
||||
share/icons/crystalsvg/48x48/apps/kenolaba.png
|
||||
share/icons/crystalsvg/48x48/apps/kmahjongg.png
|
||||
share/icons/crystalsvg/48x48/apps/kmines.png
|
||||
share/icons/crystalsvg/48x48/apps/kolf.png
|
||||
share/icons/crystalsvg/48x48/apps/konquest.png
|
||||
share/icons/crystalsvg/48x48/apps/kpat.png
|
||||
share/icons/crystalsvg/48x48/apps/kpoker.png
|
||||
share/icons/crystalsvg/48x48/apps/kreversi.png
|
||||
share/icons/crystalsvg/48x48/apps/ksame.png
|
||||
share/icons/crystalsvg/48x48/apps/kshisen.png
|
||||
share/icons/crystalsvg/48x48/apps/ksirtet.png
|
||||
share/icons/crystalsvg/48x48/apps/ksmiletris.png
|
||||
share/icons/crystalsvg/48x48/apps/ksnake.png
|
||||
share/icons/crystalsvg/48x48/apps/ksokoban.png
|
||||
share/icons/crystalsvg/48x48/apps/kwin4.png
|
||||
share/icons/crystalsvg/48x48/apps/lskat.png
|
||||
share/icons/hicolor/32x32/apps/megami.png
|
||||
share/icons/locolor/16x16/apps/kbounce.png
|
||||
share/icons/locolor/16x16/apps/kspaceduel.png
|
||||
share/icons/locolor/16x16/apps/lskat.png
|
||||
share/icons/locolor/32x32/apps/kbounce.png
|
||||
share/icons/locolor/32x32/apps/kspaceduel.png
|
||||
share/icons/locolor/32x32/apps/lskat.png
|
||||
share/mimelnk/application/x-kolf.desktop
|
||||
share/mimelnk/application/x-kourse.desktop
|
||||
share/services/atlantik.protocol
|
||||
@dirrm share/services
|
||||
@dirrm share/mimelnk/application
|
||||
@dirrm share/mimelnk
|
||||
@dirrm share/icons/locolor/32x32/apps
|
||||
@dirrm share/icons/locolor/32x32
|
||||
@dirrm share/icons/locolor/16x16/apps
|
||||
@dirrm share/icons/locolor/16x16
|
||||
@dirrm share/icons/locolor
|
||||
@dirrm share/icons/hicolor/48x48/apps
|
||||
@dirrm share/icons/hicolor/32x32/apps
|
||||
@dirrm share/icons/hicolor/32x32
|
||||
@dirrm share/icons/hicolor
|
||||
@dirrm share/icons/crystalsvg/48x48/apps
|
||||
@dirrm share/icons/crystalsvg/48x48
|
||||
@dirrm share/icons/crystalsvg/32x32/apps
|
||||
@dirrm share/icons/crystalsvg/32x32/actions
|
||||
@dirrm share/icons/crystalsvg/32x32
|
||||
@dirrm share/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/icons/crystalsvg/22x22
|
||||
@dirrm share/icons/crystalsvg/16x16/apps
|
||||
@dirrm share/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/icons/crystalsvg/16x16
|
||||
@dirrm share/icons/crystalsvg
|
||||
@dirrm share/icons
|
||||
@dirrm share/doc/HTML/en/megami
|
||||
@dirrm share/doc/HTML/en/lskat
|
||||
@dirrm share/doc/HTML/en/kwin4
|
||||
@dirrm share/doc/HTML/en/ktuberling
|
||||
|
@ -1980,8 +2108,10 @@ share/icons/locolor/32x32/apps/lskat.png
|
|||
@dirrm share/doc/HTML/en/kpoker
|
||||
@dirrm share/doc/HTML/en/kpat
|
||||
@dirrm share/doc/HTML/en/konquest
|
||||
@dirrm share/doc/HTML/en/kolf
|
||||
@dirrm share/doc/HTML/en/kmines
|
||||
@dirrm share/doc/HTML/en/klines
|
||||
@dirrm share/doc/HTML/en/klickety
|
||||
@dirrm share/doc/HTML/en/kjumpingcube
|
||||
@dirrm share/doc/HTML/en/kfouleggs
|
||||
@dirrm share/doc/HTML/en/kenolaba
|
||||
|
@ -1991,6 +2121,13 @@ share/icons/locolor/32x32/apps/lskat.png
|
|||
@dirrm share/doc/HTML/en/kbackgammon
|
||||
@dirrm share/doc/HTML/en/katomic
|
||||
@dirrm share/doc/HTML/en/kasteroids
|
||||
@dirrm share/doc/HTML/en/atlantik
|
||||
@dirrm share/doc/HTML/en
|
||||
@dirrm share/doc/HTML
|
||||
@dirrm share/doc
|
||||
@dirrm share/config/magic
|
||||
@dirrm share/config
|
||||
@dirrm share/apps/megami
|
||||
@dirrm share/apps/lskat/grafix
|
||||
@dirrm share/apps/lskat
|
||||
@dirrm share/apps/kwin4/grafix/default
|
||||
|
@ -2012,13 +2149,13 @@ share/icons/locolor/32x32/apps/lskat.png
|
|||
@dirrm share/apps/kspaceduel/icons/locolor/16x16/actions
|
||||
@dirrm share/apps/kspaceduel/icons/locolor/16x16
|
||||
@dirrm share/apps/kspaceduel/icons/locolor
|
||||
@dirrm share/apps/kspaceduel/icons/hicolor/32x32/actions
|
||||
@dirrm share/apps/kspaceduel/icons/hicolor/32x32
|
||||
@dirrm share/apps/kspaceduel/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/kspaceduel/icons/hicolor/22x22
|
||||
@dirrm share/apps/kspaceduel/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/kspaceduel/icons/hicolor/16x16
|
||||
@dirrm share/apps/kspaceduel/icons/hicolor
|
||||
@dirrm share/apps/kspaceduel/icons/crystalsvg/32x32/actions
|
||||
@dirrm share/apps/kspaceduel/icons/crystalsvg/32x32
|
||||
@dirrm share/apps/kspaceduel/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/apps/kspaceduel/icons/crystalsvg/22x22
|
||||
@dirrm share/apps/kspaceduel/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/kspaceduel/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/kspaceduel/icons/crystalsvg
|
||||
@dirrm share/apps/kspaceduel/icons
|
||||
@dirrm share/apps/kspaceduel
|
||||
@dirrm share/apps/ksnake/pics
|
||||
|
@ -2040,11 +2177,16 @@ share/icons/locolor/32x32/apps/lskat.png
|
|||
@dirrm share/apps/kpat
|
||||
@dirrm share/apps/konquest/pics
|
||||
@dirrm share/apps/konquest
|
||||
@dirrm share/apps/kolf/sounds
|
||||
@dirrm share/apps/kolf/pics
|
||||
@dirrm share/apps/kolf/courses
|
||||
@dirrm share/apps/kolf
|
||||
@dirrm share/apps/kmines
|
||||
@dirrm share/apps/kmahjongg/toolbar
|
||||
@dirrm share/apps/kmahjongg/pics
|
||||
@dirrm share/apps/kmahjongg
|
||||
@dirrm share/apps/klines
|
||||
@dirrm share/apps/klickety
|
||||
@dirrm share/apps/kjumpingcube
|
||||
@dirrm share/apps/kfouleggs
|
||||
@dirrm share/apps/kenolaba/toolbar
|
||||
|
@ -2089,11 +2231,31 @@ share/icons/locolor/32x32/apps/lskat.png
|
|||
@dirrm share/apps/carddecks/cards-default
|
||||
@dirrm share/apps/carddecks/cards-aisleriot
|
||||
@dirrm share/apps/carddecks
|
||||
@dirrm share/apps/atlantik/pics
|
||||
@dirrm share/apps/atlantik/icons/locolor/16x16/actions
|
||||
@dirrm share/apps/atlantik/icons/locolor/16x16
|
||||
@dirrm share/apps/atlantik/icons/locolor
|
||||
@dirrm share/apps/atlantik/icons/crystalsvg/32x32/actions
|
||||
@dirrm share/apps/atlantik/icons/crystalsvg/32x32
|
||||
@dirrm share/apps/atlantik/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/apps/atlantik/icons/crystalsvg/22x22
|
||||
@dirrm share/apps/atlantik/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/atlantik/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/atlantik/icons/crystalsvg
|
||||
@dirrm share/apps/atlantik/icons
|
||||
@dirrm share/apps/atlantik
|
||||
@dirrm share/apps
|
||||
@dirrm share/applnk/Toys
|
||||
@dirrm share/applnk/Games/TacticStrategy
|
||||
@dirrm share/applnk/Games/Kidsgames
|
||||
@dirrm share/applnk/Games/Card
|
||||
@dirrm share/applnk/Games/Board
|
||||
@dirrm share/applnk/Games/Arcade
|
||||
@dirrm share/applnk/Games
|
||||
@dirrm share/applnk
|
||||
@dirrm lib/kde3
|
||||
@dirrm include/kolf
|
||||
@dirrm include/kgame
|
||||
@dirrm include/atlantik/ui
|
||||
@dirrm include/atlantik
|
||||
@dirrm include/atlantic
|
||||
|
|
|
@ -15,14 +15,16 @@ DIST_SUBDIR= KDE
|
|||
MAINTAINER= kde@FreeBSD.org
|
||||
|
||||
USE_KDELIBS_VER=3
|
||||
PREFIX= ${KDE_PREFIX}
|
||||
|
||||
USE_BZIP2= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GMAKE= yes
|
||||
USE_REINPLACE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
INSTALLS_SHLIB= yes
|
||||
LDCONFIG_DIRS+= %%PREFIX%%/lib
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
|
||||
post-patch:
|
||||
@${PERL} -pi -e 's@(defined\(__sgi\))$$@\1 || defined(__FreeBSD__)@' \
|
||||
${WRKSRC}/ksirtet/lib/wizard.cpp
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (KDE/kdegames-3.0.4.tar.bz2) = 5f7ea33c54e68fd673c5c48b49e0c1e3
|
||||
MD5 (KDE/kdegames-3.1.tar.bz2) = cfc3fef5f162dc7ecd9465a11bdf9b1b
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
bin/atlantik
|
||||
bin/kasteroids
|
||||
bin/katomic
|
||||
bin/kbackgammon
|
||||
|
@ -7,9 +8,11 @@ bin/kbounce
|
|||
bin/kenolaba
|
||||
bin/kfouleggs
|
||||
bin/kjumpingcube
|
||||
bin/klickety
|
||||
bin/klines
|
||||
bin/kmahjongg
|
||||
bin/kmines
|
||||
bin/kolf
|
||||
bin/konquest
|
||||
bin/kpat
|
||||
bin/kpoker
|
||||
|
@ -27,6 +30,23 @@ bin/kwin4
|
|||
bin/kwin4proc
|
||||
bin/lskat
|
||||
bin/lskatproc
|
||||
bin/megami
|
||||
include/atlantic/atlantic_core.h
|
||||
include/atlantic/auction.h
|
||||
include/atlantic/estate.h
|
||||
include/atlantic/estategroup.h
|
||||
include/atlantic/player.h
|
||||
include/atlantic/trade.h
|
||||
include/atlantik/ui/auction_widget.h
|
||||
include/atlantik/ui/board.h
|
||||
include/atlantik/ui/display_widget.h
|
||||
include/atlantik/ui/estatedetails.h
|
||||
include/atlantik/ui/estateview.h
|
||||
include/atlantik/ui/portfolioestate.h
|
||||
include/atlantik/ui/portfolioview.h
|
||||
include/atlantik/ui/token.h
|
||||
include/atlantik/ui/trade_widget.h
|
||||
include/kcanvasrootpixmap.h
|
||||
include/kcarddialog.h
|
||||
include/kchat.h
|
||||
include/kchatbase.h
|
||||
|
@ -54,30 +74,48 @@ include/kgame/kplayer.h
|
|||
include/kgamemisc.h
|
||||
include/kgameprogress.h
|
||||
include/khighscore.h
|
||||
include/kolf/ball.h
|
||||
include/kolf/canvasitem.h
|
||||
include/kolf/config.h
|
||||
include/kolf/floater.h
|
||||
include/kolf/game.h
|
||||
include/kolf/object.h
|
||||
include/kolf/rtti.h
|
||||
include/kolf/slope.h
|
||||
include/kolf/statedb.h
|
||||
include/kolf/vector.h
|
||||
include/kscoredialog.h
|
||||
include/kstdgameaction.h
|
||||
lib/kbackgammon.la
|
||||
lib/kbackgammon.so
|
||||
lib/kde3/kio_atlantik.la
|
||||
lib/kde3/kio_atlantik.so
|
||||
lib/kde3/kolf.la
|
||||
lib/kde3/kolf.so
|
||||
lib/libatlantic.la
|
||||
lib/libatlantic.so
|
||||
lib/libatlantic.so.2
|
||||
lib/libatlantikclient.la
|
||||
lib/libatlantikclient.so
|
||||
lib/libatlantikclient.so.2
|
||||
lib/libatlantikui.la
|
||||
lib/libatlantikui.so
|
||||
lib/libatlantikui.so.2
|
||||
lib/libkdegames.la
|
||||
lib/libkdegames.so
|
||||
lib/libkdegames.so.1
|
||||
lib/libkdehighscores.la
|
||||
lib/libkdehighscores.so
|
||||
lib/libkdehighscores.so.0
|
||||
lib/libksirtetbase.la
|
||||
lib/libksirtetbase.so
|
||||
lib/libksirtetbase.so.0
|
||||
lib/libksirtetcommon.la
|
||||
lib/libksirtetcommon.so
|
||||
lib/libksirtetcommon.so.0
|
||||
lib/libkdegames.so.2
|
||||
lib/libkolf.la
|
||||
lib/libkolf.so
|
||||
lib/libkolf.so.0
|
||||
share/applnk/Games/Arcade/kasteroids.desktop
|
||||
share/applnk/Games/Arcade/kbounce.desktop
|
||||
share/applnk/Games/Arcade/kfouleggs.desktop
|
||||
share/applnk/Games/Arcade/klickety.desktop
|
||||
share/applnk/Games/Arcade/kolf.desktop
|
||||
share/applnk/Games/Arcade/ksirtet.desktop
|
||||
share/applnk/Games/Arcade/ksmiletris.desktop
|
||||
share/applnk/Games/Arcade/ksnake.desktop
|
||||
share/applnk/Games/Arcade/kspaceduel.desktop
|
||||
share/applnk/Games/Arcade/ktron.desktop
|
||||
share/applnk/Games/Board/atlantik.desktop
|
||||
share/applnk/Games/Board/kbackgammon.desktop
|
||||
share/applnk/Games/Board/kbattleship.desktop
|
||||
share/applnk/Games/Board/kblackbox.desktop
|
||||
|
@ -89,6 +127,8 @@ share/applnk/Games/Board/kwin4.desktop
|
|||
share/applnk/Games/Card/kpat.desktop
|
||||
share/applnk/Games/Card/kpoker.desktop
|
||||
share/applnk/Games/Card/lskat.desktop
|
||||
share/applnk/Games/Card/megami.desktop
|
||||
share/applnk/Games/Kidsgames/ktuberling.desktop
|
||||
share/applnk/Games/TacticStrategy/katomic.desktop
|
||||
share/applnk/Games/TacticStrategy/kjumpingcube.desktop
|
||||
share/applnk/Games/TacticStrategy/klines.desktop
|
||||
|
@ -97,6 +137,20 @@ share/applnk/Games/TacticStrategy/konquest.desktop
|
|||
share/applnk/Games/TacticStrategy/ksame.desktop
|
||||
share/applnk/Games/TacticStrategy/ksokoban.desktop
|
||||
share/applnk/Toys/ktuberling.desktop
|
||||
share/apps/atlantik/atlantikui.rc
|
||||
share/apps/atlantik/icons/crystalsvg/16x16/actions/jail_pay.png
|
||||
share/apps/atlantik/icons/crystalsvg/22x22/actions/atlantik_buy_estate.png
|
||||
share/apps/atlantik/icons/crystalsvg/22x22/actions/jail_pay.png
|
||||
share/apps/atlantik/icons/crystalsvg/32x32/actions/atlantik_buy_estate.png
|
||||
share/apps/atlantik/icons/crystalsvg/32x32/actions/auction.png
|
||||
share/apps/atlantik/icons/crystalsvg/32x32/actions/jail_pay.png
|
||||
share/apps/atlantik/icons/crystalsvg/32x32/actions/monop_board.png
|
||||
share/apps/atlantik/icons/locolor/16x16/actions/atlantik_buy_estate.png
|
||||
share/apps/atlantik/pics/arrow.png
|
||||
share/apps/atlantik/pics/qmark-blue.png
|
||||
share/apps/atlantik/pics/qmark-red.png
|
||||
share/apps/atlantik/pics/token.png
|
||||
share/apps/atlantik/pics/train.png
|
||||
share/apps/carddecks/cards-aisleriot/1.png
|
||||
share/apps/carddecks/cards-aisleriot/10.png
|
||||
share/apps/carddecks/cards-aisleriot/11.png
|
||||
|
@ -979,18 +1033,12 @@ share/apps/kbackgammon/eventsrc
|
|||
share/apps/kbackgammon/kbackgammonui.rc
|
||||
share/apps/kbackgammon/pics/kbackgammon-chat.png
|
||||
share/apps/kbackgammon/pics/kbackgammon-double.xpm
|
||||
share/apps/kbackgammon/pics/kbackgammon-fonts.xpm
|
||||
share/apps/kbackgammon/pics/kbackgammon-hint.xpm
|
||||
share/apps/kbackgammon/pics/kbackgammon-redo.xpm
|
||||
share/apps/kbackgammon/pics/kbackgammon-reload.xpm
|
||||
share/apps/kbackgammon/pics/kbackgammon-roll.xpm
|
||||
share/apps/kbackgammon/pics/kbackgammon-send.xpm
|
||||
share/apps/kbackgammon/pics/kbackgammon-undo.xpm
|
||||
share/apps/kbackgammon/sounds/kbackgammon-lost.wav
|
||||
share/apps/kbackgammon/sounds/kbackgammon-move.wav
|
||||
share/apps/kbackgammon/sounds/kbackgammon-roll.wav
|
||||
share/apps/kbackgammon/sounds/kbackgammon-won.wav
|
||||
share/apps/kbattleship/kbattleshipui.rc
|
||||
share/apps/kbattleship/pictures/border.png
|
||||
share/apps/kbattleship/pictures/death.png
|
||||
share/apps/kbattleship/pictures/hit.png
|
||||
share/apps/kbattleship/pictures/sea.png
|
||||
|
@ -1080,11 +1128,16 @@ share/apps/kenolaba/toolbar/stop.xpm
|
|||
share/apps/kenolaba/toolbar/undo.xpm
|
||||
share/apps/kenolaba/toolbar/warning.xpm
|
||||
share/apps/kenolaba/toolbar/yellowball.xpm
|
||||
share/apps/kfouleggs/kfouleggsconfig.rc
|
||||
share/apps/kfouleggs/kfouleggsui.rc
|
||||
share/apps/kjumpingcube/kjumpingcubeui.rc
|
||||
share/apps/klickety/klicketyconfig.rc
|
||||
share/apps/klickety/klicketyui.rc
|
||||
share/apps/klines/balls.jpg
|
||||
share/apps/klines/field.jpg
|
||||
share/apps/klines/fire.jpg
|
||||
share/apps/klines/klinesui.rc
|
||||
share/apps/kmahjongg/kmahjonggui.rc
|
||||
share/apps/kmahjongg/pics/cross.layout
|
||||
share/apps/kmahjongg/pics/default.bgnd
|
||||
share/apps/kmahjongg/pics/default.layout
|
||||
|
@ -1108,9 +1161,31 @@ share/apps/kmahjongg/pics/traditional.tileset
|
|||
share/apps/kmahjongg/pics/triangle.layout
|
||||
share/apps/kmahjongg/pics/wood.bgnd
|
||||
share/apps/kmahjongg/toolbar/newnum.xpm
|
||||
share/apps/kmahjongg/toolbar/pause.xpm
|
||||
share/apps/kmahjongg/toolbar/play.xpm
|
||||
share/apps/kmines/kminesconfig.rc
|
||||
share/apps/kmines/kminesui.rc
|
||||
share/apps/kolf/courses/Classic.kolf
|
||||
share/apps/kolf/courses/Easy.kolf
|
||||
share/apps/kolf/courses/Hard.kolf
|
||||
share/apps/kolf/courses/Impossible
|
||||
share/apps/kolf/courses/Medium.kolf
|
||||
share/apps/kolf/courses/Practice
|
||||
share/apps/kolf/courses/ReallyEasy
|
||||
share/apps/kolf/intro
|
||||
share/apps/kolf/kolfui.rc
|
||||
share/apps/kolf/pics/cup.png
|
||||
share/apps/kolf/pics/grass.png
|
||||
share/apps/kolf/pics/puddle.png
|
||||
share/apps/kolf/pics/sand.png
|
||||
share/apps/kolf/sounds/blackhole.wav
|
||||
share/apps/kolf/sounds/blackholeeject.wav
|
||||
share/apps/kolf/sounds/blackholeputin.wav
|
||||
share/apps/kolf/sounds/hit.wav
|
||||
share/apps/kolf/sounds/holed.wav
|
||||
share/apps/kolf/sounds/holeinone.wav
|
||||
share/apps/kolf/sounds/puddle.wav
|
||||
share/apps/kolf/sounds/wall.wav
|
||||
share/apps/kolf/tutorial.kolf
|
||||
share/apps/kolf/tutorial.kolfgame
|
||||
share/apps/konquest/konquestui.rc
|
||||
share/apps/konquest/pics/konquest-splash.png
|
||||
share/apps/konquest/pics/planet1.xpm
|
||||
|
@ -1139,8 +1214,8 @@ share/apps/kreversi/pics/background/Ocean.xpm
|
|||
share/apps/kreversi/pics/background/Pipes.xpm
|
||||
share/apps/kreversi/pics/background/Puzzle.xpm
|
||||
share/apps/kreversi/pics/background/Stones.xpm
|
||||
share/apps/kreversi/pics/chips.xpm
|
||||
share/apps/kreversi/pics/chips_mono.xpm
|
||||
share/apps/kreversi/pics/chips.png
|
||||
share/apps/kreversi/pics/chips_mono.png
|
||||
share/apps/kreversi/pics/help.xpm
|
||||
share/apps/kreversi/pics/hint.xpm
|
||||
share/apps/kreversi/pics/logo.xpm
|
||||
|
@ -1157,8 +1232,8 @@ share/apps/ksame/stones.png
|
|||
share/apps/kshisen/kshisen.xpm
|
||||
share/apps/kshisen/kshisen_bgnd.xpm
|
||||
share/apps/kshisen/kshisenui.rc
|
||||
share/apps/kshisen/mask.xpm
|
||||
share/apps/kshisen/paused.xpm
|
||||
share/apps/ksirtet/ksirtetconfig.rc
|
||||
share/apps/ksirtet/ksirtetui.rc
|
||||
share/apps/ksmiletris/data/bg1.bmp
|
||||
share/apps/ksmiletris/data/bg10.bmp
|
||||
|
@ -1255,15 +1330,15 @@ share/apps/ksnake/pics/samy.png
|
|||
share/apps/ksnake/pics/snake1.png
|
||||
share/apps/ksnake/pics/snake2.png
|
||||
share/apps/ksnake/pics/up.png
|
||||
share/apps/kspaceduel/icons/hicolor/16x16/actions/spnewgame.png
|
||||
share/apps/kspaceduel/icons/hicolor/16x16/actions/spnewround.png
|
||||
share/apps/kspaceduel/icons/hicolor/16x16/actions/sppausegame.png
|
||||
share/apps/kspaceduel/icons/hicolor/22x22/actions/spnewgame.png
|
||||
share/apps/kspaceduel/icons/hicolor/22x22/actions/spnewround.png
|
||||
share/apps/kspaceduel/icons/hicolor/22x22/actions/sppausegame.png
|
||||
share/apps/kspaceduel/icons/hicolor/32x32/actions/spnewgame.png
|
||||
share/apps/kspaceduel/icons/hicolor/32x32/actions/spnewround.png
|
||||
share/apps/kspaceduel/icons/hicolor/32x32/actions/sppausegame.png
|
||||
share/apps/kspaceduel/icons/crystalsvg/16x16/actions/spnewgame.png
|
||||
share/apps/kspaceduel/icons/crystalsvg/16x16/actions/spnewround.png
|
||||
share/apps/kspaceduel/icons/crystalsvg/16x16/actions/sppausegame.png
|
||||
share/apps/kspaceduel/icons/crystalsvg/22x22/actions/spnewgame.png
|
||||
share/apps/kspaceduel/icons/crystalsvg/22x22/actions/spnewround.png
|
||||
share/apps/kspaceduel/icons/crystalsvg/22x22/actions/sppausegame.png
|
||||
share/apps/kspaceduel/icons/crystalsvg/32x32/actions/spnewgame.png
|
||||
share/apps/kspaceduel/icons/crystalsvg/32x32/actions/spnewround.png
|
||||
share/apps/kspaceduel/icons/crystalsvg/32x32/actions/sppausegame.png
|
||||
share/apps/kspaceduel/icons/locolor/16x16/actions/spnewgame.png
|
||||
share/apps/kspaceduel/icons/locolor/16x16/actions/spnewround.png
|
||||
share/apps/kspaceduel/icons/locolor/16x16/actions/sppausegame.png
|
||||
|
@ -1670,11 +1745,16 @@ share/apps/ktuberling/museum/dali.tuberling
|
|||
share/apps/ktuberling/museum/einstein.tuberling
|
||||
share/apps/ktuberling/museum/fly.tuberling
|
||||
share/apps/ktuberling/museum/grandpa.tuberling
|
||||
share/apps/ktuberling/museum/happy.tuberling
|
||||
share/apps/ktuberling/museum/hippie.tuberling
|
||||
share/apps/ktuberling/museum/idiot.tuberling
|
||||
share/apps/ktuberling/museum/miss.tuberling
|
||||
share/apps/ktuberling/museum/mouse.tuberling
|
||||
share/apps/ktuberling/museum/picasso.tuberling
|
||||
share/apps/ktuberling/museum/sea.tuberling
|
||||
share/apps/ktuberling/museum/serious.tuberling
|
||||
share/apps/ktuberling/pics/aquarium-game.png
|
||||
share/apps/ktuberling/pics/aquarium-mask.png
|
||||
share/apps/ktuberling/pics/layout.xml
|
||||
share/apps/ktuberling/pics/penguin-game.png
|
||||
share/apps/ktuberling/pics/penguin-mask.png
|
||||
|
@ -1702,6 +1782,7 @@ share/apps/kwin4/grafix/default/arrow2.png
|
|||
share/apps/kwin4/grafix/default/arrow_mask.png
|
||||
share/apps/kwin4/grafix/default/background.png
|
||||
share/apps/kwin4/grafix/default/board.png
|
||||
share/apps/kwin4/grafix/default/crnt.png
|
||||
share/apps/kwin4/grafix/default/empty.png
|
||||
share/apps/kwin4/grafix/default/empty2.png
|
||||
share/apps/kwin4/grafix/default/empty2_mask.png
|
||||
|
@ -1709,7 +1790,6 @@ share/apps/kwin4/grafix/default/empty_mask.png
|
|||
share/apps/kwin4/grafix/default/game_over.png
|
||||
share/apps/kwin4/grafix/default/game_over_mask.png
|
||||
share/apps/kwin4/grafix/default/grafix.rc
|
||||
share/apps/kwin4/grafix/default/hint.png
|
||||
share/apps/kwin4/grafix/default/introabout.png
|
||||
share/apps/kwin4/grafix/default/introabout_mask.png
|
||||
share/apps/kwin4/grafix/default/piece0.png
|
||||
|
@ -1767,6 +1847,11 @@ share/apps/lskat/grafix/type1.png
|
|||
share/apps/lskat/grafix/type2.png
|
||||
share/apps/lskat/grafix/type3.png
|
||||
share/apps/lskat/lskatui.rc
|
||||
share/apps/megami/megamiui.rc
|
||||
share/config/magic/kolf.magic
|
||||
share/doc/HTML/en/atlantik/common
|
||||
share/doc/HTML/en/atlantik/index.cache.bz2
|
||||
share/doc/HTML/en/atlantik/index.docbook
|
||||
share/doc/HTML/en/kasteroids/common
|
||||
share/doc/HTML/en/kasteroids/fuel.png
|
||||
share/doc/HTML/en/kasteroids/index.cache.bz2
|
||||
|
@ -1802,6 +1887,9 @@ share/doc/HTML/en/kfouleggs/index.docbook
|
|||
share/doc/HTML/en/kjumpingcube/common
|
||||
share/doc/HTML/en/kjumpingcube/index.cache.bz2
|
||||
share/doc/HTML/en/kjumpingcube/index.docbook
|
||||
share/doc/HTML/en/klickety/common
|
||||
share/doc/HTML/en/klickety/index.cache.bz2
|
||||
share/doc/HTML/en/klickety/index.docbook
|
||||
share/doc/HTML/en/klines/common
|
||||
share/doc/HTML/en/klines/index.cache.bz2
|
||||
share/doc/HTML/en/klines/index.docbook
|
||||
|
@ -1810,6 +1898,9 @@ share/doc/HTML/en/kmines/index.cache.bz2
|
|||
share/doc/HTML/en/kmines/index.docbook
|
||||
share/doc/HTML/en/kmines/kmines1.png
|
||||
share/doc/HTML/en/kmines/kmines2.png
|
||||
share/doc/HTML/en/kolf/common
|
||||
share/doc/HTML/en/kolf/index.cache.bz2
|
||||
share/doc/HTML/en/kolf/index.docbook
|
||||
share/doc/HTML/en/konquest/common
|
||||
share/doc/HTML/en/konquest/index.cache.bz2
|
||||
share/doc/HTML/en/konquest/index.docbook
|
||||
|
@ -1837,6 +1928,8 @@ share/doc/HTML/en/ksame/index.docbook
|
|||
share/doc/HTML/en/kshisen/common
|
||||
share/doc/HTML/en/kshisen/index.cache.bz2
|
||||
share/doc/HTML/en/kshisen/index.docbook
|
||||
share/doc/HTML/en/kshisen/score-formula.png
|
||||
share/doc/HTML/en/kshisen/score-formula.tex
|
||||
share/doc/HTML/en/ksirtet/common
|
||||
share/doc/HTML/en/ksirtet/index.cache.bz2
|
||||
share/doc/HTML/en/ksirtet/index.docbook
|
||||
|
@ -1865,11 +1958,13 @@ share/doc/HTML/en/ktuberling/common
|
|||
share/doc/HTML/en/ktuberling/gameboard.png
|
||||
share/doc/HTML/en/ktuberling/index.cache.bz2
|
||||
share/doc/HTML/en/ktuberling/index.docbook
|
||||
share/doc/HTML/en/ktuberling/ktuberling.png
|
||||
share/doc/HTML/en/ktuberling/menu.edit.png
|
||||
share/doc/HTML/en/ktuberling/menu.file.png
|
||||
share/doc/HTML/en/ktuberling/menu.game.png
|
||||
share/doc/HTML/en/ktuberling/menu.help.png
|
||||
share/doc/HTML/en/ktuberling/menu.option.png
|
||||
share/doc/HTML/en/ktuberling/menu.playground.png
|
||||
share/doc/HTML/en/ktuberling/menu.raw.png
|
||||
share/doc/HTML/en/ktuberling/menu.speech.png
|
||||
share/doc/HTML/en/ktuberling/technical-reference.docbook
|
||||
share/doc/HTML/en/ktuberling/toolbar.png
|
||||
share/doc/HTML/en/kwin4/common
|
||||
|
@ -1878,94 +1973,127 @@ share/doc/HTML/en/kwin4/index.docbook
|
|||
share/doc/HTML/en/lskat/common
|
||||
share/doc/HTML/en/lskat/index.cache.bz2
|
||||
share/doc/HTML/en/lskat/index.docbook
|
||||
share/icons/hicolor/16x16/actions/highscore.png
|
||||
share/icons/hicolor/16x16/actions/roll.png
|
||||
share/icons/hicolor/16x16/apps/kasteroids.png
|
||||
share/icons/hicolor/16x16/apps/kbackgammon.png
|
||||
share/icons/hicolor/16x16/apps/kbackgammon_engine.png
|
||||
share/icons/hicolor/16x16/apps/kbattleship.png
|
||||
share/icons/hicolor/16x16/apps/kblackbox.png
|
||||
share/icons/hicolor/16x16/apps/kbounce.png
|
||||
share/icons/hicolor/16x16/apps/kenolaba.png
|
||||
share/icons/hicolor/16x16/apps/kjumpingcube.png
|
||||
share/icons/hicolor/16x16/apps/klines.png
|
||||
share/icons/hicolor/16x16/apps/kmahjongg.png
|
||||
share/icons/hicolor/16x16/apps/kmines.png
|
||||
share/icons/hicolor/16x16/apps/konquest.png
|
||||
share/icons/hicolor/16x16/apps/kpat.png
|
||||
share/icons/hicolor/16x16/apps/kpoker.png
|
||||
share/icons/hicolor/16x16/apps/kreversi.png
|
||||
share/icons/hicolor/16x16/apps/ksame.png
|
||||
share/icons/hicolor/16x16/apps/kshisen.png
|
||||
share/icons/hicolor/16x16/apps/ksirtet.png
|
||||
share/icons/hicolor/16x16/apps/ksmiletris.png
|
||||
share/icons/hicolor/16x16/apps/ksnake.png
|
||||
share/icons/hicolor/16x16/apps/ksokoban.png
|
||||
share/icons/hicolor/16x16/apps/kspaceduel.png
|
||||
share/icons/hicolor/16x16/apps/ktron.png
|
||||
share/icons/hicolor/16x16/apps/kwin4.png
|
||||
share/icons/hicolor/22x22/actions/roll.png
|
||||
share/icons/hicolor/32x32/actions/highscore.png
|
||||
share/icons/hicolor/32x32/actions/roll.png
|
||||
share/icons/hicolor/32x32/apps/kasteroids.png
|
||||
share/icons/hicolor/32x32/apps/katomic.png
|
||||
share/icons/hicolor/32x32/apps/kbackgammon.png
|
||||
share/icons/hicolor/32x32/apps/kbackgammon_engine.png
|
||||
share/icons/hicolor/32x32/apps/kbattleship.png
|
||||
share/icons/hicolor/32x32/apps/kblackbox.png
|
||||
share/icons/hicolor/32x32/apps/kbounce.png
|
||||
share/icons/hicolor/32x32/apps/kenolaba.png
|
||||
share/icons/hicolor/32x32/apps/kjumpingcube.png
|
||||
share/icons/hicolor/32x32/apps/klines.png
|
||||
share/icons/hicolor/32x32/apps/kmahjongg.png
|
||||
share/icons/hicolor/32x32/apps/kmines.png
|
||||
share/icons/hicolor/32x32/apps/konquest.png
|
||||
share/icons/hicolor/32x32/apps/kpat.png
|
||||
share/icons/hicolor/32x32/apps/kpoker.png
|
||||
share/icons/hicolor/32x32/apps/kreversi.png
|
||||
share/icons/hicolor/32x32/apps/ksame.png
|
||||
share/icons/hicolor/32x32/apps/kshisen.png
|
||||
share/icons/hicolor/32x32/apps/ksirtet.png
|
||||
share/icons/hicolor/32x32/apps/ksmiletris.png
|
||||
share/icons/hicolor/32x32/apps/ksnake.png
|
||||
share/icons/hicolor/32x32/apps/ksokoban.png
|
||||
share/icons/hicolor/32x32/apps/kspaceduel.png
|
||||
share/icons/hicolor/32x32/apps/ktron.png
|
||||
share/icons/hicolor/32x32/apps/ktuberling.png
|
||||
share/icons/hicolor/32x32/apps/kwin4.png
|
||||
share/icons/hicolor/32x32/apps/lskat.png
|
||||
share/icons/hicolor/48x48/apps/kasteroids.png
|
||||
share/icons/hicolor/48x48/apps/kbackgammon.png
|
||||
share/icons/hicolor/48x48/apps/kbackgammon_engine.png
|
||||
share/icons/hicolor/48x48/apps/kblackbox.png
|
||||
share/icons/hicolor/48x48/apps/kenolaba.png
|
||||
share/icons/hicolor/48x48/apps/kmahjongg.png
|
||||
share/icons/hicolor/48x48/apps/kmines.png
|
||||
share/icons/hicolor/48x48/apps/konquest.png
|
||||
share/icons/hicolor/48x48/apps/kpat.png
|
||||
share/icons/hicolor/48x48/apps/kpoker.png
|
||||
share/icons/hicolor/48x48/apps/kreversi.png
|
||||
share/icons/hicolor/48x48/apps/ksame.png
|
||||
share/icons/hicolor/48x48/apps/kshisen.png
|
||||
share/icons/hicolor/48x48/apps/ksirtet.png
|
||||
share/icons/hicolor/48x48/apps/ksmiletris.png
|
||||
share/icons/hicolor/48x48/apps/ksnake.png
|
||||
share/icons/hicolor/48x48/apps/ksokoban.png
|
||||
share/icons/hicolor/48x48/apps/kwin4.png
|
||||
share/icons/hicolor/48x48/apps/lskat.png
|
||||
share/doc/HTML/en/megami/common
|
||||
share/doc/HTML/en/megami/index.cache.bz2
|
||||
share/doc/HTML/en/megami/index.docbook
|
||||
share/icons/crystalsvg/16x16/actions/endturn.png
|
||||
share/icons/crystalsvg/16x16/actions/highscore.png
|
||||
share/icons/crystalsvg/16x16/actions/roll.png
|
||||
share/icons/crystalsvg/16x16/apps/atlantik.png
|
||||
share/icons/crystalsvg/16x16/apps/kasteroids.png
|
||||
share/icons/crystalsvg/16x16/apps/kbackgammon.png
|
||||
share/icons/crystalsvg/16x16/apps/kbackgammon_engine.png
|
||||
share/icons/crystalsvg/16x16/apps/kbattleship.png
|
||||
share/icons/crystalsvg/16x16/apps/kblackbox.png
|
||||
share/icons/crystalsvg/16x16/apps/kbounce.png
|
||||
share/icons/crystalsvg/16x16/apps/kenolaba.png
|
||||
share/icons/crystalsvg/16x16/apps/kjumpingcube.png
|
||||
share/icons/crystalsvg/16x16/apps/klines.png
|
||||
share/icons/crystalsvg/16x16/apps/kmahjongg.png
|
||||
share/icons/crystalsvg/16x16/apps/kmines.png
|
||||
share/icons/crystalsvg/16x16/apps/kolf.png
|
||||
share/icons/crystalsvg/16x16/apps/konquest.png
|
||||
share/icons/crystalsvg/16x16/apps/kpat.png
|
||||
share/icons/crystalsvg/16x16/apps/kpoker.png
|
||||
share/icons/crystalsvg/16x16/apps/kreversi.png
|
||||
share/icons/crystalsvg/16x16/apps/ksame.png
|
||||
share/icons/crystalsvg/16x16/apps/kshisen.png
|
||||
share/icons/crystalsvg/16x16/apps/ksirtet.png
|
||||
share/icons/crystalsvg/16x16/apps/ksmiletris.png
|
||||
share/icons/crystalsvg/16x16/apps/ksnake.png
|
||||
share/icons/crystalsvg/16x16/apps/ksokoban.png
|
||||
share/icons/crystalsvg/16x16/apps/kspaceduel.png
|
||||
share/icons/crystalsvg/16x16/apps/ktron.png
|
||||
share/icons/crystalsvg/16x16/apps/kwin4.png
|
||||
share/icons/crystalsvg/22x22/actions/roll.png
|
||||
share/icons/crystalsvg/32x32/actions/endturn.png
|
||||
share/icons/crystalsvg/32x32/actions/highscore.png
|
||||
share/icons/crystalsvg/32x32/actions/roll.png
|
||||
share/icons/crystalsvg/32x32/apps/atlantik.png
|
||||
share/icons/crystalsvg/32x32/apps/kasteroids.png
|
||||
share/icons/crystalsvg/32x32/apps/katomic.png
|
||||
share/icons/crystalsvg/32x32/apps/kbackgammon.png
|
||||
share/icons/crystalsvg/32x32/apps/kbackgammon_engine.png
|
||||
share/icons/crystalsvg/32x32/apps/kbattleship.png
|
||||
share/icons/crystalsvg/32x32/apps/kblackbox.png
|
||||
share/icons/crystalsvg/32x32/apps/kbounce.png
|
||||
share/icons/crystalsvg/32x32/apps/kenolaba.png
|
||||
share/icons/crystalsvg/32x32/apps/kjumpingcube.png
|
||||
share/icons/crystalsvg/32x32/apps/klines.png
|
||||
share/icons/crystalsvg/32x32/apps/kmahjongg.png
|
||||
share/icons/crystalsvg/32x32/apps/kmines.png
|
||||
share/icons/crystalsvg/32x32/apps/kolf.png
|
||||
share/icons/crystalsvg/32x32/apps/konquest.png
|
||||
share/icons/crystalsvg/32x32/apps/kpat.png
|
||||
share/icons/crystalsvg/32x32/apps/kpoker.png
|
||||
share/icons/crystalsvg/32x32/apps/kreversi.png
|
||||
share/icons/crystalsvg/32x32/apps/ksame.png
|
||||
share/icons/crystalsvg/32x32/apps/kshisen.png
|
||||
share/icons/crystalsvg/32x32/apps/ksirtet.png
|
||||
share/icons/crystalsvg/32x32/apps/ksmiletris.png
|
||||
share/icons/crystalsvg/32x32/apps/ksnake.png
|
||||
share/icons/crystalsvg/32x32/apps/ksokoban.png
|
||||
share/icons/crystalsvg/32x32/apps/kspaceduel.png
|
||||
share/icons/crystalsvg/32x32/apps/ktron.png
|
||||
share/icons/crystalsvg/32x32/apps/ktuberling.png
|
||||
share/icons/crystalsvg/32x32/apps/kwin4.png
|
||||
share/icons/crystalsvg/32x32/apps/lskat.png
|
||||
share/icons/crystalsvg/32x32/apps/megami.png
|
||||
share/icons/crystalsvg/48x48/apps/atlantik.png
|
||||
share/icons/crystalsvg/48x48/apps/kasteroids.png
|
||||
share/icons/crystalsvg/48x48/apps/kbackgammon.png
|
||||
share/icons/crystalsvg/48x48/apps/kbackgammon_engine.png
|
||||
share/icons/crystalsvg/48x48/apps/kblackbox.png
|
||||
share/icons/crystalsvg/48x48/apps/kenolaba.png
|
||||
share/icons/crystalsvg/48x48/apps/kmahjongg.png
|
||||
share/icons/crystalsvg/48x48/apps/kmines.png
|
||||
share/icons/crystalsvg/48x48/apps/kolf.png
|
||||
share/icons/crystalsvg/48x48/apps/konquest.png
|
||||
share/icons/crystalsvg/48x48/apps/kpat.png
|
||||
share/icons/crystalsvg/48x48/apps/kpoker.png
|
||||
share/icons/crystalsvg/48x48/apps/kreversi.png
|
||||
share/icons/crystalsvg/48x48/apps/ksame.png
|
||||
share/icons/crystalsvg/48x48/apps/kshisen.png
|
||||
share/icons/crystalsvg/48x48/apps/ksirtet.png
|
||||
share/icons/crystalsvg/48x48/apps/ksmiletris.png
|
||||
share/icons/crystalsvg/48x48/apps/ksnake.png
|
||||
share/icons/crystalsvg/48x48/apps/ksokoban.png
|
||||
share/icons/crystalsvg/48x48/apps/kwin4.png
|
||||
share/icons/crystalsvg/48x48/apps/lskat.png
|
||||
share/icons/hicolor/32x32/apps/megami.png
|
||||
share/icons/locolor/16x16/apps/kbounce.png
|
||||
share/icons/locolor/16x16/apps/kspaceduel.png
|
||||
share/icons/locolor/16x16/apps/lskat.png
|
||||
share/icons/locolor/32x32/apps/kbounce.png
|
||||
share/icons/locolor/32x32/apps/kspaceduel.png
|
||||
share/icons/locolor/32x32/apps/lskat.png
|
||||
share/mimelnk/application/x-kolf.desktop
|
||||
share/mimelnk/application/x-kourse.desktop
|
||||
share/services/atlantik.protocol
|
||||
@dirrm share/services
|
||||
@dirrm share/mimelnk/application
|
||||
@dirrm share/mimelnk
|
||||
@dirrm share/icons/locolor/32x32/apps
|
||||
@dirrm share/icons/locolor/32x32
|
||||
@dirrm share/icons/locolor/16x16/apps
|
||||
@dirrm share/icons/locolor/16x16
|
||||
@dirrm share/icons/locolor
|
||||
@dirrm share/icons/hicolor/48x48/apps
|
||||
@dirrm share/icons/hicolor/32x32/apps
|
||||
@dirrm share/icons/hicolor/32x32
|
||||
@dirrm share/icons/hicolor
|
||||
@dirrm share/icons/crystalsvg/48x48/apps
|
||||
@dirrm share/icons/crystalsvg/48x48
|
||||
@dirrm share/icons/crystalsvg/32x32/apps
|
||||
@dirrm share/icons/crystalsvg/32x32/actions
|
||||
@dirrm share/icons/crystalsvg/32x32
|
||||
@dirrm share/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/icons/crystalsvg/22x22
|
||||
@dirrm share/icons/crystalsvg/16x16/apps
|
||||
@dirrm share/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/icons/crystalsvg/16x16
|
||||
@dirrm share/icons/crystalsvg
|
||||
@dirrm share/icons
|
||||
@dirrm share/doc/HTML/en/megami
|
||||
@dirrm share/doc/HTML/en/lskat
|
||||
@dirrm share/doc/HTML/en/kwin4
|
||||
@dirrm share/doc/HTML/en/ktuberling
|
||||
|
@ -1980,8 +2108,10 @@ share/icons/locolor/32x32/apps/lskat.png
|
|||
@dirrm share/doc/HTML/en/kpoker
|
||||
@dirrm share/doc/HTML/en/kpat
|
||||
@dirrm share/doc/HTML/en/konquest
|
||||
@dirrm share/doc/HTML/en/kolf
|
||||
@dirrm share/doc/HTML/en/kmines
|
||||
@dirrm share/doc/HTML/en/klines
|
||||
@dirrm share/doc/HTML/en/klickety
|
||||
@dirrm share/doc/HTML/en/kjumpingcube
|
||||
@dirrm share/doc/HTML/en/kfouleggs
|
||||
@dirrm share/doc/HTML/en/kenolaba
|
||||
|
@ -1991,6 +2121,13 @@ share/icons/locolor/32x32/apps/lskat.png
|
|||
@dirrm share/doc/HTML/en/kbackgammon
|
||||
@dirrm share/doc/HTML/en/katomic
|
||||
@dirrm share/doc/HTML/en/kasteroids
|
||||
@dirrm share/doc/HTML/en/atlantik
|
||||
@dirrm share/doc/HTML/en
|
||||
@dirrm share/doc/HTML
|
||||
@dirrm share/doc
|
||||
@dirrm share/config/magic
|
||||
@dirrm share/config
|
||||
@dirrm share/apps/megami
|
||||
@dirrm share/apps/lskat/grafix
|
||||
@dirrm share/apps/lskat
|
||||
@dirrm share/apps/kwin4/grafix/default
|
||||
|
@ -2012,13 +2149,13 @@ share/icons/locolor/32x32/apps/lskat.png
|
|||
@dirrm share/apps/kspaceduel/icons/locolor/16x16/actions
|
||||
@dirrm share/apps/kspaceduel/icons/locolor/16x16
|
||||
@dirrm share/apps/kspaceduel/icons/locolor
|
||||
@dirrm share/apps/kspaceduel/icons/hicolor/32x32/actions
|
||||
@dirrm share/apps/kspaceduel/icons/hicolor/32x32
|
||||
@dirrm share/apps/kspaceduel/icons/hicolor/22x22/actions
|
||||
@dirrm share/apps/kspaceduel/icons/hicolor/22x22
|
||||
@dirrm share/apps/kspaceduel/icons/hicolor/16x16/actions
|
||||
@dirrm share/apps/kspaceduel/icons/hicolor/16x16
|
||||
@dirrm share/apps/kspaceduel/icons/hicolor
|
||||
@dirrm share/apps/kspaceduel/icons/crystalsvg/32x32/actions
|
||||
@dirrm share/apps/kspaceduel/icons/crystalsvg/32x32
|
||||
@dirrm share/apps/kspaceduel/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/apps/kspaceduel/icons/crystalsvg/22x22
|
||||
@dirrm share/apps/kspaceduel/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/kspaceduel/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/kspaceduel/icons/crystalsvg
|
||||
@dirrm share/apps/kspaceduel/icons
|
||||
@dirrm share/apps/kspaceduel
|
||||
@dirrm share/apps/ksnake/pics
|
||||
|
@ -2040,11 +2177,16 @@ share/icons/locolor/32x32/apps/lskat.png
|
|||
@dirrm share/apps/kpat
|
||||
@dirrm share/apps/konquest/pics
|
||||
@dirrm share/apps/konquest
|
||||
@dirrm share/apps/kolf/sounds
|
||||
@dirrm share/apps/kolf/pics
|
||||
@dirrm share/apps/kolf/courses
|
||||
@dirrm share/apps/kolf
|
||||
@dirrm share/apps/kmines
|
||||
@dirrm share/apps/kmahjongg/toolbar
|
||||
@dirrm share/apps/kmahjongg/pics
|
||||
@dirrm share/apps/kmahjongg
|
||||
@dirrm share/apps/klines
|
||||
@dirrm share/apps/klickety
|
||||
@dirrm share/apps/kjumpingcube
|
||||
@dirrm share/apps/kfouleggs
|
||||
@dirrm share/apps/kenolaba/toolbar
|
||||
|
@ -2089,11 +2231,31 @@ share/icons/locolor/32x32/apps/lskat.png
|
|||
@dirrm share/apps/carddecks/cards-default
|
||||
@dirrm share/apps/carddecks/cards-aisleriot
|
||||
@dirrm share/apps/carddecks
|
||||
@dirrm share/apps/atlantik/pics
|
||||
@dirrm share/apps/atlantik/icons/locolor/16x16/actions
|
||||
@dirrm share/apps/atlantik/icons/locolor/16x16
|
||||
@dirrm share/apps/atlantik/icons/locolor
|
||||
@dirrm share/apps/atlantik/icons/crystalsvg/32x32/actions
|
||||
@dirrm share/apps/atlantik/icons/crystalsvg/32x32
|
||||
@dirrm share/apps/atlantik/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/apps/atlantik/icons/crystalsvg/22x22
|
||||
@dirrm share/apps/atlantik/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/atlantik/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/atlantik/icons/crystalsvg
|
||||
@dirrm share/apps/atlantik/icons
|
||||
@dirrm share/apps/atlantik
|
||||
@dirrm share/apps
|
||||
@dirrm share/applnk/Toys
|
||||
@dirrm share/applnk/Games/TacticStrategy
|
||||
@dirrm share/applnk/Games/Kidsgames
|
||||
@dirrm share/applnk/Games/Card
|
||||
@dirrm share/applnk/Games/Board
|
||||
@dirrm share/applnk/Games/Arcade
|
||||
@dirrm share/applnk/Games
|
||||
@dirrm share/applnk
|
||||
@dirrm lib/kde3
|
||||
@dirrm include/kolf
|
||||
@dirrm include/kgame
|
||||
@dirrm include/atlantik/ui
|
||||
@dirrm include/atlantik
|
||||
@dirrm include/atlantic
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# -*-mode: makefile-*-
|
||||
# New ports collection makefile for: KDE3 Graphics
|
||||
# Date created: Saturday 2 September 2000
|
||||
# Whom: Will Andrews <will@FreeBSD.org>
|
||||
|
@ -15,37 +16,39 @@ DIST_SUBDIR= KDE
|
|||
MAINTAINER= kde@FreeBSD.org
|
||||
|
||||
USE_KDELIBS_VER=3
|
||||
PREFIX= ${KDE_PREFIX}
|
||||
KDE_BUILD_PLIST=yes
|
||||
|
||||
USE_BZIP2= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GMAKE= yes
|
||||
|
||||
INSTALLS_SHLIB= yes
|
||||
LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3
|
||||
|
||||
.if defined(WITH_IMLIB) || defined(KDE_WITH_IMLIB)
|
||||
USE_GNOMENG= yes
|
||||
USE_GNOME= imlib
|
||||
PLIST_SUB+= IMLIB=""
|
||||
CONFIGURE_ARGS+= --with-imlib-config=${X11BASE}/bin
|
||||
PLIST_APPEND+= plist.imlib
|
||||
CONFIGURE_ARGS+=--with-imlib-config=${X11BASE}/bin
|
||||
.else
|
||||
WITHOUT_IMLIB= yes
|
||||
PLIST_SUB+= IMLIB="@comment "
|
||||
CONFIGURE_ARGS+= --without-imlib-config
|
||||
.endif
|
||||
CONFIGURE_ARGS+=--without-imlib-config
|
||||
.endif # defined(WITH_IMLIB) || defined(KDE_WITH_IMLIB)
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
GPHOTO2_CONFIG= ${LOCALBASE}/bin/gphoto2-config
|
||||
|
||||
.if exists(${GPHOTO2_CONFIG})
|
||||
WITH_GPHOTO2?= yes
|
||||
.endif
|
||||
.endif # exists(${GPHOTO2_CONFIG})
|
||||
|
||||
.if defined(WITH_GPHOTO2) && ${WITH_GPHOTO2} == yes
|
||||
.if defined(WITH_GPHOTO2)
|
||||
LIB_DEPENDS+= gphoto2.2:${PORTSDIR}/graphics/gphoto2
|
||||
PLIST_SUB+= KAMERA=""
|
||||
PLIST_APPEND+= plist.gphoto2
|
||||
.else
|
||||
PLIST_SUB+= KAMERA="@comment "
|
||||
pre-everything::
|
||||
@${ECHO_MSG}
|
||||
@${ECHO_MSG} "======================================================="
|
||||
|
@ -53,19 +56,18 @@ pre-everything::
|
|||
@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_GPHOTO2=yes\""
|
||||
@${ECHO_MSG} "======================================================="
|
||||
@${ECHO_MSG}
|
||||
.endif
|
||||
.endif # defined(WITH_GPHOTO2)
|
||||
|
||||
SANE_CONFIG= ${LOCALBASE}/bin/sane-config
|
||||
|
||||
.if exists(${SANE_CONFIG})
|
||||
WITH_SANE?= yes
|
||||
.endif
|
||||
.endif # exists(${SANE_CONFIG})
|
||||
|
||||
.if defined(WITH_SANE) && ${WITH_SANE} == yes
|
||||
.if defined(WITH_SANE)
|
||||
LIB_DEPENDS+= sane.1:${PORTSDIR}/graphics/sane-backends
|
||||
PLIST_SUB+= SANE=""
|
||||
PLIST_APPEND+= plist.sane
|
||||
.else
|
||||
PLIST_SUB+= SANE="@comment "
|
||||
pre-everything::
|
||||
@${ECHO_MSG}
|
||||
@${ECHO_MSG} "======================================================="
|
||||
|
@ -73,6 +75,6 @@ pre-everything::
|
|||
@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_SANE=yes\""
|
||||
@${ECHO_MSG} "======================================================="
|
||||
@${ECHO_MSG}
|
||||
.endif
|
||||
.endif # defined(WITH_SANE)
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (KDE/kdegraphics-3.0.4.tar.bz2) = 6065219c825102c843ba582c4a520cac
|
||||
MD5 (KDE/kdegraphics-3.1.tar.bz2) = 1daa1a669131015db73a98f6ca26e232
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
--- kdvi/font.cpp.orig Mon Apr 22 23:45:41 2002
|
||||
+++ kdvi/font.cpp Mon Apr 22 23:45:53 2002
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
#include <kdebug.h>
|
||||
#include <klocale.h>
|
||||
-#include <malloc.h>
|
||||
+#include <stdlib.h>
|
||||
#include <qapplication.h>
|
||||
#include <qfile.h>
|
||||
#include <stdio.h>
|
652
graphics/kdegraphics3/files/plist.base
Normal file
652
graphics/kdegraphics3/files/plist.base
Normal file
|
@ -0,0 +1,652 @@
|
|||
bin/kcolorchooser
|
||||
bin/kcoloredit
|
||||
bin/kdvi
|
||||
bin/kfax
|
||||
bin/kghostview
|
||||
bin/kiconedit
|
||||
bin/kpaint
|
||||
bin/kpovmodeler
|
||||
bin/kruler
|
||||
bin/ksnapshot
|
||||
bin/kview
|
||||
bin/kviewshell
|
||||
bin/mrmlsearch
|
||||
include/kmultipageInterface.h
|
||||
lib/kde3/kcm_kmrml.la
|
||||
lib/kde3/kcm_kmrml.so
|
||||
lib/kde3/kded_daemonwatcher.la
|
||||
lib/kde3/kded_daemonwatcher.so
|
||||
lib/kde3/kdvipart.la
|
||||
lib/kde3/kdvipart.so
|
||||
lib/kde3/kfaxpart.la
|
||||
lib/kde3/kfaxpart.so
|
||||
lib/kde3/kfile_bmp.la
|
||||
lib/kde3/kfile_bmp.so
|
||||
lib/kde3/kfile_ico.la
|
||||
lib/kde3/kfile_ico.so
|
||||
lib/kde3/kfile_jpeg.la
|
||||
lib/kde3/kfile_jpeg.so
|
||||
lib/kde3/kfile_pdf.la
|
||||
lib/kde3/kfile_pdf.so
|
||||
lib/kde3/kfile_png.la
|
||||
lib/kde3/kfile_png.so
|
||||
lib/kde3/kfile_ps.la
|
||||
lib/kde3/kfile_ps.so
|
||||
lib/kde3/kfile_tga.la
|
||||
lib/kde3/kfile_tga.so
|
||||
lib/kde3/kfile_tiff.la
|
||||
lib/kde3/kfile_tiff.so
|
||||
lib/kde3/kfile_xbm.la
|
||||
lib/kde3/kfile_xbm.so
|
||||
lib/kde3/kio_mrml.la
|
||||
lib/kde3/kio_mrml.so
|
||||
lib/kde3/kview_browserplugin.la
|
||||
lib/kde3/kview_browserplugin.so
|
||||
lib/kde3/kview_presenterplugin.la
|
||||
lib/kde3/kview_presenterplugin.so
|
||||
lib/kde3/kview_scannerplugin.la
|
||||
lib/kde3/kview_scannerplugin.so
|
||||
lib/kde3/kviewerpart.la
|
||||
lib/kde3/kviewerpart.so
|
||||
lib/kde3/libkghostviewpart.la
|
||||
lib/kde3/libkghostviewpart.so
|
||||
lib/kde3/libkmrmlpart.la
|
||||
lib/kde3/libkmrmlpart.so
|
||||
lib/kde3/libkpovmodelerpart.la
|
||||
lib/kde3/libkpovmodelerpart.so
|
||||
lib/kde3/libkviewcanvas.la
|
||||
lib/kde3/libkviewcanvas.so
|
||||
lib/kde3/libkviewviewer.la
|
||||
lib/kde3/libkviewviewer.so
|
||||
lib/kview.la
|
||||
lib/kview.so
|
||||
lib/libkmultipage.la
|
||||
lib/libkmultipage.so
|
||||
lib/libkmultipage.so.0
|
||||
lib/libkpagetest.la
|
||||
lib/libkpagetest.so
|
||||
lib/libkviewsupport.la
|
||||
lib/libkviewsupport.so
|
||||
lib/libkviewsupport.so.0
|
||||
lib/mrmlsearch.la
|
||||
lib/mrmlsearch.so
|
||||
share/applnk/Graphics/More/kcolorchooser.desktop
|
||||
share/applnk/Graphics/More/kcoloredit.desktop
|
||||
share/applnk/Graphics/More/kiconedit.desktop
|
||||
share/applnk/Graphics/More/kruler.desktop
|
||||
share/applnk/Graphics/More/ksnapshot.desktop
|
||||
share/applnk/Graphics/kcolorchooser.desktop
|
||||
share/applnk/Graphics/kcoloredit.desktop
|
||||
share/applnk/Graphics/kdvi.desktop
|
||||
share/applnk/Graphics/kfax.desktop
|
||||
share/applnk/Graphics/kghostview.desktop
|
||||
share/applnk/Graphics/kiconedit.desktop
|
||||
share/applnk/Graphics/kpaint.desktop
|
||||
share/applnk/Graphics/kpovmodeler.desktop
|
||||
share/applnk/Graphics/kruler.desktop
|
||||
share/applnk/Graphics/ksnapshot.desktop
|
||||
share/applnk/Graphics/kview.desktop
|
||||
share/applnk/Settings/System/kcmkmrml.desktop
|
||||
share/apps/kcoloredit/kcoloreditui.rc
|
||||
share/apps/kdvi/kdvi_part.rc
|
||||
share/apps/kdvi/tips
|
||||
share/apps/kdvi/toolbar/forwpage.xpm
|
||||
share/apps/kdvi/toolbar/largetext.xpm
|
||||
share/apps/kdvi/toolbar/smalltext.xpm
|
||||
share/apps/kfax/kfax_part.rc
|
||||
share/apps/kfax/kfaxui.rc
|
||||
share/apps/kfax/pics/kfax.tif
|
||||
share/apps/kfax/pics/kfaxlogo.xpm
|
||||
share/apps/kghostview/kghostviewui.rc
|
||||
share/apps/kghostview/kgv_part.rc
|
||||
share/apps/kghostview/pdf_sec.ps
|
||||
share/apps/kiconedit/pics/compressed.png
|
||||
share/apps/kiconedit/pics/source.png
|
||||
share/apps/kiconedit/pics/standard.png
|
||||
share/apps/kiconedit/toolbar/aim-cursor.xpm
|
||||
share/apps/kiconedit/toolbar/aim.png
|
||||
share/apps/kiconedit/toolbar/areaselect.png
|
||||
share/apps/kiconedit/toolbar/circle.png
|
||||
share/apps/kiconedit/toolbar/ellipse.png
|
||||
share/apps/kiconedit/toolbar/eraser-cursor.xpm
|
||||
share/apps/kiconedit/toolbar/fileclose.png
|
||||
share/apps/kiconedit/toolbar/filledcircle.png
|
||||
share/apps/kiconedit/toolbar/filledellipse.png
|
||||
share/apps/kiconedit/toolbar/filledrectangle.png
|
||||
share/apps/kiconedit/toolbar/flood-cursor.xpm
|
||||
share/apps/kiconedit/toolbar/flood.png
|
||||
share/apps/kiconedit/toolbar/grayscale.png
|
||||
share/apps/kiconedit/toolbar/grid.png
|
||||
share/apps/kiconedit/toolbar/kdepalette.png
|
||||
share/apps/kiconedit/toolbar/line.png
|
||||
share/apps/kiconedit/toolbar/newwin.png
|
||||
share/apps/kiconedit/toolbar/paintbrush-cursor.xpm
|
||||
share/apps/kiconedit/toolbar/paintbrush.png
|
||||
share/apps/kiconedit/toolbar/pointer.png
|
||||
share/apps/kiconedit/toolbar/rectangle.png
|
||||
share/apps/kiconedit/toolbar/selectcircle.png
|
||||
share/apps/kiconedit/toolbar/selectrect.png
|
||||
share/apps/kiconedit/toolbar/spraycan-cursor.xpm
|
||||
share/apps/kiconedit/toolbar/spraycan.png
|
||||
share/apps/kiconedit/toolbar/transform.png
|
||||
share/apps/konqueror/servicemenus/mrml-servicemenu.desktop
|
||||
share/apps/kpaint/kpaintui.rc
|
||||
share/apps/kpaint/toolbar/areaselect.png
|
||||
share/apps/kpaint/toolbar/brush.png
|
||||
share/apps/kpaint/toolbar/circle.png
|
||||
share/apps/kpaint/toolbar/ellipse.png
|
||||
share/apps/kpaint/toolbar/line.png
|
||||
share/apps/kpaint/toolbar/rectangle.png
|
||||
share/apps/kpaint/toolbar/roundangle.png
|
||||
share/apps/kpovmodeler/examples/includes/inlined/chars.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/finish.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/glass.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/golds.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/metals.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/shapes.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/shapes2.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/shapesq.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/skies.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/stars.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/stones1.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/stones2.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/textures.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/woods.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/chars.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/finish.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/glass.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/golds.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/metals.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/shapes.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/shapes2.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/shapesq.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/skies.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/stars.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/stones1.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/stones2.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/textures.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/woods.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/advanced/ants.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/advanced/bee.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/advanced/ink.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/advanced/table.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/csg/cheese.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/csg/emptybox.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/csg/heightfield.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/interior/cubes.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/interior/media1.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/interior/media2.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/interior/media3.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/interior/spheres.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/lights/arealight.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/lights/arealight2.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/lights/spotlight.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/objects/allobjects.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/objects/fractals.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/objects/lathe.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/objects/prism.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/objects/sor.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/objects/superellipsoid.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/objects/text.kpm
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmaddpoint.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmaddsubprism.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmbicubicpatch.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmblendmapmodifiers.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmblob.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmblobcylinder.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmblobsphere.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmboundedby.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmbox.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmbumpmap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmcamera.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmclippedby.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmcolorlist.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmcolormap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmcolormapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmcomment.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmcone.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmcylinder.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmdensity.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmdensitydeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmdensitylist.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmdensitymap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmdensitymapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmdialogview.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmdifference.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmdisc.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmdrag.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmfinish.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmfinishdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmfog.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmfogdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmglobalsettings.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmglview.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmheightfield.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmimagemap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pminserterrors.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pminsertfirstchild.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pminsertlastchild.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pminsertsibling.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pminterior.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pminteriordeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmintersection.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmjuliafractal.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmlathe.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmlight.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmlistpattern.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmlookslike.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmmaterial.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmmaterialdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmmaterialmap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmmatrix.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmmedia.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmmediadeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmmerge.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmnormal.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmnormaldeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmnormallist.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmnormalmap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmnormalmapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmobjectdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmobjectlink.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmpattern.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmpigment.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmpigmentdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmpigmentlist.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmpigmentmap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmpigmentmapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmplane.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmpolynom.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmprism.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmquickcolor.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmrainbow.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmrainbowdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmraw.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmremovepoint.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmrender.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmrenderpreview.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmrendersettings.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmrotate.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmscale.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmscene.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmskysphere.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmskyspheredeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmslope.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmslopemap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmslopemapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmsolidcolor.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmsor.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmsphere.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmsqe.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmtext.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmtexture.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmtexturedeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmtexturelist.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmtexturemap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmtexturemapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmtorus.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmtranslate.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmtreeview.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmtriangle.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmunion.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmwarp.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmbicubicpatch.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmblendmapmodifiers.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmblob.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmblobcylinder.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmblobsphere.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmboundedby.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmbox.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmbumpmap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmcamera.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmclippedby.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmcolorlist.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmcolormap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmcolormapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmcomment.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmcone.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmcylinder.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmdensity.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmdensitydeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmdensitylist.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmdensitymap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmdensitymapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmdifference.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmdisc.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmdrag.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmfinish.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmfinishdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmfog.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmfogdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmglobalsettings.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmheightfield.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmimagemap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pminserterrors.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pminterior.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pminteriordeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmintersection.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmjuliafractal.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmlathe.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmlight.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmlistpattern.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmlookslike.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmmaterial.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmmaterialdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmmaterialmap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmmatrix.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmmedia.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmmediadeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmmerge.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmnormal.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmnormaldeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmnormallist.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmnormalmap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmnormalmapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmobjectdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmobjectlink.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmpattern.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmpigment.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmpigmentdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmpigmentlist.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmpigmentmap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmpigmentmapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmplane.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmpolynom.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmprism.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmquickcolor.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmrainbow.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmrainbowdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmraw.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmrender.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmrenderpreview.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmrendersettings.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmrotate.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmscale.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmscene.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmskysphere.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmskyspheredeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmslope.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmslopemap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmslopemapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmsolidcolor.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmsor.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmsphere.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmsqe.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmtext.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmtexture.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmtexturedeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmtexturelist.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmtexturemap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmtexturemapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmtorus.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmtranslate.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmtriangle.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmunion.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmwarp.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmaddpoint.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmaddsubprism.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmbicubicpatch.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmblendmapmodifiers.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmblob.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmblobcylinder.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmblobsphere.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmboundedby.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmbox.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmbumpmap.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmcamera.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmclippedby.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmcomment.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmcone.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmcylinder.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmdeclare.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmdensity.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmdensitydeclare.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmdensitylist.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmdensitymap.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmdensitymapdeclare.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmdifference.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmdisc.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmdrag.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmfog.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmfogdeclare.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmglobalsettings.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmheightfield.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmimagemap.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pminserterrors.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pminsertfirstchild.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pminsertlastchild.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pminsertsibling.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmintersection.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmjuliafractal.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmlathe.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmlight.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmlistpattern.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmlookslike.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmmaterialmap.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmmatrix.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmmerge.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmobjectdeclare.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmobjectlink.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmpigment.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmpigmentdeclare.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmplane.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmpolynom.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmprism.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmquickcolor.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmrainbow.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmrainbowdeclare.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmraw.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmremovepoint.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmrender.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmrenderpreview.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmrendersettings.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmrotate.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmscale.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmscene.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmskysphere.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmskyspheredeclare.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmsolidcolor.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmsor.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmsphere.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmsqr.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmtext.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmtexture.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmtexturedeclare.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmtorus.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmtranslate.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmtriangle.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmunion.png
|
||||
share/apps/kpovmodeler/kpovmodelerbrowser.rc
|
||||
share/apps/kpovmodeler/kpovmodelershell.rc
|
||||
share/apps/kpovmodeler/kpovmodelerui.rc
|
||||
share/apps/kpovmodeler/povraydocmap.xml
|
||||
share/apps/kruler/eventsrc
|
||||
share/apps/kruler/pics/kruler-east.png
|
||||
share/apps/kruler/pics/kruler-north.png
|
||||
share/apps/kruler/pics/kruler-south.png
|
||||
share/apps/kruler/pics/kruler-west.png
|
||||
share/apps/kruler/sounds/move.wav
|
||||
share/apps/kview/kpartplugins/kviewpresenter.desktop
|
||||
share/apps/kview/kpartplugins/kviewpresenter.rc
|
||||
share/apps/kview/kpartplugins/kviewscanner.desktop
|
||||
share/apps/kview/kpartplugins/kviewscanner.rc
|
||||
share/apps/kview/kviewui.rc
|
||||
share/apps/kviewerpart/kviewerpart.rc
|
||||
share/apps/kviewshell/kviewshell.rc
|
||||
share/apps/kviewviewer/kpartplugins/kviewbrowser.desktop
|
||||
share/apps/kviewviewer/kpartplugins/kviewbrowser.rc
|
||||
share/apps/kviewviewer/kviewpopup.rc
|
||||
share/apps/kviewviewer/kviewviewer.rc
|
||||
share/apps/kviewviewer/kviewviewer_ro.rc
|
||||
share/doc/HTML/en/kamera/common
|
||||
share/doc/HTML/en/kamera/index.cache.bz2
|
||||
share/doc/HTML/en/kamera/index.docbook
|
||||
share/doc/HTML/en/kcoloredit/common
|
||||
share/doc/HTML/en/kcoloredit/index.cache.bz2
|
||||
share/doc/HTML/en/kcoloredit/index.docbook
|
||||
share/doc/HTML/en/kdvi/KDVI-features.dvi
|
||||
share/doc/HTML/en/kdvi/KDVI-features.tex
|
||||
share/doc/HTML/en/kdvi/aboutkde.ps
|
||||
share/doc/HTML/en/kdvi/common
|
||||
share/doc/HTML/en/kdvi/index.cache.bz2
|
||||
share/doc/HTML/en/kdvi/index.docbook
|
||||
share/doc/HTML/en/kdvi/kdvi-search.el
|
||||
share/doc/HTML/en/kdvi/optionrequester1.png
|
||||
share/doc/HTML/en/kdvi/optionrequester2.png
|
||||
share/doc/HTML/en/kdvi/srcltx.sty
|
||||
share/doc/HTML/en/kdvi/srctex.sty
|
||||
share/doc/HTML/en/kghostview/common
|
||||
share/doc/HTML/en/kghostview/index.cache.bz2
|
||||
share/doc/HTML/en/kghostview/index.docbook
|
||||
share/doc/HTML/en/kiconedit/common
|
||||
share/doc/HTML/en/kiconedit/index.cache.bz2
|
||||
share/doc/HTML/en/kiconedit/index.docbook
|
||||
share/doc/HTML/en/kooka/common
|
||||
share/doc/HTML/en/kooka/index.cache.bz2
|
||||
share/doc/HTML/en/kooka/index.docbook
|
||||
share/doc/HTML/en/kooka/kooka_gocr.png
|
||||
share/doc/HTML/en/kooka/kooka_gocr_result.png
|
||||
share/doc/HTML/en/kooka/kooka_mainctrl.png
|
||||
share/doc/HTML/en/kooka/ocr-select.png
|
||||
share/doc/HTML/en/kooka/shortcut0.png
|
||||
share/doc/HTML/en/kooka/shortcut1.png
|
||||
share/doc/HTML/en/kooka/toolbar.png
|
||||
share/doc/HTML/en/kooka/toolbar1.png
|
||||
share/doc/HTML/en/kooka/toolbar2.png
|
||||
share/doc/HTML/en/kpaint/common
|
||||
share/doc/HTML/en/kpaint/index.cache.bz2
|
||||
share/doc/HTML/en/kpaint/index.docbook
|
||||
share/doc/HTML/en/kpovmodeler/cameraview.png
|
||||
share/doc/HTML/en/kpovmodeler/common
|
||||
share/doc/HTML/en/kpovmodeler/controlpoints.png
|
||||
share/doc/HTML/en/kpovmodeler/cr22-action-pmcamera.png
|
||||
share/doc/HTML/en/kpovmodeler/cr22-action-pmcolorlist.png
|
||||
share/doc/HTML/en/kpovmodeler/cr22-action-pmfinish.png
|
||||
share/doc/HTML/en/kpovmodeler/cr22-action-pminterior.png
|
||||
share/doc/HTML/en/kpovmodeler/cr22-action-pmlight.png
|
||||
share/doc/HTML/en/kpovmodeler/cr22-action-pmpigment.png
|
||||
share/doc/HTML/en/kpovmodeler/cr22-action-pmplane.png
|
||||
share/doc/HTML/en/kpovmodeler/cr22-action-pmrender.png
|
||||
share/doc/HTML/en/kpovmodeler/cr22-action-pmsolidcolor.png
|
||||
share/doc/HTML/en/kpovmodeler/cr22-action-pmsphere.png
|
||||
share/doc/HTML/en/kpovmodeler/defaultviewlayout.png
|
||||
share/doc/HTML/en/kpovmodeler/dockwidget.png
|
||||
share/doc/HTML/en/kpovmodeler/dockwidgettab.png
|
||||
share/doc/HTML/en/kpovmodeler/index.cache.bz2
|
||||
share/doc/HTML/en/kpovmodeler/index.docbook
|
||||
share/doc/HTML/en/kpovmodeler/insertaspopup.png
|
||||
share/doc/HTML/en/kpovmodeler/objectpropertiesview.png
|
||||
share/doc/HTML/en/kpovmodeler/objecttree.png
|
||||
share/doc/HTML/en/kpovmodeler/rendericon.png
|
||||
share/doc/HTML/en/kpovmodeler/rendermodeoutput.png
|
||||
share/doc/HTML/en/kpovmodeler/rendermodequality.png
|
||||
share/doc/HTML/en/kpovmodeler/rendermodesize.png
|
||||
share/doc/HTML/en/kpovmodeler/rendermodesselection.png
|
||||
share/doc/HTML/en/kpovmodeler/rendermodestoolbar.png
|
||||
share/doc/HTML/en/kpovmodeler/rendersettingsicon.png
|
||||
share/doc/HTML/en/kpovmodeler/renderwindow.png
|
||||
share/doc/HTML/en/kpovmodeler/texturepreview.png
|
||||
share/doc/HTML/en/kpovmodeler/topview.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-camera-dialog.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-camera-graphic.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-final-render.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-ground-color-list.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-ground-pigment.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-ground-render.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-ground-solid-color-1.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-ground-solid-color-2.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-ground-wrong-colors-render.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-light-dialog.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-light-graphic.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-plane-dialog.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-plane-graphic.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-plane-tree-expanded.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-plane-tree-translate.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-sphere-dialog.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-sphere-finish-dialog.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-sphere-render-finish.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-sphere-render-nocolor.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-sphere-render-solidcolor.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-sphere-solid-color.png
|
||||
share/doc/HTML/en/kruler/common
|
||||
share/doc/HTML/en/kruler/index.cache.bz2
|
||||
share/doc/HTML/en/kruler/index.docbook
|
||||
share/doc/HTML/en/ksnapshot/common
|
||||
share/doc/HTML/en/ksnapshot/index.cache.bz2
|
||||
share/doc/HTML/en/ksnapshot/index.docbook
|
||||
share/doc/HTML/en/ksnapshot/preview.png
|
||||
share/doc/HTML/en/ksnapshot/window.png
|
||||
share/doc/HTML/en/kuickshow/common
|
||||
share/doc/HTML/en/kuickshow/index.cache.bz2
|
||||
share/doc/HTML/en/kuickshow/index.docbook
|
||||
share/doc/HTML/en/kuickshow/screenshot.png
|
||||
share/doc/HTML/en/kview/common
|
||||
share/doc/HTML/en/kview/index.cache.bz2
|
||||
share/doc/HTML/en/kview/index.docbook
|
||||
share/doc/HTML/en/kview/snapshot1.png
|
||||
share/doc/HTML/en/kview/snapshot2.png
|
||||
share/doc/HTML/en/kview/snapshot3.png
|
||||
share/doc/HTML/en/kview/snapshot4.png
|
||||
share/doc/HTML/en/kview/snapshot5.png
|
||||
share/doc/HTML/en/kview/snapshot6.png
|
||||
share/doc/HTML/en/kview/snapshot7.png
|
||||
share/doc/HTML/en/kview/snapshot8.png
|
||||
share/doc/HTML/en/kview/snapshot9.png
|
||||
share/icons/crystalsvg/128x128/apps/kghostview.png
|
||||
share/icons/crystalsvg/16x16/apps/kcoloredit.png
|
||||
share/icons/crystalsvg/16x16/apps/kdvi.png
|
||||
share/icons/crystalsvg/16x16/apps/kfax.png
|
||||
share/icons/crystalsvg/16x16/apps/kghostview.png
|
||||
share/icons/crystalsvg/16x16/apps/kiconedit.png
|
||||
share/icons/crystalsvg/16x16/apps/kpaint.png
|
||||
share/icons/crystalsvg/16x16/apps/kpovmodeler.png
|
||||
share/icons/crystalsvg/16x16/apps/kruler.png
|
||||
share/icons/crystalsvg/16x16/apps/ksnapshot.png
|
||||
share/icons/crystalsvg/16x16/apps/kview.png
|
||||
share/icons/crystalsvg/16x16/apps/kviewshell.png
|
||||
share/icons/crystalsvg/16x16/mimetypes/kpovmodeler_doc.png
|
||||
share/icons/crystalsvg/32x32/apps/kcoloredit.png
|
||||
share/icons/crystalsvg/32x32/apps/kdvi.png
|
||||
share/icons/crystalsvg/32x32/apps/kfax.png
|
||||
share/icons/crystalsvg/32x32/apps/kghostview.png
|
||||
share/icons/crystalsvg/32x32/apps/kiconedit.png
|
||||
share/icons/crystalsvg/32x32/apps/kpaint.png
|
||||
share/icons/crystalsvg/32x32/apps/kpovmodeler.png
|
||||
share/icons/crystalsvg/32x32/apps/kruler.png
|
||||
share/icons/crystalsvg/32x32/apps/ksnapshot.png
|
||||
share/icons/crystalsvg/32x32/apps/kview.png
|
||||
share/icons/crystalsvg/32x32/apps/kviewshell.png
|
||||
share/icons/crystalsvg/32x32/mimetypes/kpovmodeler_doc.png
|
||||
share/icons/crystalsvg/48x48/apps/kdvi.png
|
||||
share/icons/crystalsvg/48x48/apps/kfax.png
|
||||
share/icons/crystalsvg/48x48/apps/kghostview.png
|
||||
share/icons/crystalsvg/48x48/apps/kiconedit.png
|
||||
share/icons/crystalsvg/48x48/apps/kpaint.png
|
||||
share/icons/crystalsvg/48x48/apps/kruler.png
|
||||
share/icons/crystalsvg/48x48/apps/ksnapshot.png
|
||||
share/icons/crystalsvg/48x48/apps/kview.png
|
||||
share/icons/crystalsvg/48x48/apps/kviewshell.png
|
||||
share/icons/crystalsvg/64x64/apps/kghostview.png
|
||||
share/icons/locolor/16x16/apps/kcoloredit.png
|
||||
share/icons/locolor/16x16/apps/kpovmodeler.png
|
||||
share/icons/locolor/32x32/apps/kcoloredit.png
|
||||
share/icons/locolor/32x32/apps/kpovmodeler.png
|
||||
share/mimelnk/text/mrml.desktop
|
||||
share/services/kded/daemonwatcher.desktop
|
||||
share/services/kfile_bmp.desktop
|
||||
share/services/kfile_ico.desktop
|
||||
share/services/kfile_jpeg.desktop
|
||||
share/services/kfile_pdf.desktop
|
||||
share/services/kfile_png.desktop
|
||||
share/services/kfile_ps.desktop
|
||||
share/services/kfile_tga.desktop
|
||||
share/services/kfile_tiff.desktop
|
||||
share/services/kfile_xbm.desktop
|
||||
share/services/kviewcanvas.desktop
|
||||
share/services/kviewviewer.desktop
|
||||
share/services/mrml.protocol
|
||||
share/services/mrml_part.desktop
|
||||
share/servicetypes/kimageviewer.desktop
|
||||
share/servicetypes/kimageviewercanvas.desktop
|
88
graphics/kdegraphics3/files/plist.base.rm
Normal file
88
graphics/kdegraphics3/files/plist.base.rm
Normal file
|
@ -0,0 +1,88 @@
|
|||
@dirrm share/servicetypes
|
||||
@dirrm share/services/kded
|
||||
@dirrm share/services
|
||||
@dirrm share/mimelnk/text
|
||||
@dirrm share/mimelnk
|
||||
@dirrm share/icons/locolor/32x32/apps
|
||||
@dirrm share/icons/locolor/32x32
|
||||
@dirrm share/icons/locolor/16x16/apps
|
||||
@dirrm share/icons/locolor/16x16
|
||||
@dirrm share/icons/locolor
|
||||
@dirrm share/icons/crystalsvg/64x64/apps
|
||||
@dirrm share/icons/crystalsvg/64x64
|
||||
@dirrm share/icons/crystalsvg/48x48/apps
|
||||
@dirrm share/icons/crystalsvg/48x48
|
||||
@dirrm share/icons/crystalsvg/32x32/mimetypes
|
||||
@dirrm share/icons/crystalsvg/32x32/apps
|
||||
@dirrm share/icons/crystalsvg/32x32
|
||||
@dirrm share/icons/crystalsvg/16x16/mimetypes
|
||||
@dirrm share/icons/crystalsvg/16x16/apps
|
||||
@dirrm share/icons/crystalsvg/16x16
|
||||
@dirrm share/icons/crystalsvg/128x128/apps
|
||||
@dirrm share/icons/crystalsvg/128x128
|
||||
@dirrm share/icons/crystalsvg
|
||||
@dirrm share/icons
|
||||
@dirrm share/doc/HTML/en/kview
|
||||
@dirrm share/doc/HTML/en/kuickshow
|
||||
@dirrm share/doc/HTML/en/ksnapshot
|
||||
@dirrm share/doc/HTML/en/kruler
|
||||
@dirrm share/doc/HTML/en/kpovmodeler
|
||||
@dirrm share/doc/HTML/en/kpaint
|
||||
@dirrm share/doc/HTML/en/kooka
|
||||
@dirrm share/doc/HTML/en/kiconedit
|
||||
@dirrm share/doc/HTML/en/kghostview
|
||||
@dirrm share/doc/HTML/en/kdvi
|
||||
@dirrm share/doc/HTML/en/kcoloredit
|
||||
@dirrm share/doc/HTML/en/kamera
|
||||
@dirrm share/doc/HTML/en
|
||||
@dirrm share/doc/HTML
|
||||
@dirrm share/doc
|
||||
@dirrm share/apps/kviewviewer/kpartplugins
|
||||
@dirrm share/apps/kviewviewer
|
||||
@dirrm share/apps/kviewshell
|
||||
@dirrm share/apps/kviewerpart
|
||||
@dirrm share/apps/kview/kpartplugins
|
||||
@dirrm share/apps/kview
|
||||
@dirrm share/apps/kruler/sounds
|
||||
@dirrm share/apps/kruler/pics
|
||||
@dirrm share/apps/kruler
|
||||
@dirrm share/apps/kpovmodeler/icons/locolor/16x16/actions
|
||||
@dirrm share/apps/kpovmodeler/icons/locolor/16x16
|
||||
@dirrm share/apps/kpovmodeler/icons/locolor
|
||||
@dirrm share/apps/kpovmodeler/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/apps/kpovmodeler/icons/crystalsvg/22x22
|
||||
@dirrm share/apps/kpovmodeler/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/kpovmodeler/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/kpovmodeler/icons/crystalsvg
|
||||
@dirrm share/apps/kpovmodeler/icons
|
||||
@dirrm share/apps/kpovmodeler/examples/scenes/objects
|
||||
@dirrm share/apps/kpovmodeler/examples/scenes/lights
|
||||
@dirrm share/apps/kpovmodeler/examples/scenes/interior
|
||||
@dirrm share/apps/kpovmodeler/examples/scenes/csg
|
||||
@dirrm share/apps/kpovmodeler/examples/scenes/advanced
|
||||
@dirrm share/apps/kpovmodeler/examples/scenes
|
||||
@dirrm share/apps/kpovmodeler/examples/includes/original
|
||||
@dirrm share/apps/kpovmodeler/examples/includes/inlined
|
||||
@dirrm share/apps/kpovmodeler/examples/includes
|
||||
@dirrm share/apps/kpovmodeler/examples
|
||||
@dirrm share/apps/kpovmodeler
|
||||
@dirrm share/apps/kpaint/toolbar
|
||||
@dirrm share/apps/kpaint
|
||||
@dirrm share/apps/konqueror/servicemenus
|
||||
@dirrm share/apps/konqueror
|
||||
@dirrm share/apps/kiconedit/toolbar
|
||||
@dirrm share/apps/kiconedit/pics
|
||||
@dirrm share/apps/kiconedit
|
||||
@dirrm share/apps/kghostview
|
||||
@dirrm share/apps/kfax/pics
|
||||
@dirrm share/apps/kfax
|
||||
@dirrm share/apps/kdvi/toolbar
|
||||
@dirrm share/apps/kdvi
|
||||
@dirrm share/apps/kcoloredit
|
||||
@dirrm share/apps
|
||||
@dirrm share/applnk/Settings/System
|
||||
@dirrm share/applnk/Settings
|
||||
@dirrm share/applnk/Graphics/More
|
||||
@dirrm share/applnk/Graphics
|
||||
@dirrm share/applnk
|
||||
@dirrm lib/kde3
|
11
graphics/kdegraphics3/files/plist.gphoto2
Normal file
11
graphics/kdegraphics3/files/plist.gphoto2
Normal file
|
@ -0,0 +1,11 @@
|
|||
lib/kde3/kcm_kamera.la
|
||||
lib/kde3/kcm_kamera.so
|
||||
lib/kde3/kio_kamera.la
|
||||
lib/kde3/kio_kamera.so
|
||||
share/applnk/Settings/Peripherals/kamera.desktop
|
||||
share/icons/crystalsvg/16x16/actions/camera_test.png
|
||||
share/icons/crystalsvg/16x16/apps/camera.png
|
||||
share/icons/crystalsvg/16x16/devices/camera.png
|
||||
share/icons/crystalsvg/32x32/devices/camera.png
|
||||
share/icons/crystalsvg/32x32/filesystems/camera.png
|
||||
share/services/kamera.protocol
|
0
graphics/kdegraphics3/files/plist.gphoto2.rm
Normal file
0
graphics/kdegraphics3/files/plist.gphoto2.rm
Normal file
18
graphics/kdegraphics3/files/plist.imlib
Normal file
18
graphics/kdegraphics3/files/plist.imlib
Normal file
|
@ -0,0 +1,18 @@
|
|||
bin/kuickshow
|
||||
lib/kuickshow.la
|
||||
lib/kuickshow.so
|
||||
share/applnk/Graphics/kuickshow.desktop
|
||||
share/apps/kuickshow/im_palette.pal
|
||||
share/apps/kuickshow/pics/about.png
|
||||
share/apps/kuickshow/pics/calibrate.png
|
||||
share/apps/kuickshow/pics/handcursor.png
|
||||
share/apps/kuickshow/pics/imageviewer-medium.png
|
||||
share/apps/kuickshow/pics/imageviewer-small.png
|
||||
share/apps/kuickshow/pics/ksslide.png
|
||||
share/apps/kuickshow/pics/kuickshow-day.jpg
|
||||
share/apps/kuickshow/pics/kuickshow-night.jpg
|
||||
share/apps/kuickshow/pics/logo.png
|
||||
share/icons/crystalsvg/16x16/apps/kuickshow.png
|
||||
share/icons/crystalsvg/32x32/apps/kuickshow.png
|
||||
share/icons/locolor/16x16/apps/kuickshow.png
|
||||
share/icons/locolor/32x32/apps/kuickshow.png
|
2
graphics/kdegraphics3/files/plist.imlib.rm
Normal file
2
graphics/kdegraphics3/files/plist.imlib.rm
Normal file
|
@ -0,0 +1,2 @@
|
|||
@dirrm share/apps/kuickshow/pics
|
||||
@dirrm share/apps/kuickshow
|
37
graphics/kdegraphics3/files/plist.sane
Normal file
37
graphics/kdegraphics3/files/plist.sane
Normal file
|
@ -0,0 +1,37 @@
|
|||
bin/kooka
|
||||
include/devselector.h
|
||||
include/dispgamma.h
|
||||
include/gammadialog.h
|
||||
include/img_canvas.h
|
||||
include/imgscaledialog.h
|
||||
include/kgammatable.h
|
||||
include/kscandevice.h
|
||||
include/kscanoption.h
|
||||
include/kscanoptset.h
|
||||
include/kscanslider.h
|
||||
include/massscandialog.h
|
||||
include/previewer.h
|
||||
include/scanparams.h
|
||||
include/scansourcedialog.h
|
||||
include/sizeindicator.h
|
||||
lib/libkscan.la
|
||||
lib/libkscan.so
|
||||
lib/libkscan.so.1
|
||||
share/applnk/Graphics/kooka.desktop
|
||||
share/apps/kooka/kookaui.rc
|
||||
share/apps/kooka/pics/mirror-both.png
|
||||
share/apps/kooka/pics/mirror-horiz.png
|
||||
share/apps/kooka/pics/mirror-vert.png
|
||||
share/apps/kooka/pics/newfromselect.png
|
||||
share/apps/kooka/pics/ocr-select.png
|
||||
share/apps/kooka/pics/ocr.png
|
||||
share/apps/kooka/pics/scaleorig.png
|
||||
share/apps/kooka/pics/scaletoheight.png
|
||||
share/apps/kooka/pics/scaletowidth.png
|
||||
share/apps/kooka/pics/thumbviewtile.png
|
||||
share/config/kookarc
|
||||
share/icons/crystalsvg/16x16/actions/palette_color.png
|
||||
share/icons/crystalsvg/16x16/actions/palette_gray.png
|
||||
share/icons/crystalsvg/16x16/actions/palette_halftone.png
|
||||
share/icons/crystalsvg/16x16/actions/palette_lineart.png
|
||||
share/services/scanservice.desktop
|
8
graphics/kdegraphics3/files/plist.sane.rm
Normal file
8
graphics/kdegraphics3/files/plist.sane.rm
Normal file
|
@ -0,0 +1,8 @@
|
|||
@dirrm share/icons/crystalsvg/32x32/filesystems
|
||||
@dirrm share/icons/crystalsvg/32x32/devices
|
||||
@dirrm share/icons/crystalsvg/16x16/devices
|
||||
@dirrm share/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/config
|
||||
@dirrm share/apps/kooka/pics
|
||||
@dirrm share/apps/kooka
|
||||
@dirrm share/applnk/Settings/Peripherals
|
|
@ -1,316 +0,0 @@
|
|||
bin/kcolorchooser
|
||||
bin/kcoloredit
|
||||
bin/kdvi
|
||||
bin/kfax
|
||||
bin/kfract
|
||||
bin/kghostview
|
||||
bin/kiconedit
|
||||
%%SANE%%bin/kooka
|
||||
bin/kpaint
|
||||
bin/kruler
|
||||
bin/ksnapshot
|
||||
%%IMLIB%%bin/kuickshow
|
||||
bin/kview
|
||||
bin/kviewshell
|
||||
%%SANE%%include/devselector.h
|
||||
%%SANE%%include/dispgamma.h
|
||||
%%SANE%%include/gammadialog.h
|
||||
%%SANE%%include/img_canvas.h
|
||||
%%SANE%%include/imgscaledialog.h
|
||||
%%SANE%%include/kgammatable.h
|
||||
include/kmultipageInterface.h
|
||||
%%SANE%%include/kscandevice.h
|
||||
%%SANE%%include/kscanoption.h
|
||||
%%SANE%%include/kscanoptset.h
|
||||
%%SANE%%include/kscanslider.h
|
||||
%%SANE%%include/massscandialog.h
|
||||
%%SANE%%include/previewer.h
|
||||
%%SANE%%include/scanparams.h
|
||||
%%SANE%%include/scansourcedialog.h
|
||||
%%SANE%%include/sizeindicator.h
|
||||
lib/kcolorchooser.la
|
||||
lib/kcolorchooser.so
|
||||
lib/kde3/kfile_pdf.la
|
||||
lib/kde3/kfile_pdf.so
|
||||
lib/kde3/kfile_png.la
|
||||
lib/kde3/kfile_png.so
|
||||
lib/kde3/kfile_ps.la
|
||||
lib/kde3/kfile_ps.so
|
||||
%%KAMERA%%lib/kde3/kio_kamera.la
|
||||
%%KAMERA%%lib/kde3/kio_kamera.so
|
||||
%%KAMERA%%lib/kde3/libkcm_kamera.la
|
||||
%%KAMERA%%lib/kde3/libkcm_kamera.so
|
||||
%%IMLIB%%lib/kuickshow.la
|
||||
%%IMLIB%%lib/kuickshow.so
|
||||
lib/kview.la
|
||||
lib/kview.so
|
||||
lib/libkdvi.la
|
||||
lib/libkdvi.so
|
||||
lib/libkfax.la
|
||||
lib/libkfax.so
|
||||
lib/libkghostview.la
|
||||
lib/libkghostview.so
|
||||
lib/libkmultipage.la
|
||||
lib/libkmultipage.so
|
||||
lib/libkmultipage.so.0
|
||||
lib/libkpagetest.la
|
||||
lib/libkpagetest.so
|
||||
%%SANE%%lib/libkscan.la
|
||||
%%SANE%%lib/libkscan.so
|
||||
%%SANE%%lib/libkscan.so.1
|
||||
lib/libkviewerpart.la
|
||||
lib/libkviewerpart.so
|
||||
lib/libkviewpart.la
|
||||
lib/libkviewpart.so
|
||||
share/applnk/Graphics/kcolorchooser.desktop
|
||||
share/applnk/Graphics/kcoloredit.desktop
|
||||
share/applnk/Graphics/kdvi.desktop
|
||||
share/applnk/Graphics/kfax.desktop
|
||||
share/applnk/Graphics/kfract.desktop
|
||||
share/applnk/Graphics/kghostview.desktop
|
||||
share/applnk/Graphics/kiconedit.desktop
|
||||
%%SANE%%share/applnk/Graphics/kooka.desktop
|
||||
share/applnk/Graphics/kpaint.desktop
|
||||
share/applnk/Graphics/kruler.desktop
|
||||
share/applnk/Graphics/ksnapshot.desktop
|
||||
%%IMLIB%%share/applnk/Graphics/kuickshow.desktop
|
||||
share/applnk/Graphics/kview.desktop
|
||||
%%KAMERA%%share/applnk/Settings/Peripherals/kamera.desktop
|
||||
share/apps/kdvi/kdvi_part.rc
|
||||
share/apps/kdvi/tips
|
||||
share/apps/kdvi/toolbar/forwpage.xpm
|
||||
share/apps/kdvi/toolbar/largetext.xpm
|
||||
share/apps/kdvi/toolbar/smalltext.xpm
|
||||
share/apps/kfax/kfax_part.rc
|
||||
share/apps/kfax/pics/kfax.tif
|
||||
share/apps/kfax/pics/kfaxlogo.xpm
|
||||
share/apps/kfract/kfract.rc
|
||||
share/apps/kghostview/kghostviewui.rc
|
||||
share/apps/kghostview/kgv_part.rc
|
||||
share/apps/kghostview/pdf_sec.ps
|
||||
share/apps/kiconedit/pics/compressed.png
|
||||
share/apps/kiconedit/pics/source.png
|
||||
share/apps/kiconedit/pics/standard.png
|
||||
share/apps/kiconedit/toolbar/aim-cursor.xpm
|
||||
share/apps/kiconedit/toolbar/aim.png
|
||||
share/apps/kiconedit/toolbar/areaselect.png
|
||||
share/apps/kiconedit/toolbar/circle.png
|
||||
share/apps/kiconedit/toolbar/ellipse.png
|
||||
share/apps/kiconedit/toolbar/eraser-cursor.xpm
|
||||
share/apps/kiconedit/toolbar/fileclose.png
|
||||
share/apps/kiconedit/toolbar/filledcircle.png
|
||||
share/apps/kiconedit/toolbar/filledellipse.png
|
||||
share/apps/kiconedit/toolbar/filledrectangle.png
|
||||
share/apps/kiconedit/toolbar/flood-cursor.xpm
|
||||
share/apps/kiconedit/toolbar/flood.png
|
||||
share/apps/kiconedit/toolbar/grayscale.png
|
||||
share/apps/kiconedit/toolbar/grid.png
|
||||
share/apps/kiconedit/toolbar/kdepalette.png
|
||||
share/apps/kiconedit/toolbar/line.png
|
||||
share/apps/kiconedit/toolbar/newwin.png
|
||||
share/apps/kiconedit/toolbar/paintbrush-cursor.xpm
|
||||
share/apps/kiconedit/toolbar/paintbrush.png
|
||||
share/apps/kiconedit/toolbar/pointer.png
|
||||
share/apps/kiconedit/toolbar/rectangle.png
|
||||
share/apps/kiconedit/toolbar/selectcircle.png
|
||||
share/apps/kiconedit/toolbar/selectrect.png
|
||||
share/apps/kiconedit/toolbar/spraycan-cursor.xpm
|
||||
share/apps/kiconedit/toolbar/spraycan.png
|
||||
share/apps/kiconedit/toolbar/transform.png
|
||||
%%SANE%%share/apps/kooka/kookaui.rc
|
||||
%%SANE%%share/apps/kooka/pics/mirror-both.png
|
||||
%%SANE%%share/apps/kooka/pics/mirror-horiz.png
|
||||
%%SANE%%share/apps/kooka/pics/mirror-vert.png
|
||||
%%SANE%%share/apps/kooka/pics/newfromselect.png
|
||||
%%SANE%%share/apps/kooka/pics/ocr-select.png
|
||||
%%SANE%%share/apps/kooka/pics/ocr.png
|
||||
%%SANE%%share/apps/kooka/pics/scaleorig.png
|
||||
%%SANE%%share/apps/kooka/pics/scaletoheight.png
|
||||
%%SANE%%share/apps/kooka/pics/scaletowidth.png
|
||||
share/apps/kpaint/kpaint.rc
|
||||
share/apps/kpaint/toolbar/areaselect.xpm
|
||||
share/apps/kpaint/toolbar/brush.xpm
|
||||
share/apps/kpaint/toolbar/circle.xpm
|
||||
share/apps/kpaint/toolbar/ellipse.xpm
|
||||
share/apps/kpaint/toolbar/largetext.xpm
|
||||
share/apps/kpaint/toolbar/line.xpm
|
||||
share/apps/kpaint/toolbar/pen.xpm
|
||||
share/apps/kpaint/toolbar/rectangle.xpm
|
||||
share/apps/kpaint/toolbar/roundangle.xpm
|
||||
share/apps/kpaint/toolbar/spraycan.xpm
|
||||
share/apps/kruler/eventsrc
|
||||
share/apps/kruler/kruler-east.png
|
||||
share/apps/kruler/kruler-north.png
|
||||
share/apps/kruler/kruler-south.png
|
||||
share/apps/kruler/kruler-west.png
|
||||
share/apps/kruler/move.wav
|
||||
%%IMLIB%%share/apps/kuickshow/im_palette.pal
|
||||
%%IMLIB%%share/apps/kuickshow/pics/about.png
|
||||
%%IMLIB%%share/apps/kuickshow/pics/calibrate.png
|
||||
%%IMLIB%%share/apps/kuickshow/pics/handcursor.png
|
||||
%%IMLIB%%share/apps/kuickshow/pics/imageviewer-medium.png
|
||||
%%IMLIB%%share/apps/kuickshow/pics/imageviewer-small.png
|
||||
%%IMLIB%%share/apps/kuickshow/pics/ksslide.png
|
||||
%%IMLIB%%share/apps/kuickshow/pics/kuickshow-day.jpg
|
||||
%%IMLIB%%share/apps/kuickshow/pics/kuickshow-night.jpg
|
||||
%%IMLIB%%share/apps/kuickshow/pics/logo.png
|
||||
share/apps/kview/kview_part.rc
|
||||
share/apps/kview/kview_popup.rc
|
||||
share/apps/kview/kviewui.rc
|
||||
share/apps/kview/toolbar/rotate.png
|
||||
share/apps/kviewerpart/kviewerpart.rc
|
||||
share/apps/kviewshell/kviewshell.rc
|
||||
share/apps/kviewshell/paper-formats
|
||||
share/doc/HTML/en/kcoloredit/common
|
||||
share/doc/HTML/en/kcoloredit/index.cache.bz2
|
||||
share/doc/HTML/en/kcoloredit/index.docbook
|
||||
share/doc/HTML/en/kdvi/KDVI-features.dvi
|
||||
share/doc/HTML/en/kdvi/KDVI-features.tex
|
||||
share/doc/HTML/en/kdvi/aboutkde.ps
|
||||
share/doc/HTML/en/kdvi/common
|
||||
share/doc/HTML/en/kdvi/index.cache.bz2
|
||||
share/doc/HTML/en/kdvi/index.docbook
|
||||
share/doc/HTML/en/kdvi/kdvi-search.el
|
||||
share/doc/HTML/en/kdvi/optionrequester1.png
|
||||
share/doc/HTML/en/kdvi/optionrequester2.png
|
||||
share/doc/HTML/en/kdvi/srcltx.sty
|
||||
share/doc/HTML/en/kdvi/srctex.sty
|
||||
share/doc/HTML/en/kfract/common
|
||||
share/doc/HTML/en/kfract/index.cache.bz2
|
||||
share/doc/HTML/en/kfract/index.docbook
|
||||
share/doc/HTML/en/kfract/kfract.png
|
||||
share/doc/HTML/en/kghostview/common
|
||||
share/doc/HTML/en/kghostview/index.cache.bz2
|
||||
share/doc/HTML/en/kghostview/index.docbook
|
||||
share/doc/HTML/en/kiconedit/common
|
||||
share/doc/HTML/en/kiconedit/index.cache.bz2
|
||||
share/doc/HTML/en/kiconedit/index.docbook
|
||||
share/doc/HTML/en/kooka/common
|
||||
share/doc/HTML/en/kooka/index.cache.bz2
|
||||
share/doc/HTML/en/kooka/index.docbook
|
||||
share/doc/HTML/en/kooka/kooka_gocr.png
|
||||
share/doc/HTML/en/kooka/kooka_gocr_result.png
|
||||
share/doc/HTML/en/kooka/kooka_mainctrl.png
|
||||
share/doc/HTML/en/kpaint/common
|
||||
share/doc/HTML/en/kpaint/index.cache.bz2
|
||||
share/doc/HTML/en/kpaint/index.docbook
|
||||
share/doc/HTML/en/kruler/common
|
||||
share/doc/HTML/en/kruler/index.cache.bz2
|
||||
share/doc/HTML/en/kruler/index.docbook
|
||||
share/doc/HTML/en/ksnapshot/common
|
||||
share/doc/HTML/en/ksnapshot/index.cache.bz2
|
||||
share/doc/HTML/en/ksnapshot/index.docbook
|
||||
share/doc/HTML/en/ksnapshot/preview.png
|
||||
share/doc/HTML/en/ksnapshot/window.png
|
||||
share/doc/HTML/en/kuickshow/common
|
||||
share/doc/HTML/en/kuickshow/index.cache.bz2
|
||||
share/doc/HTML/en/kuickshow/index.docbook
|
||||
share/doc/HTML/en/kview/common
|
||||
share/doc/HTML/en/kview/index.cache.bz2
|
||||
share/doc/HTML/en/kview/index.docbook
|
||||
share/doc/HTML/en/kview/snapshot1.png
|
||||
share/doc/HTML/en/kview/snapshot2.png
|
||||
share/doc/HTML/en/kview/snapshot3.png
|
||||
share/doc/HTML/en/kview/snapshot4.png
|
||||
share/doc/HTML/en/kview/snapshot5.png
|
||||
share/doc/HTML/en/kview/snapshot6.png
|
||||
share/doc/HTML/en/kview/snapshot7.png
|
||||
share/doc/HTML/en/kview/snapshot8.png
|
||||
share/doc/HTML/en/kview/snapshot9.png
|
||||
%%SANE%%share/icons/hicolor/16x16/actions/palette_color.png
|
||||
%%SANE%%share/icons/hicolor/16x16/actions/palette_gray.png
|
||||
%%SANE%%share/icons/hicolor/16x16/actions/palette_halftone.png
|
||||
%%SANE%%share/icons/hicolor/16x16/actions/palette_lineart.png
|
||||
share/icons/hicolor/16x16/apps/kcoloredit.png
|
||||
share/icons/hicolor/16x16/apps/kdvi.png
|
||||
share/icons/hicolor/16x16/apps/kfax.png
|
||||
share/icons/hicolor/16x16/apps/kfract.png
|
||||
share/icons/hicolor/16x16/apps/kghostview.png
|
||||
share/icons/hicolor/16x16/apps/kiconedit.png
|
||||
share/icons/hicolor/16x16/apps/kpaint.png
|
||||
share/icons/hicolor/16x16/apps/kruler.png
|
||||
share/icons/hicolor/16x16/apps/ksnapshot.png
|
||||
%%IMLIB%%share/icons/hicolor/16x16/apps/kuickshow.png
|
||||
share/icons/hicolor/16x16/apps/kview.png
|
||||
share/icons/hicolor/16x16/apps/kviewshell.png
|
||||
%%KAMERA%%share/icons/hicolor/16x16/devices/camera.png
|
||||
share/icons/hicolor/32x32/apps/kcoloredit.png
|
||||
share/icons/hicolor/32x32/apps/kdvi.png
|
||||
share/icons/hicolor/32x32/apps/kfax.png
|
||||
share/icons/hicolor/32x32/apps/kfract.png
|
||||
share/icons/hicolor/32x32/apps/kghostview.png
|
||||
share/icons/hicolor/32x32/apps/kiconedit.png
|
||||
share/icons/hicolor/32x32/apps/kpaint.png
|
||||
share/icons/hicolor/32x32/apps/kruler.png
|
||||
share/icons/hicolor/32x32/apps/ksnapshot.png
|
||||
%%IMLIB%%share/icons/hicolor/32x32/apps/kuickshow.png
|
||||
share/icons/hicolor/32x32/apps/kview.png
|
||||
%%KAMERA%%share/icons/hicolor/32x32/devices/camera.png
|
||||
%%KAMERA%%share/icons/hicolor/32x32/filesystems/camera.png
|
||||
share/icons/hicolor/32x32/apps/kviewshell.png
|
||||
share/icons/hicolor/48x48/apps/kdvi.png
|
||||
share/icons/hicolor/48x48/apps/kfax.png
|
||||
share/icons/hicolor/48x48/apps/kfract.png
|
||||
share/icons/hicolor/48x48/apps/kghostview.png
|
||||
share/icons/hicolor/48x48/apps/kiconedit.png
|
||||
share/icons/hicolor/48x48/apps/kpaint.png
|
||||
share/icons/hicolor/48x48/apps/kruler.png
|
||||
share/icons/hicolor/48x48/apps/ksnapshot.png
|
||||
share/icons/hicolor/48x48/apps/kview.png
|
||||
share/icons/hicolor/48x48/apps/kviewshell.png
|
||||
share/icons/locolor/16x16/apps/kcoloredit.png
|
||||
%%IMLIB%%share/icons/locolor/16x16/apps/kuickshow.png
|
||||
share/icons/locolor/32x32/apps/kcoloredit.png
|
||||
%%IMLIB%%share/icons/locolor/32x32/apps/kuickshow.png
|
||||
%%KAMERA%%share/services/kamera.protocol
|
||||
share/services/kfile_pdf.desktop
|
||||
share/services/kfile_png.desktop
|
||||
share/services/kfile_ps.desktop
|
||||
%%SANE%%share/services/scanservice.desktop
|
||||
@comment directories
|
||||
@dirrm share/services
|
||||
@dirrm share/icons/locolor/32x32/apps
|
||||
@dirrm share/icons/locolor/32x32
|
||||
@dirrm share/icons/locolor/16x16/apps
|
||||
@dirrm share/icons/locolor/16x16
|
||||
@dirrm share/icons/locolor
|
||||
@dirrm share/icons/hicolor/48x48/apps
|
||||
%%KAMERA%%@dirrm share/icons/hicolor/32x32/filesystems
|
||||
%%KAMERA%%@dirrm share/icons/hicolor/32x32/devices
|
||||
@dirrm share/icons/hicolor/32x32/apps
|
||||
%%KAMERA%%@dirrm share/icons/hicolor/16x16/devices
|
||||
@dirrm share/doc/HTML/en/kview
|
||||
@dirrm share/doc/HTML/en/kuickshow
|
||||
@dirrm share/doc/HTML/en/ksnapshot
|
||||
@dirrm share/doc/HTML/en/kruler
|
||||
@dirrm share/doc/HTML/en/kpaint
|
||||
@dirrm share/doc/HTML/en/kooka
|
||||
@dirrm share/doc/HTML/en/kiconedit
|
||||
@dirrm share/doc/HTML/en/kghostview
|
||||
@dirrm share/doc/HTML/en/kfract
|
||||
@dirrm share/doc/HTML/en/kdvi
|
||||
@dirrm share/doc/HTML/en/kcoloredit
|
||||
@dirrm share/apps/kviewshell
|
||||
@dirrm share/apps/kviewerpart
|
||||
@dirrm share/apps/kview/toolbar
|
||||
@dirrm share/apps/kview
|
||||
%%IMLIB%%@dirrm share/apps/kuickshow/pics
|
||||
%%IMLIB%%@dirrm share/apps/kuickshow
|
||||
@dirrm share/apps/kruler
|
||||
@dirrm share/apps/kpaint/toolbar
|
||||
@dirrm share/apps/kpaint
|
||||
%%SANE%%@dirrm share/apps/kooka/pics
|
||||
%%SANE%%@dirrm share/apps/kooka
|
||||
@dirrm share/apps/kiconedit/toolbar
|
||||
@dirrm share/apps/kiconedit/pics
|
||||
@dirrm share/apps/kiconedit
|
||||
@dirrm share/apps/kghostview
|
||||
@dirrm share/apps/kfract
|
||||
@dirrm share/apps/kfax/pics
|
||||
@dirrm share/apps/kfax
|
||||
@dirrm share/apps/kdvi/toolbar
|
||||
@dirrm share/apps/kdvi
|
||||
%%KAMERA%%@dirrm share/applnk/Settings/Peripherals
|
||||
%%KAMERA%%@dirrm share/applnk/Settings
|
||||
@dirrm share/applnk/Graphics
|
||||
@dirrm share/applnk
|
|
@ -1,3 +1,4 @@
|
|||
# -*-mode: makefile-*-
|
||||
# New ports collection makefile for: KDE3 Graphics
|
||||
# Date created: Saturday 2 September 2000
|
||||
# Whom: Will Andrews <will@FreeBSD.org>
|
||||
|
@ -15,37 +16,39 @@ DIST_SUBDIR= KDE
|
|||
MAINTAINER= kde@FreeBSD.org
|
||||
|
||||
USE_KDELIBS_VER=3
|
||||
PREFIX= ${KDE_PREFIX}
|
||||
KDE_BUILD_PLIST=yes
|
||||
|
||||
USE_BZIP2= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GMAKE= yes
|
||||
|
||||
INSTALLS_SHLIB= yes
|
||||
LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3
|
||||
|
||||
.if defined(WITH_IMLIB) || defined(KDE_WITH_IMLIB)
|
||||
USE_GNOMENG= yes
|
||||
USE_GNOME= imlib
|
||||
PLIST_SUB+= IMLIB=""
|
||||
CONFIGURE_ARGS+= --with-imlib-config=${X11BASE}/bin
|
||||
PLIST_APPEND+= plist.imlib
|
||||
CONFIGURE_ARGS+=--with-imlib-config=${X11BASE}/bin
|
||||
.else
|
||||
WITHOUT_IMLIB= yes
|
||||
PLIST_SUB+= IMLIB="@comment "
|
||||
CONFIGURE_ARGS+= --without-imlib-config
|
||||
.endif
|
||||
CONFIGURE_ARGS+=--without-imlib-config
|
||||
.endif # defined(WITH_IMLIB) || defined(KDE_WITH_IMLIB)
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
GPHOTO2_CONFIG= ${LOCALBASE}/bin/gphoto2-config
|
||||
|
||||
.if exists(${GPHOTO2_CONFIG})
|
||||
WITH_GPHOTO2?= yes
|
||||
.endif
|
||||
.endif # exists(${GPHOTO2_CONFIG})
|
||||
|
||||
.if defined(WITH_GPHOTO2) && ${WITH_GPHOTO2} == yes
|
||||
.if defined(WITH_GPHOTO2)
|
||||
LIB_DEPENDS+= gphoto2.2:${PORTSDIR}/graphics/gphoto2
|
||||
PLIST_SUB+= KAMERA=""
|
||||
PLIST_APPEND+= plist.gphoto2
|
||||
.else
|
||||
PLIST_SUB+= KAMERA="@comment "
|
||||
pre-everything::
|
||||
@${ECHO_MSG}
|
||||
@${ECHO_MSG} "======================================================="
|
||||
|
@ -53,19 +56,18 @@ pre-everything::
|
|||
@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_GPHOTO2=yes\""
|
||||
@${ECHO_MSG} "======================================================="
|
||||
@${ECHO_MSG}
|
||||
.endif
|
||||
.endif # defined(WITH_GPHOTO2)
|
||||
|
||||
SANE_CONFIG= ${LOCALBASE}/bin/sane-config
|
||||
|
||||
.if exists(${SANE_CONFIG})
|
||||
WITH_SANE?= yes
|
||||
.endif
|
||||
.endif # exists(${SANE_CONFIG})
|
||||
|
||||
.if defined(WITH_SANE) && ${WITH_SANE} == yes
|
||||
.if defined(WITH_SANE)
|
||||
LIB_DEPENDS+= sane.1:${PORTSDIR}/graphics/sane-backends
|
||||
PLIST_SUB+= SANE=""
|
||||
PLIST_APPEND+= plist.sane
|
||||
.else
|
||||
PLIST_SUB+= SANE="@comment "
|
||||
pre-everything::
|
||||
@${ECHO_MSG}
|
||||
@${ECHO_MSG} "======================================================="
|
||||
|
@ -73,6 +75,6 @@ pre-everything::
|
|||
@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_SANE=yes\""
|
||||
@${ECHO_MSG} "======================================================="
|
||||
@${ECHO_MSG}
|
||||
.endif
|
||||
.endif # defined(WITH_SANE)
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (KDE/kdegraphics-3.0.4.tar.bz2) = 6065219c825102c843ba582c4a520cac
|
||||
MD5 (KDE/kdegraphics-3.1.tar.bz2) = 1daa1a669131015db73a98f6ca26e232
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
--- kdvi/font.cpp.orig Mon Apr 22 23:45:41 2002
|
||||
+++ kdvi/font.cpp Mon Apr 22 23:45:53 2002
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
#include <kdebug.h>
|
||||
#include <klocale.h>
|
||||
-#include <malloc.h>
|
||||
+#include <stdlib.h>
|
||||
#include <qapplication.h>
|
||||
#include <qfile.h>
|
||||
#include <stdio.h>
|
652
graphics/kdegraphics4/files/plist.base
Normal file
652
graphics/kdegraphics4/files/plist.base
Normal file
|
@ -0,0 +1,652 @@
|
|||
bin/kcolorchooser
|
||||
bin/kcoloredit
|
||||
bin/kdvi
|
||||
bin/kfax
|
||||
bin/kghostview
|
||||
bin/kiconedit
|
||||
bin/kpaint
|
||||
bin/kpovmodeler
|
||||
bin/kruler
|
||||
bin/ksnapshot
|
||||
bin/kview
|
||||
bin/kviewshell
|
||||
bin/mrmlsearch
|
||||
include/kmultipageInterface.h
|
||||
lib/kde3/kcm_kmrml.la
|
||||
lib/kde3/kcm_kmrml.so
|
||||
lib/kde3/kded_daemonwatcher.la
|
||||
lib/kde3/kded_daemonwatcher.so
|
||||
lib/kde3/kdvipart.la
|
||||
lib/kde3/kdvipart.so
|
||||
lib/kde3/kfaxpart.la
|
||||
lib/kde3/kfaxpart.so
|
||||
lib/kde3/kfile_bmp.la
|
||||
lib/kde3/kfile_bmp.so
|
||||
lib/kde3/kfile_ico.la
|
||||
lib/kde3/kfile_ico.so
|
||||
lib/kde3/kfile_jpeg.la
|
||||
lib/kde3/kfile_jpeg.so
|
||||
lib/kde3/kfile_pdf.la
|
||||
lib/kde3/kfile_pdf.so
|
||||
lib/kde3/kfile_png.la
|
||||
lib/kde3/kfile_png.so
|
||||
lib/kde3/kfile_ps.la
|
||||
lib/kde3/kfile_ps.so
|
||||
lib/kde3/kfile_tga.la
|
||||
lib/kde3/kfile_tga.so
|
||||
lib/kde3/kfile_tiff.la
|
||||
lib/kde3/kfile_tiff.so
|
||||
lib/kde3/kfile_xbm.la
|
||||
lib/kde3/kfile_xbm.so
|
||||
lib/kde3/kio_mrml.la
|
||||
lib/kde3/kio_mrml.so
|
||||
lib/kde3/kview_browserplugin.la
|
||||
lib/kde3/kview_browserplugin.so
|
||||
lib/kde3/kview_presenterplugin.la
|
||||
lib/kde3/kview_presenterplugin.so
|
||||
lib/kde3/kview_scannerplugin.la
|
||||
lib/kde3/kview_scannerplugin.so
|
||||
lib/kde3/kviewerpart.la
|
||||
lib/kde3/kviewerpart.so
|
||||
lib/kde3/libkghostviewpart.la
|
||||
lib/kde3/libkghostviewpart.so
|
||||
lib/kde3/libkmrmlpart.la
|
||||
lib/kde3/libkmrmlpart.so
|
||||
lib/kde3/libkpovmodelerpart.la
|
||||
lib/kde3/libkpovmodelerpart.so
|
||||
lib/kde3/libkviewcanvas.la
|
||||
lib/kde3/libkviewcanvas.so
|
||||
lib/kde3/libkviewviewer.la
|
||||
lib/kde3/libkviewviewer.so
|
||||
lib/kview.la
|
||||
lib/kview.so
|
||||
lib/libkmultipage.la
|
||||
lib/libkmultipage.so
|
||||
lib/libkmultipage.so.0
|
||||
lib/libkpagetest.la
|
||||
lib/libkpagetest.so
|
||||
lib/libkviewsupport.la
|
||||
lib/libkviewsupport.so
|
||||
lib/libkviewsupport.so.0
|
||||
lib/mrmlsearch.la
|
||||
lib/mrmlsearch.so
|
||||
share/applnk/Graphics/More/kcolorchooser.desktop
|
||||
share/applnk/Graphics/More/kcoloredit.desktop
|
||||
share/applnk/Graphics/More/kiconedit.desktop
|
||||
share/applnk/Graphics/More/kruler.desktop
|
||||
share/applnk/Graphics/More/ksnapshot.desktop
|
||||
share/applnk/Graphics/kcolorchooser.desktop
|
||||
share/applnk/Graphics/kcoloredit.desktop
|
||||
share/applnk/Graphics/kdvi.desktop
|
||||
share/applnk/Graphics/kfax.desktop
|
||||
share/applnk/Graphics/kghostview.desktop
|
||||
share/applnk/Graphics/kiconedit.desktop
|
||||
share/applnk/Graphics/kpaint.desktop
|
||||
share/applnk/Graphics/kpovmodeler.desktop
|
||||
share/applnk/Graphics/kruler.desktop
|
||||
share/applnk/Graphics/ksnapshot.desktop
|
||||
share/applnk/Graphics/kview.desktop
|
||||
share/applnk/Settings/System/kcmkmrml.desktop
|
||||
share/apps/kcoloredit/kcoloreditui.rc
|
||||
share/apps/kdvi/kdvi_part.rc
|
||||
share/apps/kdvi/tips
|
||||
share/apps/kdvi/toolbar/forwpage.xpm
|
||||
share/apps/kdvi/toolbar/largetext.xpm
|
||||
share/apps/kdvi/toolbar/smalltext.xpm
|
||||
share/apps/kfax/kfax_part.rc
|
||||
share/apps/kfax/kfaxui.rc
|
||||
share/apps/kfax/pics/kfax.tif
|
||||
share/apps/kfax/pics/kfaxlogo.xpm
|
||||
share/apps/kghostview/kghostviewui.rc
|
||||
share/apps/kghostview/kgv_part.rc
|
||||
share/apps/kghostview/pdf_sec.ps
|
||||
share/apps/kiconedit/pics/compressed.png
|
||||
share/apps/kiconedit/pics/source.png
|
||||
share/apps/kiconedit/pics/standard.png
|
||||
share/apps/kiconedit/toolbar/aim-cursor.xpm
|
||||
share/apps/kiconedit/toolbar/aim.png
|
||||
share/apps/kiconedit/toolbar/areaselect.png
|
||||
share/apps/kiconedit/toolbar/circle.png
|
||||
share/apps/kiconedit/toolbar/ellipse.png
|
||||
share/apps/kiconedit/toolbar/eraser-cursor.xpm
|
||||
share/apps/kiconedit/toolbar/fileclose.png
|
||||
share/apps/kiconedit/toolbar/filledcircle.png
|
||||
share/apps/kiconedit/toolbar/filledellipse.png
|
||||
share/apps/kiconedit/toolbar/filledrectangle.png
|
||||
share/apps/kiconedit/toolbar/flood-cursor.xpm
|
||||
share/apps/kiconedit/toolbar/flood.png
|
||||
share/apps/kiconedit/toolbar/grayscale.png
|
||||
share/apps/kiconedit/toolbar/grid.png
|
||||
share/apps/kiconedit/toolbar/kdepalette.png
|
||||
share/apps/kiconedit/toolbar/line.png
|
||||
share/apps/kiconedit/toolbar/newwin.png
|
||||
share/apps/kiconedit/toolbar/paintbrush-cursor.xpm
|
||||
share/apps/kiconedit/toolbar/paintbrush.png
|
||||
share/apps/kiconedit/toolbar/pointer.png
|
||||
share/apps/kiconedit/toolbar/rectangle.png
|
||||
share/apps/kiconedit/toolbar/selectcircle.png
|
||||
share/apps/kiconedit/toolbar/selectrect.png
|
||||
share/apps/kiconedit/toolbar/spraycan-cursor.xpm
|
||||
share/apps/kiconedit/toolbar/spraycan.png
|
||||
share/apps/kiconedit/toolbar/transform.png
|
||||
share/apps/konqueror/servicemenus/mrml-servicemenu.desktop
|
||||
share/apps/kpaint/kpaintui.rc
|
||||
share/apps/kpaint/toolbar/areaselect.png
|
||||
share/apps/kpaint/toolbar/brush.png
|
||||
share/apps/kpaint/toolbar/circle.png
|
||||
share/apps/kpaint/toolbar/ellipse.png
|
||||
share/apps/kpaint/toolbar/line.png
|
||||
share/apps/kpaint/toolbar/rectangle.png
|
||||
share/apps/kpaint/toolbar/roundangle.png
|
||||
share/apps/kpovmodeler/examples/includes/inlined/chars.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/finish.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/glass.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/golds.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/metals.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/shapes.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/shapes2.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/shapesq.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/skies.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/stars.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/stones1.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/stones2.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/textures.kpm
|
||||
share/apps/kpovmodeler/examples/includes/inlined/woods.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/chars.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/finish.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/glass.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/golds.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/metals.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/shapes.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/shapes2.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/shapesq.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/skies.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/stars.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/stones1.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/stones2.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/textures.kpm
|
||||
share/apps/kpovmodeler/examples/includes/original/woods.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/advanced/ants.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/advanced/bee.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/advanced/ink.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/advanced/table.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/csg/cheese.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/csg/emptybox.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/csg/heightfield.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/interior/cubes.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/interior/media1.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/interior/media2.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/interior/media3.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/interior/spheres.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/lights/arealight.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/lights/arealight2.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/lights/spotlight.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/objects/allobjects.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/objects/fractals.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/objects/lathe.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/objects/prism.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/objects/sor.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/objects/superellipsoid.kpm
|
||||
share/apps/kpovmodeler/examples/scenes/objects/text.kpm
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmaddpoint.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmaddsubprism.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmbicubicpatch.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmblendmapmodifiers.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmblob.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmblobcylinder.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmblobsphere.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmboundedby.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmbox.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmbumpmap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmcamera.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmclippedby.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmcolorlist.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmcolormap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmcolormapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmcomment.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmcone.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmcylinder.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmdensity.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmdensitydeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmdensitylist.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmdensitymap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmdensitymapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmdialogview.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmdifference.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmdisc.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmdrag.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmfinish.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmfinishdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmfog.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmfogdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmglobalsettings.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmglview.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmheightfield.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmimagemap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pminserterrors.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pminsertfirstchild.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pminsertlastchild.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pminsertsibling.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pminterior.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pminteriordeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmintersection.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmjuliafractal.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmlathe.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmlight.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmlistpattern.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmlookslike.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmmaterial.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmmaterialdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmmaterialmap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmmatrix.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmmedia.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmmediadeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmmerge.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmnormal.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmnormaldeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmnormallist.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmnormalmap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmnormalmapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmobjectdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmobjectlink.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmpattern.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmpigment.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmpigmentdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmpigmentlist.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmpigmentmap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmpigmentmapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmplane.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmpolynom.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmprism.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmquickcolor.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmrainbow.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmrainbowdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmraw.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmremovepoint.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmrender.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmrenderpreview.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmrendersettings.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmrotate.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmscale.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmscene.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmskysphere.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmskyspheredeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmslope.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmslopemap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmslopemapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmsolidcolor.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmsor.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmsphere.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmsqe.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmtext.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmtexture.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmtexturedeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmtexturelist.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmtexturemap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmtexturemapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmtorus.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmtranslate.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmtreeview.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmtriangle.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmunion.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/16x16/actions/pmwarp.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmbicubicpatch.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmblendmapmodifiers.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmblob.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmblobcylinder.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmblobsphere.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmboundedby.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmbox.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmbumpmap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmcamera.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmclippedby.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmcolorlist.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmcolormap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmcolormapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmcomment.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmcone.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmcylinder.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmdensity.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmdensitydeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmdensitylist.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmdensitymap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmdensitymapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmdifference.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmdisc.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmdrag.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmfinish.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmfinishdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmfog.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmfogdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmglobalsettings.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmheightfield.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmimagemap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pminserterrors.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pminterior.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pminteriordeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmintersection.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmjuliafractal.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmlathe.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmlight.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmlistpattern.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmlookslike.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmmaterial.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmmaterialdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmmaterialmap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmmatrix.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmmedia.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmmediadeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmmerge.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmnormal.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmnormaldeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmnormallist.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmnormalmap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmnormalmapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmobjectdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmobjectlink.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmpattern.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmpigment.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmpigmentdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmpigmentlist.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmpigmentmap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmpigmentmapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmplane.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmpolynom.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmprism.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmquickcolor.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmrainbow.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmrainbowdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmraw.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmrender.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmrenderpreview.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmrendersettings.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmrotate.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmscale.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmscene.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmskysphere.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmskyspheredeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmslope.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmslopemap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmslopemapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmsolidcolor.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmsor.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmsphere.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmsqe.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmtext.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmtexture.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmtexturedeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmtexturelist.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmtexturemap.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmtexturemapdeclare.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmtorus.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmtranslate.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmtriangle.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmunion.png
|
||||
share/apps/kpovmodeler/icons/crystalsvg/22x22/actions/pmwarp.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmaddpoint.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmaddsubprism.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmbicubicpatch.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmblendmapmodifiers.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmblob.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmblobcylinder.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmblobsphere.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmboundedby.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmbox.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmbumpmap.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmcamera.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmclippedby.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmcomment.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmcone.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmcylinder.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmdeclare.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmdensity.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmdensitydeclare.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmdensitylist.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmdensitymap.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmdensitymapdeclare.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmdifference.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmdisc.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmdrag.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmfog.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmfogdeclare.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmglobalsettings.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmheightfield.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmimagemap.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pminserterrors.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pminsertfirstchild.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pminsertlastchild.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pminsertsibling.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmintersection.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmjuliafractal.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmlathe.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmlight.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmlistpattern.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmlookslike.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmmaterialmap.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmmatrix.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmmerge.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmobjectdeclare.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmobjectlink.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmpigment.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmpigmentdeclare.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmplane.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmpolynom.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmprism.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmquickcolor.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmrainbow.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmrainbowdeclare.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmraw.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmremovepoint.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmrender.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmrenderpreview.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmrendersettings.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmrotate.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmscale.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmscene.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmskysphere.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmskyspheredeclare.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmsolidcolor.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmsor.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmsphere.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmsqr.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmtext.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmtexture.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmtexturedeclare.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmtorus.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmtranslate.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmtriangle.png
|
||||
share/apps/kpovmodeler/icons/locolor/16x16/actions/pmunion.png
|
||||
share/apps/kpovmodeler/kpovmodelerbrowser.rc
|
||||
share/apps/kpovmodeler/kpovmodelershell.rc
|
||||
share/apps/kpovmodeler/kpovmodelerui.rc
|
||||
share/apps/kpovmodeler/povraydocmap.xml
|
||||
share/apps/kruler/eventsrc
|
||||
share/apps/kruler/pics/kruler-east.png
|
||||
share/apps/kruler/pics/kruler-north.png
|
||||
share/apps/kruler/pics/kruler-south.png
|
||||
share/apps/kruler/pics/kruler-west.png
|
||||
share/apps/kruler/sounds/move.wav
|
||||
share/apps/kview/kpartplugins/kviewpresenter.desktop
|
||||
share/apps/kview/kpartplugins/kviewpresenter.rc
|
||||
share/apps/kview/kpartplugins/kviewscanner.desktop
|
||||
share/apps/kview/kpartplugins/kviewscanner.rc
|
||||
share/apps/kview/kviewui.rc
|
||||
share/apps/kviewerpart/kviewerpart.rc
|
||||
share/apps/kviewshell/kviewshell.rc
|
||||
share/apps/kviewviewer/kpartplugins/kviewbrowser.desktop
|
||||
share/apps/kviewviewer/kpartplugins/kviewbrowser.rc
|
||||
share/apps/kviewviewer/kviewpopup.rc
|
||||
share/apps/kviewviewer/kviewviewer.rc
|
||||
share/apps/kviewviewer/kviewviewer_ro.rc
|
||||
share/doc/HTML/en/kamera/common
|
||||
share/doc/HTML/en/kamera/index.cache.bz2
|
||||
share/doc/HTML/en/kamera/index.docbook
|
||||
share/doc/HTML/en/kcoloredit/common
|
||||
share/doc/HTML/en/kcoloredit/index.cache.bz2
|
||||
share/doc/HTML/en/kcoloredit/index.docbook
|
||||
share/doc/HTML/en/kdvi/KDVI-features.dvi
|
||||
share/doc/HTML/en/kdvi/KDVI-features.tex
|
||||
share/doc/HTML/en/kdvi/aboutkde.ps
|
||||
share/doc/HTML/en/kdvi/common
|
||||
share/doc/HTML/en/kdvi/index.cache.bz2
|
||||
share/doc/HTML/en/kdvi/index.docbook
|
||||
share/doc/HTML/en/kdvi/kdvi-search.el
|
||||
share/doc/HTML/en/kdvi/optionrequester1.png
|
||||
share/doc/HTML/en/kdvi/optionrequester2.png
|
||||
share/doc/HTML/en/kdvi/srcltx.sty
|
||||
share/doc/HTML/en/kdvi/srctex.sty
|
||||
share/doc/HTML/en/kghostview/common
|
||||
share/doc/HTML/en/kghostview/index.cache.bz2
|
||||
share/doc/HTML/en/kghostview/index.docbook
|
||||
share/doc/HTML/en/kiconedit/common
|
||||
share/doc/HTML/en/kiconedit/index.cache.bz2
|
||||
share/doc/HTML/en/kiconedit/index.docbook
|
||||
share/doc/HTML/en/kooka/common
|
||||
share/doc/HTML/en/kooka/index.cache.bz2
|
||||
share/doc/HTML/en/kooka/index.docbook
|
||||
share/doc/HTML/en/kooka/kooka_gocr.png
|
||||
share/doc/HTML/en/kooka/kooka_gocr_result.png
|
||||
share/doc/HTML/en/kooka/kooka_mainctrl.png
|
||||
share/doc/HTML/en/kooka/ocr-select.png
|
||||
share/doc/HTML/en/kooka/shortcut0.png
|
||||
share/doc/HTML/en/kooka/shortcut1.png
|
||||
share/doc/HTML/en/kooka/toolbar.png
|
||||
share/doc/HTML/en/kooka/toolbar1.png
|
||||
share/doc/HTML/en/kooka/toolbar2.png
|
||||
share/doc/HTML/en/kpaint/common
|
||||
share/doc/HTML/en/kpaint/index.cache.bz2
|
||||
share/doc/HTML/en/kpaint/index.docbook
|
||||
share/doc/HTML/en/kpovmodeler/cameraview.png
|
||||
share/doc/HTML/en/kpovmodeler/common
|
||||
share/doc/HTML/en/kpovmodeler/controlpoints.png
|
||||
share/doc/HTML/en/kpovmodeler/cr22-action-pmcamera.png
|
||||
share/doc/HTML/en/kpovmodeler/cr22-action-pmcolorlist.png
|
||||
share/doc/HTML/en/kpovmodeler/cr22-action-pmfinish.png
|
||||
share/doc/HTML/en/kpovmodeler/cr22-action-pminterior.png
|
||||
share/doc/HTML/en/kpovmodeler/cr22-action-pmlight.png
|
||||
share/doc/HTML/en/kpovmodeler/cr22-action-pmpigment.png
|
||||
share/doc/HTML/en/kpovmodeler/cr22-action-pmplane.png
|
||||
share/doc/HTML/en/kpovmodeler/cr22-action-pmrender.png
|
||||
share/doc/HTML/en/kpovmodeler/cr22-action-pmsolidcolor.png
|
||||
share/doc/HTML/en/kpovmodeler/cr22-action-pmsphere.png
|
||||
share/doc/HTML/en/kpovmodeler/defaultviewlayout.png
|
||||
share/doc/HTML/en/kpovmodeler/dockwidget.png
|
||||
share/doc/HTML/en/kpovmodeler/dockwidgettab.png
|
||||
share/doc/HTML/en/kpovmodeler/index.cache.bz2
|
||||
share/doc/HTML/en/kpovmodeler/index.docbook
|
||||
share/doc/HTML/en/kpovmodeler/insertaspopup.png
|
||||
share/doc/HTML/en/kpovmodeler/objectpropertiesview.png
|
||||
share/doc/HTML/en/kpovmodeler/objecttree.png
|
||||
share/doc/HTML/en/kpovmodeler/rendericon.png
|
||||
share/doc/HTML/en/kpovmodeler/rendermodeoutput.png
|
||||
share/doc/HTML/en/kpovmodeler/rendermodequality.png
|
||||
share/doc/HTML/en/kpovmodeler/rendermodesize.png
|
||||
share/doc/HTML/en/kpovmodeler/rendermodesselection.png
|
||||
share/doc/HTML/en/kpovmodeler/rendermodestoolbar.png
|
||||
share/doc/HTML/en/kpovmodeler/rendersettingsicon.png
|
||||
share/doc/HTML/en/kpovmodeler/renderwindow.png
|
||||
share/doc/HTML/en/kpovmodeler/texturepreview.png
|
||||
share/doc/HTML/en/kpovmodeler/topview.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-camera-dialog.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-camera-graphic.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-final-render.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-ground-color-list.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-ground-pigment.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-ground-render.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-ground-solid-color-1.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-ground-solid-color-2.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-ground-wrong-colors-render.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-light-dialog.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-light-graphic.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-plane-dialog.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-plane-graphic.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-plane-tree-expanded.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-plane-tree-translate.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-sphere-dialog.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-sphere-finish-dialog.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-sphere-render-finish.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-sphere-render-nocolor.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-sphere-render-solidcolor.png
|
||||
share/doc/HTML/en/kpovmodeler/tutorial01-sphere-solid-color.png
|
||||
share/doc/HTML/en/kruler/common
|
||||
share/doc/HTML/en/kruler/index.cache.bz2
|
||||
share/doc/HTML/en/kruler/index.docbook
|
||||
share/doc/HTML/en/ksnapshot/common
|
||||
share/doc/HTML/en/ksnapshot/index.cache.bz2
|
||||
share/doc/HTML/en/ksnapshot/index.docbook
|
||||
share/doc/HTML/en/ksnapshot/preview.png
|
||||
share/doc/HTML/en/ksnapshot/window.png
|
||||
share/doc/HTML/en/kuickshow/common
|
||||
share/doc/HTML/en/kuickshow/index.cache.bz2
|
||||
share/doc/HTML/en/kuickshow/index.docbook
|
||||
share/doc/HTML/en/kuickshow/screenshot.png
|
||||
share/doc/HTML/en/kview/common
|
||||
share/doc/HTML/en/kview/index.cache.bz2
|
||||
share/doc/HTML/en/kview/index.docbook
|
||||
share/doc/HTML/en/kview/snapshot1.png
|
||||
share/doc/HTML/en/kview/snapshot2.png
|
||||
share/doc/HTML/en/kview/snapshot3.png
|
||||
share/doc/HTML/en/kview/snapshot4.png
|
||||
share/doc/HTML/en/kview/snapshot5.png
|
||||
share/doc/HTML/en/kview/snapshot6.png
|
||||
share/doc/HTML/en/kview/snapshot7.png
|
||||
share/doc/HTML/en/kview/snapshot8.png
|
||||
share/doc/HTML/en/kview/snapshot9.png
|
||||
share/icons/crystalsvg/128x128/apps/kghostview.png
|
||||
share/icons/crystalsvg/16x16/apps/kcoloredit.png
|
||||
share/icons/crystalsvg/16x16/apps/kdvi.png
|
||||
share/icons/crystalsvg/16x16/apps/kfax.png
|
||||
share/icons/crystalsvg/16x16/apps/kghostview.png
|
||||
share/icons/crystalsvg/16x16/apps/kiconedit.png
|
||||
share/icons/crystalsvg/16x16/apps/kpaint.png
|
||||
share/icons/crystalsvg/16x16/apps/kpovmodeler.png
|
||||
share/icons/crystalsvg/16x16/apps/kruler.png
|
||||
share/icons/crystalsvg/16x16/apps/ksnapshot.png
|
||||
share/icons/crystalsvg/16x16/apps/kview.png
|
||||
share/icons/crystalsvg/16x16/apps/kviewshell.png
|
||||
share/icons/crystalsvg/16x16/mimetypes/kpovmodeler_doc.png
|
||||
share/icons/crystalsvg/32x32/apps/kcoloredit.png
|
||||
share/icons/crystalsvg/32x32/apps/kdvi.png
|
||||
share/icons/crystalsvg/32x32/apps/kfax.png
|
||||
share/icons/crystalsvg/32x32/apps/kghostview.png
|
||||
share/icons/crystalsvg/32x32/apps/kiconedit.png
|
||||
share/icons/crystalsvg/32x32/apps/kpaint.png
|
||||
share/icons/crystalsvg/32x32/apps/kpovmodeler.png
|
||||
share/icons/crystalsvg/32x32/apps/kruler.png
|
||||
share/icons/crystalsvg/32x32/apps/ksnapshot.png
|
||||
share/icons/crystalsvg/32x32/apps/kview.png
|
||||
share/icons/crystalsvg/32x32/apps/kviewshell.png
|
||||
share/icons/crystalsvg/32x32/mimetypes/kpovmodeler_doc.png
|
||||
share/icons/crystalsvg/48x48/apps/kdvi.png
|
||||
share/icons/crystalsvg/48x48/apps/kfax.png
|
||||
share/icons/crystalsvg/48x48/apps/kghostview.png
|
||||
share/icons/crystalsvg/48x48/apps/kiconedit.png
|
||||
share/icons/crystalsvg/48x48/apps/kpaint.png
|
||||
share/icons/crystalsvg/48x48/apps/kruler.png
|
||||
share/icons/crystalsvg/48x48/apps/ksnapshot.png
|
||||
share/icons/crystalsvg/48x48/apps/kview.png
|
||||
share/icons/crystalsvg/48x48/apps/kviewshell.png
|
||||
share/icons/crystalsvg/64x64/apps/kghostview.png
|
||||
share/icons/locolor/16x16/apps/kcoloredit.png
|
||||
share/icons/locolor/16x16/apps/kpovmodeler.png
|
||||
share/icons/locolor/32x32/apps/kcoloredit.png
|
||||
share/icons/locolor/32x32/apps/kpovmodeler.png
|
||||
share/mimelnk/text/mrml.desktop
|
||||
share/services/kded/daemonwatcher.desktop
|
||||
share/services/kfile_bmp.desktop
|
||||
share/services/kfile_ico.desktop
|
||||
share/services/kfile_jpeg.desktop
|
||||
share/services/kfile_pdf.desktop
|
||||
share/services/kfile_png.desktop
|
||||
share/services/kfile_ps.desktop
|
||||
share/services/kfile_tga.desktop
|
||||
share/services/kfile_tiff.desktop
|
||||
share/services/kfile_xbm.desktop
|
||||
share/services/kviewcanvas.desktop
|
||||
share/services/kviewviewer.desktop
|
||||
share/services/mrml.protocol
|
||||
share/services/mrml_part.desktop
|
||||
share/servicetypes/kimageviewer.desktop
|
||||
share/servicetypes/kimageviewercanvas.desktop
|
88
graphics/kdegraphics4/files/plist.base.rm
Normal file
88
graphics/kdegraphics4/files/plist.base.rm
Normal file
|
@ -0,0 +1,88 @@
|
|||
@dirrm share/servicetypes
|
||||
@dirrm share/services/kded
|
||||
@dirrm share/services
|
||||
@dirrm share/mimelnk/text
|
||||
@dirrm share/mimelnk
|
||||
@dirrm share/icons/locolor/32x32/apps
|
||||
@dirrm share/icons/locolor/32x32
|
||||
@dirrm share/icons/locolor/16x16/apps
|
||||
@dirrm share/icons/locolor/16x16
|
||||
@dirrm share/icons/locolor
|
||||
@dirrm share/icons/crystalsvg/64x64/apps
|
||||
@dirrm share/icons/crystalsvg/64x64
|
||||
@dirrm share/icons/crystalsvg/48x48/apps
|
||||
@dirrm share/icons/crystalsvg/48x48
|
||||
@dirrm share/icons/crystalsvg/32x32/mimetypes
|
||||
@dirrm share/icons/crystalsvg/32x32/apps
|
||||
@dirrm share/icons/crystalsvg/32x32
|
||||
@dirrm share/icons/crystalsvg/16x16/mimetypes
|
||||
@dirrm share/icons/crystalsvg/16x16/apps
|
||||
@dirrm share/icons/crystalsvg/16x16
|
||||
@dirrm share/icons/crystalsvg/128x128/apps
|
||||
@dirrm share/icons/crystalsvg/128x128
|
||||
@dirrm share/icons/crystalsvg
|
||||
@dirrm share/icons
|
||||
@dirrm share/doc/HTML/en/kview
|
||||
@dirrm share/doc/HTML/en/kuickshow
|
||||
@dirrm share/doc/HTML/en/ksnapshot
|
||||
@dirrm share/doc/HTML/en/kruler
|
||||
@dirrm share/doc/HTML/en/kpovmodeler
|
||||
@dirrm share/doc/HTML/en/kpaint
|
||||
@dirrm share/doc/HTML/en/kooka
|
||||
@dirrm share/doc/HTML/en/kiconedit
|
||||
@dirrm share/doc/HTML/en/kghostview
|
||||
@dirrm share/doc/HTML/en/kdvi
|
||||
@dirrm share/doc/HTML/en/kcoloredit
|
||||
@dirrm share/doc/HTML/en/kamera
|
||||
@dirrm share/doc/HTML/en
|
||||
@dirrm share/doc/HTML
|
||||
@dirrm share/doc
|
||||
@dirrm share/apps/kviewviewer/kpartplugins
|
||||
@dirrm share/apps/kviewviewer
|
||||
@dirrm share/apps/kviewshell
|
||||
@dirrm share/apps/kviewerpart
|
||||
@dirrm share/apps/kview/kpartplugins
|
||||
@dirrm share/apps/kview
|
||||
@dirrm share/apps/kruler/sounds
|
||||
@dirrm share/apps/kruler/pics
|
||||
@dirrm share/apps/kruler
|
||||
@dirrm share/apps/kpovmodeler/icons/locolor/16x16/actions
|
||||
@dirrm share/apps/kpovmodeler/icons/locolor/16x16
|
||||
@dirrm share/apps/kpovmodeler/icons/locolor
|
||||
@dirrm share/apps/kpovmodeler/icons/crystalsvg/22x22/actions
|
||||
@dirrm share/apps/kpovmodeler/icons/crystalsvg/22x22
|
||||
@dirrm share/apps/kpovmodeler/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/kpovmodeler/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/kpovmodeler/icons/crystalsvg
|
||||
@dirrm share/apps/kpovmodeler/icons
|
||||
@dirrm share/apps/kpovmodeler/examples/scenes/objects
|
||||
@dirrm share/apps/kpovmodeler/examples/scenes/lights
|
||||
@dirrm share/apps/kpovmodeler/examples/scenes/interior
|
||||
@dirrm share/apps/kpovmodeler/examples/scenes/csg
|
||||
@dirrm share/apps/kpovmodeler/examples/scenes/advanced
|
||||
@dirrm share/apps/kpovmodeler/examples/scenes
|
||||
@dirrm share/apps/kpovmodeler/examples/includes/original
|
||||
@dirrm share/apps/kpovmodeler/examples/includes/inlined
|
||||
@dirrm share/apps/kpovmodeler/examples/includes
|
||||
@dirrm share/apps/kpovmodeler/examples
|
||||
@dirrm share/apps/kpovmodeler
|
||||
@dirrm share/apps/kpaint/toolbar
|
||||
@dirrm share/apps/kpaint
|
||||
@dirrm share/apps/konqueror/servicemenus
|
||||
@dirrm share/apps/konqueror
|
||||
@dirrm share/apps/kiconedit/toolbar
|
||||
@dirrm share/apps/kiconedit/pics
|
||||
@dirrm share/apps/kiconedit
|
||||
@dirrm share/apps/kghostview
|
||||
@dirrm share/apps/kfax/pics
|
||||
@dirrm share/apps/kfax
|
||||
@dirrm share/apps/kdvi/toolbar
|
||||
@dirrm share/apps/kdvi
|
||||
@dirrm share/apps/kcoloredit
|
||||
@dirrm share/apps
|
||||
@dirrm share/applnk/Settings/System
|
||||
@dirrm share/applnk/Settings
|
||||
@dirrm share/applnk/Graphics/More
|
||||
@dirrm share/applnk/Graphics
|
||||
@dirrm share/applnk
|
||||
@dirrm lib/kde3
|
11
graphics/kdegraphics4/files/plist.gphoto2
Normal file
11
graphics/kdegraphics4/files/plist.gphoto2
Normal file
|
@ -0,0 +1,11 @@
|
|||
lib/kde3/kcm_kamera.la
|
||||
lib/kde3/kcm_kamera.so
|
||||
lib/kde3/kio_kamera.la
|
||||
lib/kde3/kio_kamera.so
|
||||
share/applnk/Settings/Peripherals/kamera.desktop
|
||||
share/icons/crystalsvg/16x16/actions/camera_test.png
|
||||
share/icons/crystalsvg/16x16/apps/camera.png
|
||||
share/icons/crystalsvg/16x16/devices/camera.png
|
||||
share/icons/crystalsvg/32x32/devices/camera.png
|
||||
share/icons/crystalsvg/32x32/filesystems/camera.png
|
||||
share/services/kamera.protocol
|
0
graphics/kdegraphics4/files/plist.gphoto2.rm
Normal file
0
graphics/kdegraphics4/files/plist.gphoto2.rm
Normal file
18
graphics/kdegraphics4/files/plist.imlib
Normal file
18
graphics/kdegraphics4/files/plist.imlib
Normal file
|
@ -0,0 +1,18 @@
|
|||
bin/kuickshow
|
||||
lib/kuickshow.la
|
||||
lib/kuickshow.so
|
||||
share/applnk/Graphics/kuickshow.desktop
|
||||
share/apps/kuickshow/im_palette.pal
|
||||
share/apps/kuickshow/pics/about.png
|
||||
share/apps/kuickshow/pics/calibrate.png
|
||||
share/apps/kuickshow/pics/handcursor.png
|
||||
share/apps/kuickshow/pics/imageviewer-medium.png
|
||||
share/apps/kuickshow/pics/imageviewer-small.png
|
||||
share/apps/kuickshow/pics/ksslide.png
|
||||
share/apps/kuickshow/pics/kuickshow-day.jpg
|
||||
share/apps/kuickshow/pics/kuickshow-night.jpg
|
||||
share/apps/kuickshow/pics/logo.png
|
||||
share/icons/crystalsvg/16x16/apps/kuickshow.png
|
||||
share/icons/crystalsvg/32x32/apps/kuickshow.png
|
||||
share/icons/locolor/16x16/apps/kuickshow.png
|
||||
share/icons/locolor/32x32/apps/kuickshow.png
|
2
graphics/kdegraphics4/files/plist.imlib.rm
Normal file
2
graphics/kdegraphics4/files/plist.imlib.rm
Normal file
|
@ -0,0 +1,2 @@
|
|||
@dirrm share/apps/kuickshow/pics
|
||||
@dirrm share/apps/kuickshow
|
37
graphics/kdegraphics4/files/plist.sane
Normal file
37
graphics/kdegraphics4/files/plist.sane
Normal file
|
@ -0,0 +1,37 @@
|
|||
bin/kooka
|
||||
include/devselector.h
|
||||
include/dispgamma.h
|
||||
include/gammadialog.h
|
||||
include/img_canvas.h
|
||||
include/imgscaledialog.h
|
||||
include/kgammatable.h
|
||||
include/kscandevice.h
|
||||
include/kscanoption.h
|
||||
include/kscanoptset.h
|
||||
include/kscanslider.h
|
||||
include/massscandialog.h
|
||||
include/previewer.h
|
||||
include/scanparams.h
|
||||
include/scansourcedialog.h
|
||||
include/sizeindicator.h
|
||||
lib/libkscan.la
|
||||
lib/libkscan.so
|
||||
lib/libkscan.so.1
|
||||
share/applnk/Graphics/kooka.desktop
|
||||
share/apps/kooka/kookaui.rc
|
||||
share/apps/kooka/pics/mirror-both.png
|
||||
share/apps/kooka/pics/mirror-horiz.png
|
||||
share/apps/kooka/pics/mirror-vert.png
|
||||
share/apps/kooka/pics/newfromselect.png
|
||||
share/apps/kooka/pics/ocr-select.png
|
||||
share/apps/kooka/pics/ocr.png
|
||||
share/apps/kooka/pics/scaleorig.png
|
||||
share/apps/kooka/pics/scaletoheight.png
|
||||
share/apps/kooka/pics/scaletowidth.png
|
||||
share/apps/kooka/pics/thumbviewtile.png
|
||||
share/config/kookarc
|
||||
share/icons/crystalsvg/16x16/actions/palette_color.png
|
||||
share/icons/crystalsvg/16x16/actions/palette_gray.png
|
||||
share/icons/crystalsvg/16x16/actions/palette_halftone.png
|
||||
share/icons/crystalsvg/16x16/actions/palette_lineart.png
|
||||
share/services/scanservice.desktop
|
8
graphics/kdegraphics4/files/plist.sane.rm
Normal file
8
graphics/kdegraphics4/files/plist.sane.rm
Normal file
|
@ -0,0 +1,8 @@
|
|||
@dirrm share/icons/crystalsvg/32x32/filesystems
|
||||
@dirrm share/icons/crystalsvg/32x32/devices
|
||||
@dirrm share/icons/crystalsvg/16x16/devices
|
||||
@dirrm share/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/config
|
||||
@dirrm share/apps/kooka/pics
|
||||
@dirrm share/apps/kooka
|
||||
@dirrm share/applnk/Settings/Peripherals
|
|
@ -1,316 +0,0 @@
|
|||
bin/kcolorchooser
|
||||
bin/kcoloredit
|
||||
bin/kdvi
|
||||
bin/kfax
|
||||
bin/kfract
|
||||
bin/kghostview
|
||||
bin/kiconedit
|
||||
%%SANE%%bin/kooka
|
||||
bin/kpaint
|
||||
bin/kruler
|
||||
bin/ksnapshot
|
||||
%%IMLIB%%bin/kuickshow
|
||||
bin/kview
|
||||
bin/kviewshell
|
||||
%%SANE%%include/devselector.h
|
||||
%%SANE%%include/dispgamma.h
|
||||
%%SANE%%include/gammadialog.h
|
||||
%%SANE%%include/img_canvas.h
|
||||
%%SANE%%include/imgscaledialog.h
|
||||
%%SANE%%include/kgammatable.h
|
||||
include/kmultipageInterface.h
|
||||
%%SANE%%include/kscandevice.h
|
||||
%%SANE%%include/kscanoption.h
|
||||
%%SANE%%include/kscanoptset.h
|
||||
%%SANE%%include/kscanslider.h
|
||||
%%SANE%%include/massscandialog.h
|
||||
%%SANE%%include/previewer.h
|
||||
%%SANE%%include/scanparams.h
|
||||
%%SANE%%include/scansourcedialog.h
|
||||
%%SANE%%include/sizeindicator.h
|
||||
lib/kcolorchooser.la
|
||||
lib/kcolorchooser.so
|
||||
lib/kde3/kfile_pdf.la
|
||||
lib/kde3/kfile_pdf.so
|
||||
lib/kde3/kfile_png.la
|
||||
lib/kde3/kfile_png.so
|
||||
lib/kde3/kfile_ps.la
|
||||
lib/kde3/kfile_ps.so
|
||||
%%KAMERA%%lib/kde3/kio_kamera.la
|
||||
%%KAMERA%%lib/kde3/kio_kamera.so
|
||||
%%KAMERA%%lib/kde3/libkcm_kamera.la
|
||||
%%KAMERA%%lib/kde3/libkcm_kamera.so
|
||||
%%IMLIB%%lib/kuickshow.la
|
||||
%%IMLIB%%lib/kuickshow.so
|
||||
lib/kview.la
|
||||
lib/kview.so
|
||||
lib/libkdvi.la
|
||||
lib/libkdvi.so
|
||||
lib/libkfax.la
|
||||
lib/libkfax.so
|
||||
lib/libkghostview.la
|
||||
lib/libkghostview.so
|
||||
lib/libkmultipage.la
|
||||
lib/libkmultipage.so
|
||||
lib/libkmultipage.so.0
|
||||
lib/libkpagetest.la
|
||||
lib/libkpagetest.so
|
||||
%%SANE%%lib/libkscan.la
|
||||
%%SANE%%lib/libkscan.so
|
||||
%%SANE%%lib/libkscan.so.1
|
||||
lib/libkviewerpart.la
|
||||
lib/libkviewerpart.so
|
||||
lib/libkviewpart.la
|
||||
lib/libkviewpart.so
|
||||
share/applnk/Graphics/kcolorchooser.desktop
|
||||
share/applnk/Graphics/kcoloredit.desktop
|
||||
share/applnk/Graphics/kdvi.desktop
|
||||
share/applnk/Graphics/kfax.desktop
|
||||
share/applnk/Graphics/kfract.desktop
|
||||
share/applnk/Graphics/kghostview.desktop
|
||||
share/applnk/Graphics/kiconedit.desktop
|
||||
%%SANE%%share/applnk/Graphics/kooka.desktop
|
||||
share/applnk/Graphics/kpaint.desktop
|
||||
share/applnk/Graphics/kruler.desktop
|
||||
share/applnk/Graphics/ksnapshot.desktop
|
||||
%%IMLIB%%share/applnk/Graphics/kuickshow.desktop
|
||||
share/applnk/Graphics/kview.desktop
|
||||
%%KAMERA%%share/applnk/Settings/Peripherals/kamera.desktop
|
||||
share/apps/kdvi/kdvi_part.rc
|
||||
share/apps/kdvi/tips
|
||||
share/apps/kdvi/toolbar/forwpage.xpm
|
||||
share/apps/kdvi/toolbar/largetext.xpm
|
||||
share/apps/kdvi/toolbar/smalltext.xpm
|
||||
share/apps/kfax/kfax_part.rc
|
||||
share/apps/kfax/pics/kfax.tif
|
||||
share/apps/kfax/pics/kfaxlogo.xpm
|
||||
share/apps/kfract/kfract.rc
|
||||
share/apps/kghostview/kghostviewui.rc
|
||||
share/apps/kghostview/kgv_part.rc
|
||||
share/apps/kghostview/pdf_sec.ps
|
||||
share/apps/kiconedit/pics/compressed.png
|
||||
share/apps/kiconedit/pics/source.png
|
||||
share/apps/kiconedit/pics/standard.png
|
||||
share/apps/kiconedit/toolbar/aim-cursor.xpm
|
||||
share/apps/kiconedit/toolbar/aim.png
|
||||
share/apps/kiconedit/toolbar/areaselect.png
|
||||
share/apps/kiconedit/toolbar/circle.png
|
||||
share/apps/kiconedit/toolbar/ellipse.png
|
||||
share/apps/kiconedit/toolbar/eraser-cursor.xpm
|
||||
share/apps/kiconedit/toolbar/fileclose.png
|
||||
share/apps/kiconedit/toolbar/filledcircle.png
|
||||
share/apps/kiconedit/toolbar/filledellipse.png
|
||||
share/apps/kiconedit/toolbar/filledrectangle.png
|
||||
share/apps/kiconedit/toolbar/flood-cursor.xpm
|
||||
share/apps/kiconedit/toolbar/flood.png
|
||||
share/apps/kiconedit/toolbar/grayscale.png
|
||||
share/apps/kiconedit/toolbar/grid.png
|
||||
share/apps/kiconedit/toolbar/kdepalette.png
|
||||
share/apps/kiconedit/toolbar/line.png
|
||||
share/apps/kiconedit/toolbar/newwin.png
|
||||
share/apps/kiconedit/toolbar/paintbrush-cursor.xpm
|
||||
share/apps/kiconedit/toolbar/paintbrush.png
|
||||
share/apps/kiconedit/toolbar/pointer.png
|
||||
share/apps/kiconedit/toolbar/rectangle.png
|
||||
share/apps/kiconedit/toolbar/selectcircle.png
|
||||
share/apps/kiconedit/toolbar/selectrect.png
|
||||
share/apps/kiconedit/toolbar/spraycan-cursor.xpm
|
||||
share/apps/kiconedit/toolbar/spraycan.png
|
||||
share/apps/kiconedit/toolbar/transform.png
|
||||
%%SANE%%share/apps/kooka/kookaui.rc
|
||||
%%SANE%%share/apps/kooka/pics/mirror-both.png
|
||||
%%SANE%%share/apps/kooka/pics/mirror-horiz.png
|
||||
%%SANE%%share/apps/kooka/pics/mirror-vert.png
|
||||
%%SANE%%share/apps/kooka/pics/newfromselect.png
|
||||
%%SANE%%share/apps/kooka/pics/ocr-select.png
|
||||
%%SANE%%share/apps/kooka/pics/ocr.png
|
||||
%%SANE%%share/apps/kooka/pics/scaleorig.png
|
||||
%%SANE%%share/apps/kooka/pics/scaletoheight.png
|
||||
%%SANE%%share/apps/kooka/pics/scaletowidth.png
|
||||
share/apps/kpaint/kpaint.rc
|
||||
share/apps/kpaint/toolbar/areaselect.xpm
|
||||
share/apps/kpaint/toolbar/brush.xpm
|
||||
share/apps/kpaint/toolbar/circle.xpm
|
||||
share/apps/kpaint/toolbar/ellipse.xpm
|
||||
share/apps/kpaint/toolbar/largetext.xpm
|
||||
share/apps/kpaint/toolbar/line.xpm
|
||||
share/apps/kpaint/toolbar/pen.xpm
|
||||
share/apps/kpaint/toolbar/rectangle.xpm
|
||||
share/apps/kpaint/toolbar/roundangle.xpm
|
||||
share/apps/kpaint/toolbar/spraycan.xpm
|
||||
share/apps/kruler/eventsrc
|
||||
share/apps/kruler/kruler-east.png
|
||||
share/apps/kruler/kruler-north.png
|
||||
share/apps/kruler/kruler-south.png
|
||||
share/apps/kruler/kruler-west.png
|
||||
share/apps/kruler/move.wav
|
||||
%%IMLIB%%share/apps/kuickshow/im_palette.pal
|
||||
%%IMLIB%%share/apps/kuickshow/pics/about.png
|
||||
%%IMLIB%%share/apps/kuickshow/pics/calibrate.png
|
||||
%%IMLIB%%share/apps/kuickshow/pics/handcursor.png
|
||||
%%IMLIB%%share/apps/kuickshow/pics/imageviewer-medium.png
|
||||
%%IMLIB%%share/apps/kuickshow/pics/imageviewer-small.png
|
||||
%%IMLIB%%share/apps/kuickshow/pics/ksslide.png
|
||||
%%IMLIB%%share/apps/kuickshow/pics/kuickshow-day.jpg
|
||||
%%IMLIB%%share/apps/kuickshow/pics/kuickshow-night.jpg
|
||||
%%IMLIB%%share/apps/kuickshow/pics/logo.png
|
||||
share/apps/kview/kview_part.rc
|
||||
share/apps/kview/kview_popup.rc
|
||||
share/apps/kview/kviewui.rc
|
||||
share/apps/kview/toolbar/rotate.png
|
||||
share/apps/kviewerpart/kviewerpart.rc
|
||||
share/apps/kviewshell/kviewshell.rc
|
||||
share/apps/kviewshell/paper-formats
|
||||
share/doc/HTML/en/kcoloredit/common
|
||||
share/doc/HTML/en/kcoloredit/index.cache.bz2
|
||||
share/doc/HTML/en/kcoloredit/index.docbook
|
||||
share/doc/HTML/en/kdvi/KDVI-features.dvi
|
||||
share/doc/HTML/en/kdvi/KDVI-features.tex
|
||||
share/doc/HTML/en/kdvi/aboutkde.ps
|
||||
share/doc/HTML/en/kdvi/common
|
||||
share/doc/HTML/en/kdvi/index.cache.bz2
|
||||
share/doc/HTML/en/kdvi/index.docbook
|
||||
share/doc/HTML/en/kdvi/kdvi-search.el
|
||||
share/doc/HTML/en/kdvi/optionrequester1.png
|
||||
share/doc/HTML/en/kdvi/optionrequester2.png
|
||||
share/doc/HTML/en/kdvi/srcltx.sty
|
||||
share/doc/HTML/en/kdvi/srctex.sty
|
||||
share/doc/HTML/en/kfract/common
|
||||
share/doc/HTML/en/kfract/index.cache.bz2
|
||||
share/doc/HTML/en/kfract/index.docbook
|
||||
share/doc/HTML/en/kfract/kfract.png
|
||||
share/doc/HTML/en/kghostview/common
|
||||
share/doc/HTML/en/kghostview/index.cache.bz2
|
||||
share/doc/HTML/en/kghostview/index.docbook
|
||||
share/doc/HTML/en/kiconedit/common
|
||||
share/doc/HTML/en/kiconedit/index.cache.bz2
|
||||
share/doc/HTML/en/kiconedit/index.docbook
|
||||
share/doc/HTML/en/kooka/common
|
||||
share/doc/HTML/en/kooka/index.cache.bz2
|
||||
share/doc/HTML/en/kooka/index.docbook
|
||||
share/doc/HTML/en/kooka/kooka_gocr.png
|
||||
share/doc/HTML/en/kooka/kooka_gocr_result.png
|
||||
share/doc/HTML/en/kooka/kooka_mainctrl.png
|
||||
share/doc/HTML/en/kpaint/common
|
||||
share/doc/HTML/en/kpaint/index.cache.bz2
|
||||
share/doc/HTML/en/kpaint/index.docbook
|
||||
share/doc/HTML/en/kruler/common
|
||||
share/doc/HTML/en/kruler/index.cache.bz2
|
||||
share/doc/HTML/en/kruler/index.docbook
|
||||
share/doc/HTML/en/ksnapshot/common
|
||||
share/doc/HTML/en/ksnapshot/index.cache.bz2
|
||||
share/doc/HTML/en/ksnapshot/index.docbook
|
||||
share/doc/HTML/en/ksnapshot/preview.png
|
||||
share/doc/HTML/en/ksnapshot/window.png
|
||||
share/doc/HTML/en/kuickshow/common
|
||||
share/doc/HTML/en/kuickshow/index.cache.bz2
|
||||
share/doc/HTML/en/kuickshow/index.docbook
|
||||
share/doc/HTML/en/kview/common
|
||||
share/doc/HTML/en/kview/index.cache.bz2
|
||||
share/doc/HTML/en/kview/index.docbook
|
||||
share/doc/HTML/en/kview/snapshot1.png
|
||||
share/doc/HTML/en/kview/snapshot2.png
|
||||
share/doc/HTML/en/kview/snapshot3.png
|
||||
share/doc/HTML/en/kview/snapshot4.png
|
||||
share/doc/HTML/en/kview/snapshot5.png
|
||||
share/doc/HTML/en/kview/snapshot6.png
|
||||
share/doc/HTML/en/kview/snapshot7.png
|
||||
share/doc/HTML/en/kview/snapshot8.png
|
||||
share/doc/HTML/en/kview/snapshot9.png
|
||||
%%SANE%%share/icons/hicolor/16x16/actions/palette_color.png
|
||||
%%SANE%%share/icons/hicolor/16x16/actions/palette_gray.png
|
||||
%%SANE%%share/icons/hicolor/16x16/actions/palette_halftone.png
|
||||
%%SANE%%share/icons/hicolor/16x16/actions/palette_lineart.png
|
||||
share/icons/hicolor/16x16/apps/kcoloredit.png
|
||||
share/icons/hicolor/16x16/apps/kdvi.png
|
||||
share/icons/hicolor/16x16/apps/kfax.png
|
||||
share/icons/hicolor/16x16/apps/kfract.png
|
||||
share/icons/hicolor/16x16/apps/kghostview.png
|
||||
share/icons/hicolor/16x16/apps/kiconedit.png
|
||||
share/icons/hicolor/16x16/apps/kpaint.png
|
||||
share/icons/hicolor/16x16/apps/kruler.png
|
||||
share/icons/hicolor/16x16/apps/ksnapshot.png
|
||||
%%IMLIB%%share/icons/hicolor/16x16/apps/kuickshow.png
|
||||
share/icons/hicolor/16x16/apps/kview.png
|
||||
share/icons/hicolor/16x16/apps/kviewshell.png
|
||||
%%KAMERA%%share/icons/hicolor/16x16/devices/camera.png
|
||||
share/icons/hicolor/32x32/apps/kcoloredit.png
|
||||
share/icons/hicolor/32x32/apps/kdvi.png
|
||||
share/icons/hicolor/32x32/apps/kfax.png
|
||||
share/icons/hicolor/32x32/apps/kfract.png
|
||||
share/icons/hicolor/32x32/apps/kghostview.png
|
||||
share/icons/hicolor/32x32/apps/kiconedit.png
|
||||
share/icons/hicolor/32x32/apps/kpaint.png
|
||||
share/icons/hicolor/32x32/apps/kruler.png
|
||||
share/icons/hicolor/32x32/apps/ksnapshot.png
|
||||
%%IMLIB%%share/icons/hicolor/32x32/apps/kuickshow.png
|
||||
share/icons/hicolor/32x32/apps/kview.png
|
||||
%%KAMERA%%share/icons/hicolor/32x32/devices/camera.png
|
||||
%%KAMERA%%share/icons/hicolor/32x32/filesystems/camera.png
|
||||
share/icons/hicolor/32x32/apps/kviewshell.png
|
||||
share/icons/hicolor/48x48/apps/kdvi.png
|
||||
share/icons/hicolor/48x48/apps/kfax.png
|
||||
share/icons/hicolor/48x48/apps/kfract.png
|
||||
share/icons/hicolor/48x48/apps/kghostview.png
|
||||
share/icons/hicolor/48x48/apps/kiconedit.png
|
||||
share/icons/hicolor/48x48/apps/kpaint.png
|
||||
share/icons/hicolor/48x48/apps/kruler.png
|
||||
share/icons/hicolor/48x48/apps/ksnapshot.png
|
||||
share/icons/hicolor/48x48/apps/kview.png
|
||||
share/icons/hicolor/48x48/apps/kviewshell.png
|
||||
share/icons/locolor/16x16/apps/kcoloredit.png
|
||||
%%IMLIB%%share/icons/locolor/16x16/apps/kuickshow.png
|
||||
share/icons/locolor/32x32/apps/kcoloredit.png
|
||||
%%IMLIB%%share/icons/locolor/32x32/apps/kuickshow.png
|
||||
%%KAMERA%%share/services/kamera.protocol
|
||||
share/services/kfile_pdf.desktop
|
||||
share/services/kfile_png.desktop
|
||||
share/services/kfile_ps.desktop
|
||||
%%SANE%%share/services/scanservice.desktop
|
||||
@comment directories
|
||||
@dirrm share/services
|
||||
@dirrm share/icons/locolor/32x32/apps
|
||||
@dirrm share/icons/locolor/32x32
|
||||
@dirrm share/icons/locolor/16x16/apps
|
||||
@dirrm share/icons/locolor/16x16
|
||||
@dirrm share/icons/locolor
|
||||
@dirrm share/icons/hicolor/48x48/apps
|
||||
%%KAMERA%%@dirrm share/icons/hicolor/32x32/filesystems
|
||||
%%KAMERA%%@dirrm share/icons/hicolor/32x32/devices
|
||||
@dirrm share/icons/hicolor/32x32/apps
|
||||
%%KAMERA%%@dirrm share/icons/hicolor/16x16/devices
|
||||
@dirrm share/doc/HTML/en/kview
|
||||
@dirrm share/doc/HTML/en/kuickshow
|
||||
@dirrm share/doc/HTML/en/ksnapshot
|
||||
@dirrm share/doc/HTML/en/kruler
|
||||
@dirrm share/doc/HTML/en/kpaint
|
||||
@dirrm share/doc/HTML/en/kooka
|
||||
@dirrm share/doc/HTML/en/kiconedit
|
||||
@dirrm share/doc/HTML/en/kghostview
|
||||
@dirrm share/doc/HTML/en/kfract
|
||||
@dirrm share/doc/HTML/en/kdvi
|
||||
@dirrm share/doc/HTML/en/kcoloredit
|
||||
@dirrm share/apps/kviewshell
|
||||
@dirrm share/apps/kviewerpart
|
||||
@dirrm share/apps/kview/toolbar
|
||||
@dirrm share/apps/kview
|
||||
%%IMLIB%%@dirrm share/apps/kuickshow/pics
|
||||
%%IMLIB%%@dirrm share/apps/kuickshow
|
||||
@dirrm share/apps/kruler
|
||||
@dirrm share/apps/kpaint/toolbar
|
||||
@dirrm share/apps/kpaint
|
||||
%%SANE%%@dirrm share/apps/kooka/pics
|
||||
%%SANE%%@dirrm share/apps/kooka
|
||||
@dirrm share/apps/kiconedit/toolbar
|
||||
@dirrm share/apps/kiconedit/pics
|
||||
@dirrm share/apps/kiconedit
|
||||
@dirrm share/apps/kghostview
|
||||
@dirrm share/apps/kfract
|
||||
@dirrm share/apps/kfax/pics
|
||||
@dirrm share/apps/kfax
|
||||
@dirrm share/apps/kdvi/toolbar
|
||||
@dirrm share/apps/kdvi
|
||||
%%KAMERA%%@dirrm share/applnk/Settings/Peripherals
|
||||
%%KAMERA%%@dirrm share/applnk/Settings
|
||||
@dirrm share/applnk/Graphics
|
||||
@dirrm share/applnk
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
PORTNAME= kdeutils
|
||||
PORTVERSION= ${KDE_VERSION}
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 0
|
||||
CATEGORIES?= misc kde
|
||||
MASTER_SITES= ${MASTER_SITE_KDE}
|
||||
MASTER_SITE_SUBDIR= stable/${PORTVERSION}/src
|
||||
|
@ -16,30 +16,37 @@ DIST_SUBDIR= KDE
|
|||
MAINTAINER?= kde@FreeBSD.org
|
||||
|
||||
USE_KDELIBS_VER=3
|
||||
USE_BZIP2= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GMAKE= yes
|
||||
MAN1= efax.1 efix.1 fax.1
|
||||
PREFIX= ${KDE_PREFIX}
|
||||
KDE_BUILD_PLIST=yes
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
INSTALLS_SHLIB= yes
|
||||
LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3
|
||||
|
||||
#klaptop doesn't like alpha because alpha doesn't support apm
|
||||
.if ${MACHINE_ARCH} == "alpha"
|
||||
WITHOUT_KLAPTOP =yes
|
||||
.endif # ${MACHINE_ARCH} == "alpha"
|
||||
|
||||
.if defined(WITHOUT_KLAPTOP)
|
||||
DO_NOT_COMPILE+=klaptopdaemon
|
||||
PLIST_SUB+= ALPHA_NA="@comment "
|
||||
.else
|
||||
PLIST_SUB+= ALPHA_NA=""
|
||||
.endif
|
||||
PLIST_APPEND+= plist.klaptop
|
||||
.endif # defined(WITHOUT_KLAPTOP)
|
||||
|
||||
# kfloppy is a mostly broken, non-standard, linux-centric pain...
|
||||
.if !defined(WITH_KFLOPPY)
|
||||
DO_NOT_COMPILE+=kfloppy
|
||||
PLIST_SUB+= KFLOPPY="@comment "
|
||||
.else
|
||||
PLIST_SUB+= KFLOPPY=""
|
||||
.endif
|
||||
PLIST_APPEND+= plist.kfloppy
|
||||
.endif # !defined(WITH_KFLOPPY)
|
||||
|
||||
.if defined(DO_NOT_COMPILE)
|
||||
CONFIGURE_ENV+= DO_NOT_COMPILE="${DO_NOT_COMPILE}"
|
||||
.endif
|
||||
.endif # defined(DO_NOT_COMPILE)
|
||||
|
||||
.include "${.CURDIR}/../../x11/kde3/Makefile.kde"
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (KDE/kdeutils-3.0.4.tar.bz2) = e34ccb00b25f04f0a27474fa17d68e77
|
||||
MD5 (KDE/kdeutils-3.1.tar.bz2) = 81e2916ba0fa865053aff858982c040e
|
||||
|
|
247
math/kcalc/files/plist.base
Normal file
247
math/kcalc/files/plist.base
Normal file
|
@ -0,0 +1,247 @@
|
|||
bin/ark
|
||||
bin/kcalc
|
||||
bin/kcharselect
|
||||
bin/kdepasswd
|
||||
bin/kdessh
|
||||
bin/kdf
|
||||
bin/kedit
|
||||
bin/khexedit
|
||||
bin/kjots
|
||||
bin/ksim
|
||||
bin/ktimer
|
||||
bin/kwikdisk
|
||||
include/kmultiformlistbox.h
|
||||
include/kmultiformlistboxentry.h
|
||||
include/kmultiformlistboxfactory.h
|
||||
include/ksim/chart.h
|
||||
include/ksim/common.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/kcalc.la
|
||||
lib/kcalc.so
|
||||
lib/kde3/kcharselect_panelapplet.la
|
||||
lib/kde3/kcharselect_panelapplet.so
|
||||
lib/kde3/kcm_kdf.la
|
||||
lib/kde3/kcm_kdf.so
|
||||
lib/kde3/ksim_cpu.la
|
||||
lib/kde3/ksim_cpu.so
|
||||
lib/kde3/ksim_disk.la
|
||||
lib/kde3/ksim_disk.so
|
||||
lib/kde3/ksim_filesystem.la
|
||||
lib/kde3/ksim_filesystem.so
|
||||
lib/kde3/ksim_net.la
|
||||
lib/kde3/ksim_net.so
|
||||
lib/kde3/ksim_sensors.la
|
||||
lib/kde3/ksim_sensors.so
|
||||
lib/kde3/libkregexpeditorgui.la
|
||||
lib/kde3/libkregexpeditorgui.so
|
||||
lib/kedit.la
|
||||
lib/kedit.so
|
||||
lib/ksim.la
|
||||
lib/ksim.so
|
||||
lib/libarkpart.la
|
||||
lib/libarkpart.so
|
||||
lib/libksimcore.la
|
||||
lib/libksimcore.so
|
||||
lib/libksimcore.so.1
|
||||
share/applnk/Editors/KEdit.desktop
|
||||
share/applnk/Settings/Information/kcmdf.desktop
|
||||
share/applnk/Settingsmenu/kdepasswd.desktop
|
||||
share/applnk/System/More/kdf.desktop
|
||||
share/applnk/System/More/ksim.desktop
|
||||
share/applnk/System/More/kwikdisk.desktop
|
||||
share/applnk/System/kdf.desktop
|
||||
share/applnk/System/kwikdisk.desktop
|
||||
share/applnk/Utilities/KCharSelect.desktop
|
||||
share/applnk/Utilities/Kjots.desktop
|
||||
share/applnk/Utilities/More/KCharSelect.desktop
|
||||
share/applnk/Utilities/More/Kjots.desktop
|
||||
share/applnk/Utilities/More/khexedit.desktop
|
||||
share/applnk/Utilities/More/ktimer.desktop
|
||||
share/applnk/Utilities/ark.desktop
|
||||
share/applnk/Utilities/kcalc.desktop
|
||||
share/applnk/Utilities/kdepasswd.desktop
|
||||
share/applnk/Utilities/khexedit.desktop
|
||||
share/applnk/Utilities/ktimer.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_help.png
|
||||
share/apps/ark/icons/crystalsvg/22x22/actions/ark_new.png
|
||||
share/apps/ark/icons/crystalsvg/22x22/actions/ark_open.png
|
||||
share/apps/ark/icons/crystalsvg/22x22/actions/ark_options.png
|
||||
share/apps/ark/icons/crystalsvg/22x22/actions/ark_selectall.png
|
||||
share/apps/ark/icons/crystalsvg/22x22/actions/ark_view.png
|
||||
share/apps/kdf/pics/delete.png
|
||||
share/apps/kdf/pics/tick.png
|
||||
share/apps/kedit/keditui.rc
|
||||
share/apps/khexedit/toolbar/hexdrag.png
|
||||
share/apps/khexedit/toolbar/hexmask.png
|
||||
share/apps/khexedit/toolbar/hexwrite.png
|
||||
share/apps/kicker/applets/kcharselectapplet.desktop
|
||||
share/apps/kjots/pics/filedel.png
|
||||
share/apps/konqueror/servicemenus/arkservicemenu.desktop
|
||||
share/apps/kregexpeditor/pics/altn.png
|
||||
share/apps/kregexpeditor/pics/anychar.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/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/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/config/ksimrc
|
||||
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/doc/HTML/en/ark/common
|
||||
share/doc/HTML/en/ark/index.cache.bz2
|
||||
share/doc/HTML/en/ark/index.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/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
|
||||
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/icons/crystalsvg/128x128/apps/ark.png
|
||||
share/icons/crystalsvg/128x128/apps/kdf.png
|
||||
share/icons/crystalsvg/16x16/apps/ark.png
|
||||
share/icons/crystalsvg/16x16/apps/kcalc.png
|
||||
share/icons/crystalsvg/16x16/apps/kcharselect.png
|
||||
share/icons/crystalsvg/16x16/apps/kcmdf.png
|
||||
share/icons/crystalsvg/16x16/apps/kdf.png
|
||||
share/icons/crystalsvg/16x16/apps/kedit.png
|
||||
share/icons/crystalsvg/16x16/apps/khexedit.png
|
||||
share/icons/crystalsvg/16x16/apps/kjots.png
|
||||
share/icons/crystalsvg/16x16/apps/ksim.png
|
||||
share/icons/crystalsvg/16x16/apps/kwikdisk.png
|
||||
share/icons/crystalsvg/16x16/devices/ksim_cpu.png
|
||||
share/icons/crystalsvg/32x32/apps/ark.png
|
||||
share/icons/crystalsvg/32x32/apps/kcalc.png
|
||||
share/icons/crystalsvg/32x32/apps/kcmdf.png
|
||||
share/icons/crystalsvg/32x32/apps/kdf.png
|
||||
share/icons/crystalsvg/32x32/apps/kedit.png
|
||||
share/icons/crystalsvg/32x32/apps/khexedit.png
|
||||
share/icons/crystalsvg/32x32/apps/kjots.png
|
||||
share/icons/crystalsvg/32x32/apps/ksim.png
|
||||
share/icons/crystalsvg/32x32/apps/kwikdisk.png
|
||||
share/icons/crystalsvg/48x48/apps/ark.png
|
||||
share/icons/crystalsvg/48x48/apps/kcalc.png
|
||||
share/icons/crystalsvg/48x48/apps/kcharselect.png
|
||||
share/icons/crystalsvg/48x48/apps/kdf.png
|
||||
share/icons/crystalsvg/48x48/apps/kedit.png
|
||||
share/icons/crystalsvg/48x48/apps/khexedit.png
|
||||
share/icons/crystalsvg/48x48/apps/kjots.png
|
||||
share/icons/crystalsvg/48x48/apps/ksim.png
|
||||
share/icons/crystalsvg/64x64/apps/ark.png
|
||||
share/icons/crystalsvg/64x64/apps/kdf.png
|
||||
share/services/ark_part.desktop
|
||||
share/services/kregexpeditorgui.desktop
|
||||
@exec /bin/mkdir -p %D/share/apps/kcalc/pics
|
78
math/kcalc/files/plist.base.rm
Normal file
78
math/kcalc/files/plist.base.rm
Normal file
|
@ -0,0 +1,78 @@
|
|||
@unexec /bin/rmdir %D/share/apps/kcalc/pics || true
|
||||
@dirrm share/services
|
||||
@dirrm share/icons/crystalsvg/64x64/apps
|
||||
@dirrm share/icons/crystalsvg/64x64
|
||||
@dirrm share/icons/crystalsvg/48x48/apps
|
||||
@dirrm share/icons/crystalsvg/48x48
|
||||
@dirrm share/icons/crystalsvg/32x32/apps
|
||||
@dirrm share/icons/crystalsvg/32x32
|
||||
@dirrm share/icons/crystalsvg/16x16/devices
|
||||
@dirrm share/icons/crystalsvg/16x16/apps
|
||||
@dirrm share/icons/crystalsvg/16x16
|
||||
@dirrm share/icons/crystalsvg/128x128/apps
|
||||
@dirrm share/icons/crystalsvg/128x128
|
||||
@dirrm share/icons/crystalsvg
|
||||
@dirrm share/icons
|
||||
@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/kinfocenter
|
||||
@dirrm share/doc/HTML/en/khexedit
|
||||
@dirrm share/doc/HTML/en/kfloppy
|
||||
@dirrm share/doc/HTML/en/kedit
|
||||
@dirrm share/doc/HTML/en/kdf
|
||||
@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/kcontrol
|
||||
@dirrm share/doc/HTML/en/kcharselect
|
||||
@dirrm share/doc/HTML/en/kcalc
|
||||
@dirrm share/doc/HTML/en/ark
|
||||
@dirrm share/doc/HTML/en/KRegExpEditor
|
||||
@dirrm share/doc/HTML/en
|
||||
@dirrm share/doc/HTML
|
||||
@dirrm share/doc
|
||||
@dirrm share/config
|
||||
@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/konqueror/servicemenus
|
||||
@dirrm share/apps/konqueror
|
||||
@dirrm share/apps/kjots/pics
|
||||
@dirrm share/apps/kjots
|
||||
@dirrm share/apps/kicker/applets
|
||||
@dirrm share/apps/kicker
|
||||
@dirrm share/apps/khexedit/toolbar
|
||||
@dirrm share/apps/khexedit
|
||||
@dirrm share/apps/kedit
|
||||
@dirrm share/apps/kdf/pics
|
||||
@dirrm share/apps/kdf
|
||||
@dirrm share/apps/kcalc
|
||||
@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 share/apps
|
||||
@dirrm share/applnk/Utilities/More
|
||||
@dirrm share/applnk/Utilities
|
||||
@dirrm share/applnk/System/More
|
||||
@dirrm share/applnk/System
|
||||
@dirrm share/applnk/Settingsmenu
|
||||
@dirrm share/applnk/Settings/Information
|
||||
@dirrm share/applnk/Settings
|
||||
@dirrm share/applnk/Editors
|
||||
@dirrm share/applnk
|
||||
@dirrm lib/kde3
|
||||
@dirrm include/ksim
|
7
math/kcalc/files/plist.kfloppy
Normal file
7
math/kcalc/files/plist.kfloppy
Normal file
|
@ -0,0 +1,7 @@
|
|||
bin/kfloppy
|
||||
share/applnk/Utilities/KFloppy.desktop
|
||||
share/icons/crystalsvg/128x128/apps/kfloppy.png
|
||||
share/icons/crystalsvg/16x16/apps/kfloppy.png
|
||||
share/icons/crystalsvg/32x32/apps/kfloppy.png
|
||||
share/icons/crystalsvg/48x48/apps/kfloppy.png
|
||||
share/icons/crystalsvg/64x64/apps/kfloppy.png
|
22
math/kcalc/files/plist.klaptop
Normal file
22
math/kcalc/files/plist.klaptop
Normal file
|
@ -0,0 +1,22 @@
|
|||
bin/klaptopdaemon
|
||||
lib/kde3/kcm_laptop.la
|
||||
lib/kde3/kcm_laptop.so
|
||||
lib/klaptopdaemon.la
|
||||
lib/klaptopdaemon.so
|
||||
share/applnk/Settings/Information/pcmcia.desktop
|
||||
share/applnk/Settings/PowerControl/laptop.desktop
|
||||
share/apps/klaptopdaemon/icons/crystalsvg/16x16/actions/laptop_charge.png
|
||||
share/apps/klaptopdaemon/icons/crystalsvg/16x16/actions/laptop_nobattery.png
|
||||
share/apps/klaptopdaemon/icons/crystalsvg/16x16/actions/laptop_nocharge.png
|
||||
share/apps/klaptopdaemon/icons/crystalsvg/16x16/actions/power.png
|
||||
share/apps/klaptopdaemon/icons/crystalsvg/32x32/actions/power.png
|
||||
share/icons/crystalsvg/128x128/apps/laptop_battery.png
|
||||
share/icons/crystalsvg/16x16/apps/klaptopdaemon.png
|
||||
share/icons/crystalsvg/16x16/apps/laptop_battery.png
|
||||
share/icons/crystalsvg/16x16/apps/laptop_pcmcia.png
|
||||
share/icons/crystalsvg/32x32/apps/laptop_battery.png
|
||||
share/icons/crystalsvg/32x32/apps/laptop_pcmcia.png
|
||||
share/icons/crystalsvg/48x48/apps/laptop_battery.png
|
||||
share/icons/crystalsvg/48x48/apps/laptop_pcmcia.png
|
||||
share/icons/crystalsvg/64x64/apps/laptop_battery.png
|
||||
share/services/klaptopdaemon.desktop
|
8
math/kcalc/files/plist.klaptop.rm
Normal file
8
math/kcalc/files/plist.klaptop.rm
Normal file
|
@ -0,0 +1,8 @@
|
|||
@dirrm share/apps/klaptopdaemon/icons/crystalsvg/32x32/actions
|
||||
@dirrm share/apps/klaptopdaemon/icons/crystalsvg/32x32
|
||||
@dirrm share/apps/klaptopdaemon/icons/crystalsvg/16x16/actions
|
||||
@dirrm share/apps/klaptopdaemon/icons/crystalsvg/16x16
|
||||
@dirrm share/apps/klaptopdaemon/icons/crystalsvg
|
||||
@dirrm share/apps/klaptopdaemon/icons
|
||||
@dirrm share/apps/klaptopdaemon
|
||||
@dirrm share/applnk/Settings/PowerControl
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue