Ok, it seems I have it generally working now. I have attached a patch to
kdelibs that lets KDE Applications use the font substitutions defined in
XftConfig and lets users select fixed width fonts.
It seems that both Qt and XFree86 are far from complete with regard to
Antialiasing support, but this will help work around the biggest
problems.
I have included a spec files for the recommended font files from
http://keithp.com/~keithp/fonts/truetype.tar.gz and my patched
kdelibs. Could someone please package this correctly?
I also have a XftConfig that should handle all situations of the
font packages in cooker, but needs some testing to make sure it
does not make things worse.
To test this, copy it to /usr/X11R6/lib/X11/ and check the available
and default fonts in the KDE control panel. There is no need to
'xset fp rehash' to to restart the server.
Especially try to see if any of the installed fonts is significantly
better than the one used as a replacement for Helvetica.
In theory antialiasing should work for most people with this, but
it still should not be the default. I suppose it breaks at least
for people with charsets other than Latin-1.
Arnd <><
kdelibs-qt_xft.patch.bz2
#
# XftConfig
#
# Use with Type1 and TrueType fonts
#
# Standard XFree86 Type 1 fonts
dir "/usr/X11R6/lib/X11/fonts/Type1"
# Default location for Microsoft Web Fonts
dir "/usr/X11R6/lib/X11/fonts/truetype"
# URW fonts
dir "/usr/share/fonts/default/Type1"
# Localized Truetype fonts
dir "/usr/share/fonts/ttf/armenian"
dir "/usr/share/fonts/ttf/big5"
dir "/usr/share/fonts/ttf/decoratives"
dir "/usr/share/fonts/ttf/gb2312"
dir "/usr/share/fonts/ttf/japanese"
dir "/usr/share/fonts/ttf/korean"
dir "/usr/share/fonts/ttf/western"
# Sun JDK fonts
dir "/usr/java/jdk1.3/jre/lib/fonts"
# Sun OpenOffice, location depends on install
dir "/usr/openoffice60/share/fonts/type1"
dir "/usr/local/openoffice60/share/fonts/type1"
dir "/root/openoffice60/share/fonts/type1"
dir "~/openoffice60/share/fonts/type1"
# User installed fonts
dir "/usr/X11R6/lib/X11/fonts/drakfont"
#
# alias 'fixed' for 'mono'
#
match any family == "fixed" edit family =+ "mono";
#
# Check users config file
#
includeif "~/.xftconfig"
#
# Substitute TrueType fonts for Type1 versions
#
match any family == "Times" edit family += "Times New Roman";
match any family == "Helvetica" edit family += "Verdana";
match any family == "Courier" edit family += "Courier New";
#
# Use TrueType fonts for defaults
#
match any family == "serif" edit family += "Times New Roman";
match any family == "sans" edit family += "Verdana";
#
# Use monotype.com (andale) face where possible
#
match
any family == "mono"
all slant == roman
all weight < bold
edit
family += "monotype.com";
#
# otherwise, use courier
#
match any family == "mono" edit family += "Courier New";
match any family == "mono" edit family += "Courier";
#
# Alias between XLFD families and font file family name, prefer local fonts
#
match any family == "Charter" edit family += "Bitstream Charter";
match any family == "Bitstream Charter" edit family =+ "Charter";
match any family == "Lucidux Serif" edit family += "LuciduxSerif";
match any family == "LuciduxSerif" edit family =+ "Lucidux Serif";
match any family == "Lucidux Sans" edit family += "LuciduxSans";
match any family == "LuciduxSans" edit family =+ "Lucidux Sans";
match any family == "Lucidux Mono" edit family += "LuciduxMono";
match any family == "LuciduxMono" edit family =+ "Lucidux Mono";
#
# TrueType font aliases
#
match any family == "Comic Sans" edit family += "Comic Sans MS";
match any family == "Comic Sans MS" edit family =+ "Comic Sans";
match any family == "Trebuchet" edit family += "Trebuchet MS";
match any family == "Trebuchet MS" edit family =+ "Trebuchet";
match any family == "Monotype" edit family =+ "Monotype.com";
match any family == "Andale Mono" edit family += "Monotype.com";
match any family == "Monotype.com" edit family =+ "Andale Mono";
#
# use URW fonts if no TrueType fonts are found
#
match any family == "sans" edit family += "Nimbus Sans L";
match any family == "Verdana" edit family += "Nimbus Sans L";
match any family == "Helvetica" edit family += "Nimbus Sans L";
match any family == "serif" edit family += "Nimbus Roman No9 L";
match any family == "Times" edit family += "Nimbus Roman No9 L";
match any family == "Times New Roman" edit family += "Nimbus Roman No9 L";
match any family == "mono" edit family += "Nimbus Mono L";
match any family == "Courier" edit family += "Nimbus Mono L";
match any family == "Courier New" edit family += "Nimbus Mono L";
#
# Maybe western fonts are installed
#
match any family == "sans" edit family += "Blue Highway";
match any family == "Verdana" edit family += "Blue Highway";
match any family == "Helvetica" edit family += "Blue Highway";
#
# fallback if better fonts installed
#
match any family == "sans" edit family += "LuciduxSans";
match any family == "Helvetica" edit family += "LuciduxSans";
match any family == "Verdana" edit family += "LuciduxSans";
match any family == "serif" edit family += "LuciduxSerif";
match any family == "Times" edit family += "LuciduxSerif";
match any family == "Times New Roman" edit family += "LuciduxSerif";
%define name fonts-ttf-ms
%define version 1.0.0
%define release 1mdk
Summary: TrueType core fonts for the Web
Name: %{name}
Version: %{version}
Release: %{release}
Source0: http://keithp.com/~keithp/fonts/truetype.tar.bz2
License: distributable
Group: System/Fonts/True type
Prefix: %{_prefix}
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-buildroot
URL: http://www.microsoft.com/typography/fontpack/
# to be sure we have a font server
Requires: /etc/X11/fs/config
# and be sure there is TTF support
Requires: freetype
%description
This package contains the TrueType core fonts for the Web from Microsoft.
If you want to use Antialiased fonts in KDE, you should install this
package.
%prep
rm -rf $RPM_BUILD_ROOT
%setup -n truetype
%build
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT/usr/X11R6/lib/X11/fonts/truetype
/usr/sbin/ttmkfdir > fonts.scale
/usr/sbin/ttmkfdir > fonts.dir
cp * $RPM_BUILD_ROOT/usr/X11R6/lib/X11/fonts/truetype/
ln -s /etc/X11/encodings.dir \
$RPM_BUILD_ROOT/usr/X11R6/lib/X11/fonts/truetype/encodings.dir
%post
if [ -x /usr/sbin/chkfontpath ]; then
/usr/sbin/chkfontpath -q -a /usr/X11R6/lib/X11/fonts/truetype
else
echo "you don't have a chkfontpath utility; you will need to manually"
echo "install the fonts into your TTF enabled font server"
fi
%postun
# 0 means a real uninstall
if [ "$1" = "0" ]; then
[ -x /usr/sbin/chkfontpath ] && \
/usr/sbin/chkfontpath -q -r /usr/X11R6/lib/X11/fonts/truetype
fi
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(0644,root,root,0755)
/usr/X11R6/lib/X11/fonts/truetype/*ttf
/usr/X11R6/lib/X11/fonts/truetype/fonts.dir
/usr/X11R6/lib/X11/fonts/truetype/fonts.scale
/usr/X11R6/lib/X11/fonts/truetype/encodings.dir
%doc LICENSE
%changelog
* Tue Mar 13 2001 Arnd Bergmann <[EMAIL PROTECTED]> 1.0-1mdk
- First Build, based on fonts-ttf-armenian
--- kdelibs.spec Mon Mar 12 12:30:01 2001
+++ kdelibs.spec-new Tue Mar 13 19:16:07 2001
@@ -7,7 +7,7 @@
Icon: kde-icon.xpm
Summary: K Desktop Environment - Libraries
Version: 2.1
-Release: 4mdk
+Release: 5mdk
License: ARTISTIC BSD GPL_V2 LGPL_V2 QPL_V1.0
# Dadou - 2.1-0.20010121.1mdk - Assume a very dark past.
# Please don't remove or modify Epoch if it's
@@ -32,6 +32,7 @@
# Unsupported action listDir. This patch fix that.
# It was bug #21981 in KDE bugs tracking system
Patch3: kdelibs-2.1-prevent-Unsupported-action-listDir.patch.bz2
+Patch4: kdelibs-qt_xft.patch.bz2
BuildRoot: %_tmppath/%name-%version-%release-root
Obsoletes: kdelibs-crypto
@@ -123,6 +124,7 @@
%patch1 -p1 -b .mdkicon
%patch2 -p1 -b .supath
%patch3 -p1
+%patch4 -p1 -b _qt_xft
%build
# Dadou - 2.1-4mdk - -fomit-frame-pointer breaks khtml
@@ -1009,6 +1011,9 @@
# Dadou - 2.1-1mdk - Dear packager, before write your changelog, have you check
# all %%files? If yes, have you put your tag?
%changelog
+* Tue Mar 13 2001 Arnd Bergmann <[EMAIL PROTECTED]> 2.1-5mdk
+- Fix font resolving with antialiased Qt 2.3
+
* Sat Mar 10 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-4mdk
- Rebuild against Qt 2.3
- Fix BuildRequires
# Dadou - 2.1-0.20010121.1mdk - Define LMDK version - Be carefull if you modify
# this macro. Its result appear in all bug report
# send to the KDE team
%{expand:%%define mdk_version %(A=$(awk '{print $4}' /etc/mandrake-release); B=$(awk
'{print $5}' /etc/mandrake-release); if [ -n "$A" ];then echo $A $B;else echo
Cooker;fi)}
Name: kdelibs
Icon: kde-icon.xpm
Summary: K Desktop Environment - Libraries
Version: 2.1
Release: 5mdk
License: ARTISTIC BSD GPL_V2 LGPL_V2 QPL_V1.0
# Dadou - 2.1-0.20010121.1mdk - Assume a very dark past.
# Please don't remove or modify Epoch if it's
# not needed.
Epoch: 30000000
Group: Graphical desktop/KDE
Source: %name-%version.tar.bz2
Source1: kde-menu
Source2: removekdesysmenu.pl
Source3: restorekdemimetypes.sh
Source4: savekdemimetypes.sh
Source5: mdk-locolor-index.desktop
Patch1: kdelibs-iconssearch.patch.bz2
Patch2: kdelibs.kdesupath.patch.bz2
# Dadou - 2.1-8mdk - When you use Konqueror as Web browser, using "Location ->
# Open URL" open a dialog box which contains URL currently
# using. If you click on "Open filedialog" (the little folder),
# Konqueror try to list files and directory avalaible on remote
# server. Of course, it's not possible and you can see:
# Unsupported action listDir. This patch fix that.
# It was bug #21981 in KDE bugs tracking system
Patch3: kdelibs-2.1-prevent-Unsupported-action-listDir.patch.bz2
Patch4: kdelibs-qt_xft.patch.bz2
BuildRoot: %_tmppath/%name-%version-%release-root
Obsoletes: kdelibs-crypto
BuildRequires: autoconf automake db1 diffutils docbook-dtd31-sgml
BuildRequires: docbook-dtd412-xml docbook-dtd41-sgml docbook-style-dsssl
BuildRequires: file freetype2 gawk gcc-c++ gcc-cpp gettext kdoc libaudiofile0
BuildRequires: libbinutils2 libbzip2_1 libjpeg62 libjpeg62-devel libmng1 libpng2
BuildRequires: libqt2 libqt2-devel libstdc++ libtermcap libtiff3 m4 Mesa-common
BuildRequires: mktemp MySQL-devel openjade openssl openssl-devel pam perl popt
BuildRequires: postgresql-devel readline rpm-build sgml-common texinfo
BuildRequires: XFree86-devel XFree86-libs XFree86-static-libs zlib1
%ifarch %ix86
BuildRequires: alsa-lib
%endif
%description
Libraries for the K Desktop Environment.
%package devel
Group: Development/KDE and QT
Summary: Header files and documentation for compiling KDE applications.
Requires: kdelibs = %version-%release, libqt2-devel
%description devel
This package includes the header files you will need to compile
applications for KDE. Also included is the KDE API documentation in HTML
format for easy browsing.
%package devel-static-libraries
Summary: Static libraries for kdelibs
Group: Development/KDE and QT
Requires: %name-devel = %version-%release
%description devel-static-libraries
This package contains kdelibs static libraries.
You don't need to install it if you wish not build applications statically
linked with libraires included in this package.
%package sound
Group: Graphical desktop/KDE
Summary: K Desktop Environment - Libraries for sound support
%description sound
Libraries for sound support in the K Desktop Environment: arts and libkmid.
This package can be installed without kde (used by xmms and others).
%package sound-devel
Group: Development/KDE and QT
Summary: Header files and documentation for compiling KDE applications with
sound
Requires: %name-sound = %version-%release
%description sound-devel
This package includes the header files you will need to compile applications
using the KDE sound libraries, arts and libkmid.
The API documentation for these libraries is also included (in HTML format for
easy browsing.
%package -n arts
Group: Graphical desktop/KDE
Summary: An Analog RealTime Synthesizer
%description -n arts
aRts is a short form for "analog realtime synthesizer". The idea of the whole
thing is to create/process sound using small modules which do certain tasks.
These may be create a waveform (oscillators), play samples, filter data, add
signals, perform effects like delay/flanger/chorus, or output the data to the
soundcard.
%package -n libarts2
Group: Graphical desktop/KDE
Summary: The libraries for arts
%description -n libarts2
Libraries needed for arts.
%package -n libarts2-devel
Group: Development/KDE and QT
Summary: Development files for arts
Requires: libarts2 = %version-%release
%description -n libarts2-devel
Development libraries for arts.
%prep
%setup -q -n %name-%version
%patch1 -p1 -b .mdkicon
%patch2 -p1 -b .supath
%patch3 -p1
%patch4 -p1 -b _qt_xft
%build
# Dadou - 2.1-4mdk - -fomit-frame-pointer breaks khtml
CFLAGS="%optflags" CXXFLAGS="`echo %optflags |sed -e 's/-fomit-frame-pointer//'`" \
./configure --prefix=%_prefix \
--enable-final \
--disable-debug \
--enable-shared \
--enable-static \
--disable-mt \
--with-qt-includes=%_includedir/qt2/ \
--with-qt-libraries=%_libdir \
--disable-rpath \
--with-distribution="Linux-Mandrake 8.0 Beta 2" \
%ifarch %ix86
--with-alsa \
%endif
--enable-informix \
--enable-mysql \
--enable-pgsql \
--with-ssl-dir=%_prefix
make
%install
# Dadou - 2.1-0.20010121.1mdk - Don't use makeinstall macro. It seems that it
# works fine but in fact, it's not the case.
make DESTDIR=%buildroot install
# Menu-method and Co.
install -d %buildroot/%_sysconfdir/menu-methods/
install -m755 %SOURCE1 %buildroot/%_sysconfdir/menu-methods/kde
install -m755 %SOURCE2 %buildroot/%_bindir
install -m755 %SOURCE3 %buildroot/%_bindir
install -m755 %SOURCE4 %buildroot/%_bindir
install -d %buildroot/%_iconsdir/mdk-locolor/
install -m644 %SOURCE5 %buildroot/%_iconsdir/mdk-locolor/index.desktop
(
cd %buildroot/%_iconsdir/mdk-locolor
ln -s ../mini ./mini
ln -s ../large ./large
ln -s .. ./normal
)
# Dadou - 2.1-0.20010121-1mdk - Fix broken links
(
cd %buildroot/%_docdir/HTML/en/common
rm -f common
)
(
cd %buildroot/%_docdir/HTML/en/kspell
rm -f common
ln -s %_docdir/HTML/en/common/ common
)
# Dadou - 2.1-0.20010121-1mdk - This file is already included in
# libtool-devel package
rm -f %buildroot/%_includedir/ltdl.h
# Generate API documentation
mv %buildroot/%_docdir/HTML/en/kspell/ %buildroot/%_docdir/HTML/en/kspell-base/
QTDOCDIR=%_docdir/qt-2.3.0/html/
KDEDOCDIR=%buildroot/%_docdir/HTML/en/
export QTDOCDIR KDEDOCDIR
qt2kdoc --url=$QTDOCDIR \
--outdir=$DESTDIR/$KDEDOCDIR/kdoc-reference \
--compress \
$QTDOCDIR
makekdedoc --libdir=$KDEDOCDIR/kdoc-reference \
--kdocopt='--skip-internal --compress' \
--url=$KDEDOCDIR \
--outputdir=$DESTDIR/$KDEDOCDIR
cp doc/api/kpixmapio-perf.png $KDEDOCDIR/kdeui
cp doc/api/kcolordialog.png $KDEDOCDIR/kdeui
cp doc/api/kfontdialog.png $KDEDOCDIR/kdeui
cp doc/api/kkeydialog.png $KDEDOCDIR/kdeui
cp doc/api/kedittoolbar.png $KDEDOCDIR/kdeui
cp doc/api/kdatepicker.png $KDEDOCDIR/kdeui
cp doc/api/kfiledialog.png $KDEDOCDIR/kfile
cp kio/DESKTOP_ENTRY_STANDARD $KDEDOCDIR/kio
sed -e "s#_QTDOCDIR_#$QTDOCDIR#g" doc/api/index.docbook.in > doc/api/index.docbook
( cd doc/api && kdb2html `pwd`/index.docbook )
cp doc/api/HTML/* $KDEDOCDIR
mv %buildroot/%_docdir/HTML/en/kspell/ %buildroot/%_docdir/HTML/en/kspell-devel/
mv %buildroot/%_docdir/HTML/en/kspell-base/ %buildroot/%_docdir/HTML/en/kspell/
# Dadou - 2.1-1mdk - %%_docdir/HTML/en/kab/index.html conflicts with kdeutils
mv %buildroot/%_docdir/HTML/en/kab/ %buildroot/%_docdir/HTML/en/kab-devel/
# Dadou - 2.1-1mdk - Don't use %%_datadir macro to replace /usr/share/ - This
# rm -fr is only here as a work around to an old buggy
# package which didn't uninstall this directory after a
# "rpm -e"
%pre
rm -fr /usr/share/doc/HTML/default/
%post
/sbin/ldconfig
%postun
/sbin/ldconfig
%post sound
/sbin/ldconfig
%postun sound
/sbin/ldconfig
%post devel
/sbin/ldconfig
%postun devel
/sbin/ldconfig
%post sound-devel
/sbin/ldconfig
%postun sound-devel
/sbin/ldconfig
%post -n libarts2
/sbin/ldconfig
%postun -n libarts2
/sbin/ldconfig
%post -n libarts2-devel
/sbin/ldconfig
%postun -n libarts2-devel
/sbin/ldconfig
%clean
rm -fr %buildroot
# Dadou - 2.1-0.20010202.1mdk - Detailed file list is needed to have clean and
# safe updates.
# Please don't modify it or simplify it if it's
# ABSOLUTLY needed.
# You NEED to CHECk it EACH TIME you make a new
# package. If you don't do it, I warn you, I'll
# kill you.
# Last check: Dadou - 2.1-4mdk
%files
%defattr(-,root,root,-)
%dir %_sysconfdir/menu-methods/
%config(noreplace) %_sysconfdir/menu-methods/kde
#
%dir %_datadir/config/
%config(noreplace) %_datadir/config/charsets
%config(noreplace) %_datadir/config/kdebug.areas
%config(noreplace) %_datadir/config/kdebugrc
#
%dir %_datadir/config/colors/
%config(noreplace) "%_datadir/config/colors/40 Colors"
%config(noreplace) %_datadir/config/colors/Royal
%config(noreplace) %_datadir/config/colors/Web
#
%dir %_datadir/config/ui/
%config(noreplace) %_datadir/config/ui/ui_standards.rc
#
#
%dir %_datadir/apps/LICENSES/
%doc %_datadir/apps/LICENSES/ARTISTIC
%doc %_datadir/apps/LICENSES/BSD
%doc %_datadir/apps/LICENSES/GPL_V2
%doc %_datadir/apps/LICENSES/LGPL_V2
%doc %_datadir/apps/LICENSES/QPL_V1.0
#
%dir %_docdir/HTML/
%doc %_docdir/HTML/default
#
%dir %_docdir/HTML/en/
%dir %_docdir/HTML/en/common/
%doc %_docdir/HTML/en/common/*.css
%doc %_docdir/HTML/en/common/*.dcl
%doc %_docdir/HTML/en/common/*.html
%doc %_docdir/HTML/en/common/*.png
%doc %_docdir/HTML/en/common/fdl-license
%doc %_docdir/HTML/en/common/gpl-license
%doc %_docdir/HTML/en/common/lgpl-license
#
%dir %_docdir/HTML/en/kspell/
%doc %_docdir/HTML/en/kspell/.anchors
%doc %_docdir/HTML/en/kspell/common
%doc %_docdir/HTML/en/kspell/*.docbook
%doc %_docdir/HTML/en/kspell/*.html
#
#
%_bindir/dcop
%_bindir/dcopidl
%_bindir/dcopidl2cpp
%_bindir/dcopserver
%_bindir/kbuildsycoca
%_bindir/kcookiejar
%_bindir/kdb2html
%_bindir/kde-config
%_bindir/kded
%_bindir/kdeinit
%_bindir/kdeinit_wrapper
%_bindir/kdesu_stub
%_bindir/kio_http_cache_cleaner
%_bindir/kio_uiserver
%_bindir/klauncher
%_bindir/kmailservice
%_bindir/ksendbugmail
%_bindir/lnusertemp
%_bindir/removekdesysmenu.pl
%_bindir/restorekdemimetypes.sh
%_bindir/savekdemimetypes.sh
%_bindir/settheme
#
#
%_libdir/b3style.la
%_libdir/basicstyle.la
%_libdir/dcopserver.la
%_libdir/hcstyle.la
%_libdir/kbuildsycoca.la
%_libdir/kcookiejar.la
%_libdir/kded.la
%_libdir/kio_http_cache_cleaner.la
%_libdir/kio_uiserver.la
%_libdir/kjs_html.la
%_libdir/klauncher.la
%_libdir/klegacystyle.la
%_libdir/ksasl_auth_plain.la
%_libdir/ksgistyle.la
%_libdir/kstephighcolor.la
%_libdir/kstepstyle.la
%_libdir/libDCOP.la
%_libdir/libkab.la
%_libdir/libkdecore.la
%_libdir/libkdesu.la
%_libdir/libkdeui.la
%_libdir/libkfile.la
%_libdir/libkhtml.la
%_libdir/libkhtmlimage.la
%_libdir/libkio.la
%_libdir/libkjava.la
%_libdir/libkjs.la
%_libdir/libkparts.la
%_libdir/libksasl.la
%_libdir/libkspell.la
%_libdir/libkssl.la
%_libdir/libksycoca.la
%_libdir/libktexteditor.la
%_libdir/libx11globalcomm.la
#
%_libdir/b3style.so
%_libdir/basicstyle.so
%_libdir/dcopserver.so
%_libdir/hcstyle.so
%_libdir/kbuildsycoca.so
%_libdir/kcookiejar.so
%_libdir/kded.so
%_libdir/kio_http_cache_cleaner.so
%_libdir/kio_uiserver.so
%_libdir/kjs_html.so
%_libdir/klauncher.so
%_libdir/klegacystyle.so
%_libdir/ksasl_auth_plain.so
%_libdir/ksgistyle.so
%_libdir/kstephighcolor.so
%_libdir/kstepstyle.so
%_libdir/libDCOP.so*
%_libdir/libkab.so*
%_libdir/libkdecore.so*
%_libdir/libkdefakes.la
%_libdir/libkdefakes.so*
%_libdir/libkdesu.so*
%_libdir/libkdeui.so*
%_libdir/libkfile.so*
%_libdir/libkhtml.so*
%_libdir/libkhtmlimage.so*
%_libdir/libkio.so*
%_libdir/libkjava.so*
%_libdir/libkjs.so*
%_libdir/libkparts.so*
%_libdir/libksasl.so
%_libdir/libkspell.so*
%_libdir/libkssl.so*
%_libdir/libksycoca.so*
%_libdir/libktexteditor.so*
%_libdir/libx11globalcomm.so*
#
%dir %_libdir/kde2/
%_libdir/kde2/*.la
%_libdir/kde2/*.so
#
%dir %_datadir/apps/
%dir %_datadir/apps/kab/
%_datadir/apps/kab/*.config
%_datadir/apps/kab/*.kab
#
%dir %_datadir/apps/kab/pics/
#
%dir %_datadir/apps/kdeui/
%dir %_datadir/apps/kdeui/pics/
%_datadir/apps/kdeui/pics/*.png
#
%dir %_datadir/apps/khtml/
%_datadir/apps/khtml/*.rc
#
%dir %_datadir/apps/khtml/css/
%_datadir/apps/khtml/css/*.css
#
%dir %_datadir/apps/khtml/icons/
%dir %_datadir/apps/khtml/icons/hicolor/
%dir %_datadir/apps/khtml/icons/hicolor/22x22/
%dir %_datadir/apps/khtml/icons/hicolor/22x22/actions/
%_datadir/apps/khtml/icons/hicolor/22x22/actions/*.png
#
%dir %_datadir/apps/khtml/icons/hicolor/32x32/
%dir %_datadir/apps/khtml/icons/hicolor/32x32/actions/
%_datadir/apps/khtml/icons/hicolor/32x32/actions/*.png
#
%dir %_datadir/apps/khtml/icons/locolor/
%dir %_datadir/apps/khtml/icons/locolor/16x16/
%dir %_datadir/apps/khtml/icons/locolor/16x16/actions/
%_datadir/apps/khtml/icons/locolor/16x16/actions/*.png
#
%dir %_datadir/apps/kio_uiserver/
%dir %_datadir/apps/kio_uiserver/icons/
%dir %_datadir/apps/kio_uiserver/icons/locolor/
%dir %_datadir/apps/kio_uiserver/icons/locolor/16x16/
%dir %_datadir/apps/kio_uiserver/icons/locolor/16x16/apps/
%_datadir/apps/kio_uiserver/icons/locolor/16x16/apps/*.png
#
%dir %_datadir/apps/kjava/
%_datadir/apps/kjava/*.jar
%_datadir/apps/kjava/*.policy
#
%dir %_datadir/apps/knotify/
%_datadir/apps/knotify/eventsrc
#
%dir %_datadir/apps/ksgmltools/
%_datadir/apps/ksgmltools/catalog
%_datadir/apps/ksgmltools/kde.dcl
#
%dir %_datadir/apps/ksgmltools/ca/
%_datadir/apps/ksgmltools/ca/catalog
%_datadir/apps/ksgmltools/ca/*.entities
#
%dir %_datadir/apps/ksgmltools/ca/entities/
%_datadir/apps/ksgmltools/ca/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/cs/
%_datadir/apps/ksgmltools/cs/catalog
%_datadir/apps/ksgmltools/cs/*.entities
#
%dir %_datadir/apps/ksgmltools/cs/entities/
%_datadir/apps/ksgmltools/cs/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/da/
%_datadir/apps/ksgmltools/da/catalog
%_datadir/apps/ksgmltools/da/*.entities
#
%dir %_datadir/apps/ksgmltools/da/entities/
%_datadir/apps/ksgmltools/da/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/de/
%_datadir/apps/ksgmltools/de/catalog
%_datadir/apps/ksgmltools/de/*.entities
#
%dir %_datadir/apps/ksgmltools/de/entities/
%_datadir/apps/ksgmltools/de/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/dtd/
%_datadir/apps/ksgmltools/dtd/*.dtd
%_datadir/apps/ksgmltools/dtd/*.elements
#
%dir %_datadir/apps/ksgmltools/el/
%_datadir/apps/ksgmltools/el/catalog
%_datadir/apps/ksgmltools/el/*.entities
#
%dir %_datadir/apps/ksgmltools/el/entities/
%_datadir/apps/ksgmltools/el/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/en/
%_datadir/apps/ksgmltools/en/catalog
%_datadir/apps/ksgmltools/en/*.entities
#
%dir %_datadir/apps/ksgmltools/en/entities/
%_datadir/apps/ksgmltools/en/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/entities/
%_datadir/apps/ksgmltools/entities/*.entities
#
%dir %_datadir/apps/ksgmltools/es/
%_datadir/apps/ksgmltools/es/catalog
%_datadir/apps/ksgmltools/es/*.entities
#
%dir %_datadir/apps/ksgmltools/es/entities/
%_datadir/apps/ksgmltools/es/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/et/
%_datadir/apps/ksgmltools/et/catalog
%_datadir/apps/ksgmltools/et/*.entities
#
%dir %_datadir/apps/ksgmltools/et/entities/
%_datadir/apps/ksgmltools/et/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/fi/
%_datadir/apps/ksgmltools/fi/catalog
%_datadir/apps/ksgmltools/fi/*.entities
#
%dir %_datadir/apps/ksgmltools/fi/entities/
%_datadir/apps/ksgmltools/fi/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/fr/
%_datadir/apps/ksgmltools/fr/catalog
%_datadir/apps/ksgmltools/fr/*.entities
#
%dir %_datadir/apps/ksgmltools/fr/entities/
%_datadir/apps/ksgmltools/fr/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/hu/
%_datadir/apps/ksgmltools/hu/catalog
%_datadir/apps/ksgmltools/hu/*.entities
#
%dir %_datadir/apps/ksgmltools/hu/entities/
%_datadir/apps/ksgmltools/hu/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/it/
%_datadir/apps/ksgmltools/it/catalog
%_datadir/apps/ksgmltools/it/*.entities
#
%dir %_datadir/apps/ksgmltools/it/entities/
%_datadir/apps/ksgmltools/it/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/ja/
%_datadir/apps/ksgmltools/ja/catalog
%_datadir/apps/ksgmltools/ja/*.entities
#
%dir %_datadir/apps/ksgmltools/ja/entities/
%_datadir/apps/ksgmltools/ja/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/ko/
%_datadir/apps/ksgmltools/ko/catalog
%_datadir/apps/ksgmltools/ko/*.entities
#
%dir %_datadir/apps/ksgmltools/ko/entities/
%_datadir/apps/ksgmltools/ko/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/nl/
%_datadir/apps/ksgmltools/nl/catalog
%_datadir/apps/ksgmltools/nl/*.entities
#
%dir %_datadir/apps/ksgmltools/nl/entities/
%_datadir/apps/ksgmltools/nl/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/no/
%_datadir/apps/ksgmltools/no/catalog
%_datadir/apps/ksgmltools/no/*.entities
#
%dir %_datadir/apps/ksgmltools/no/entities/
%_datadir/apps/ksgmltools/no/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/pl/
%_datadir/apps/ksgmltools/pl/catalog
%_datadir/apps/ksgmltools/pl/*.entities
#
%dir %_datadir/apps/ksgmltools/pl/entities/
%_datadir/apps/ksgmltools/pl/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/pt/
%_datadir/apps/ksgmltools/pt/catalog
%_datadir/apps/ksgmltools/pt/*.entities
#
%dir %_datadir/apps/ksgmltools/pt/entities/
%_datadir/apps/ksgmltools/pt/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/pt-BR/
%_datadir/apps/ksgmltools/pt-BR/catalog
%_datadir/apps/ksgmltools/pt-BR/*.entities
#
%dir %_datadir/apps/ksgmltools/pt-BR/entities/
%_datadir/apps/ksgmltools/pt-BR/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/ro/
%_datadir/apps/ksgmltools/ro/catalog
%_datadir/apps/ksgmltools/ro/*.entities
#
%dir %_datadir/apps/ksgmltools/ro/entities/
%_datadir/apps/ksgmltools/ro/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/ru/
%_datadir/apps/ksgmltools/ru/catalog
%_datadir/apps/ksgmltools/ru/*.entities
#
%dir %_datadir/apps/ksgmltools/ru/entities/
%_datadir/apps/ksgmltools/ru/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/sk/
%_datadir/apps/ksgmltools/sk/catalog
%_datadir/apps/ksgmltools/sk/*.entities
#
%dir %_datadir/apps/ksgmltools/sk/entities/
%_datadir/apps/ksgmltools/sk/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/sl/
%_datadir/apps/ksgmltools/sl/catalog
%_datadir/apps/ksgmltools/sl/*.entities
#
%dir %_datadir/apps/ksgmltools/sl/entities/
%_datadir/apps/ksgmltools/sl/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/sr/
%_datadir/apps/ksgmltools/sr/catalog
%_datadir/apps/ksgmltools/sr/*.entities
#
%dir %_datadir/apps/ksgmltools/sr/entities/
%_datadir/apps/ksgmltools/sr/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/stylesheets/
%_datadir/apps/ksgmltools/stylesheets/*.css
%_datadir/apps/ksgmltools/stylesheets/*.dsl
%_datadir/apps/ksgmltools/stylesheets/*.ent
%_datadir/apps/ksgmltools/stylesheets/*.entities
#
%dir %_datadir/apps/ksgmltools/sv/
%_datadir/apps/ksgmltools/sv/catalog
%_datadir/apps/ksgmltools/sv/*.entities
#
%dir %_datadir/apps/ksgmltools/sv/entities/
%_datadir/apps/ksgmltools/sv/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/zh-CN/
%_datadir/apps/ksgmltools/zh-CN/catalog
%_datadir/apps/ksgmltools/zh-CN/*.entities
#
%dir %_datadir/apps/ksgmltools/zh-CN/entities/
%_datadir/apps/ksgmltools/zh-CN/entities/*.docbook
#
%dir %_datadir/apps/ksgmltools/zh-TW/
%_datadir/apps/ksgmltools/zh-TW/catalog
%_datadir/apps/ksgmltools/zh-TW/*.entities
#
%dir %_datadir/apps/ksgmltools/zh-TW/entities/
%_datadir/apps/ksgmltools/zh-TW/entities/*.docbook
#
%dir %_datadir/apps/kssl/
%dir %_datadir/apps/kssl/caroot/
%_datadir/apps/kssl/caroot/ca-bundle.crt
#
%dir %_datadir/apps/kstyle/
%dir %_datadir/apps/kstyle/pixmaps/
%_datadir/apps/kstyle/pixmaps/*.png
#
%dir %_datadir/apps/kstyle/themes/
%_datadir/apps/kstyle/themes/*.themerc
#
#
%dir %_datadir/icons/hicolor/
%_datadir/icons/hicolor/index.desktop
#
%dir %_datadir/icons/hicolor/16x16/
%dir %_datadir/icons/hicolor/16x16/actions/
%_datadir/icons/hicolor/16x16/actions/*.png
#
%dir %_datadir/icons/hicolor/16x16/filesystems/
%_datadir/icons/hicolor/16x16/filesystems/*.png
#
%dir %_datadir/icons/hicolor/16x16/mimetypes/
%_datadir/icons/hicolor/16x16/mimetypes/*.png
#
%dir %_datadir/icons/hicolor/22x22/
%dir %_datadir/icons/hicolor/22x22/actions/
%_datadir/icons/hicolor/22x22/actions/*.png
#
%dir %_datadir/icons/hicolor/22x22/actions/kde/
%_datadir/icons/hicolor/22x22/actions/kde/*.png
#
%dir %_datadir/icons/hicolor/32x32/
%dir %_datadir/icons/hicolor/32x32/actions/
%_datadir/icons/hicolor/32x32/actions/*.png
#
%dir %_datadir/icons/hicolor/32x32/actions/kde/
%_datadir/icons/hicolor/32x32/actions/kde/*.png
#
%dir %_datadir/icons/hicolor/32x32/filesystems/
%_datadir/icons/hicolor/32x32/filesystems/*.png
#
%dir %_datadir/icons/hicolor/32x32/mimetypes/
%_datadir/icons/hicolor/32x32/mimetypes/*.png
#
%dir %_datadir/icons/hicolor/48x48/
%dir %_datadir/icons/hicolor/48x48/actions/
%dir %_datadir/icons/hicolor/48x48/actions/kde/
%_datadir/icons/hicolor/48x48/actions/kde/*.png
#
%dir %_datadir/icons/hicolor/48x48/filesystems/
%_datadir/icons/hicolor/48x48/filesystems/*.png
#
%dir %_datadir/icons/hicolor/48x48/mimetypes/
%_datadir/icons/hicolor/48x48/mimetypes/*.png
#
%dir %_datadir/icons/locolor/
%_datadir/icons/locolor/index.desktop
#
%dir %_datadir/icons/locolor/16x16/
%dir %_datadir/icons/locolor/16x16/actions/
%_datadir/icons/locolor/16x16/actions/*.png
#
%dir %_datadir/icons/locolor/16x16/actions/kde/
%_datadir/icons/locolor/16x16/actions/kde/*.png
#
%dir %_datadir/icons/locolor/16x16/filesystems/
%_datadir/icons/locolor/16x16/filesystems/*.png
#
%dir %_datadir/icons/locolor/16x16/mimetypes/
%_datadir/icons/locolor/16x16/mimetypes/*.png
#
%dir %_datadir/icons/locolor/32x32/
%dir %_datadir/icons/locolor/32x32/actions/
%_datadir/icons/locolor/32x32/actions/*.png
#
%dir %_datadir/icons/locolor/32x32/filesystems/
%_datadir/icons/locolor/32x32/filesystems/*.png
#
%dir %_datadir/icons/locolor/32x32/mimetypes/
%_datadir/icons/locolor/32x32/mimetypes/*.png
#
%dir %_datadir/icons/mdk-locolor/
%_datadir/icons/mdk-locolor/*
#
#
%dir %_datadir/mimelnk/
%_datadir/mimelnk/magic
#
%dir %_datadir/mimelnk/all/
%_datadir/mimelnk/all/*.desktop
#
%dir %_datadir/mimelnk/application/
%_datadir/mimelnk/application/*.desktop
#
%dir %_datadir/mimelnk/audio/
%_datadir/mimelnk/audio/*.desktop
#
%dir %_datadir/mimelnk/image/
%_datadir/mimelnk/image/*.desktop
#
%dir %_datadir/mimelnk/inode/
%_datadir/mimelnk/inode/*.desktop
#
%dir %_datadir/mimelnk/message/
%_datadir/mimelnk/message/*.desktop
#
%dir %_datadir/mimelnk/text/
%_datadir/mimelnk/text/*.desktop
#
%dir %_datadir/mimelnk/video/
%_datadir/mimelnk/video/*.desktop
#
#
%dir %_datadir/services/
%_datadir/services/*.desktop
%_datadir/services/*.kimgio
%_datadir/services/*.protocol
#
#
%dir %_datadir/servicetypes/
%_datadir/servicetypes/*.desktop
%files devel
%defattr(-,root,root,-)
%dir %_docdir/HTML/
%dir %_docdir/HTML/en/
%doc %_docdir/HTML/en/*.html
#
%dir %_docdir/HTML/en/dcop/
%doc %_docdir/HTML/en/dcop/*.html
#
%dir %_docdir/HTML/en/interfaces/
%doc %_docdir/HTML/en/interfaces/*.html
#
%dir %_docdir/HTML/en/kab-devel/
%doc %_docdir/HTML/en/kab-devel/*.html
#
%dir %_docdir/HTML/en/kdecore/
%doc %_docdir/HTML/en/kdecore/*.html
#
%dir %_docdir/HTML/en/kdedbcore/
%doc %_docdir/HTML/en/kdedbcore/*.html
#
%dir %_docdir/HTML/en/kdedbui/
%doc %_docdir/HTML/en/kdedbui/*.html
#
%dir %_docdir/HTML/en/kdejava/
%doc %_docdir/HTML/en/kdejava/*.html
#
%dir %_docdir/HTML/en/kdeui/
%doc %_docdir/HTML/en/kdeui/*.html
%doc %_docdir/HTML/en/kdeui/*.png
#
%dir %_docdir/HTML/en/kdoc-reference/
%doc %_docdir/HTML/en/kdoc-reference/*.kdoc.gz
#
%dir %_docdir/HTML/en/kfile/
%doc %_docdir/HTML/en/kfile/*.html
%doc %_docdir/HTML/en/kfile/*.png
#
%dir %_docdir/HTML/en/khtml/
%doc %_docdir/HTML/en/khtml/*.html
#
%dir %_docdir/HTML/en/kio/
%doc %_docdir/HTML/en/kio/DESKTOP_ENTRY_STANDARD
%doc %_docdir/HTML/en/kio/*.html
#
%dir %_docdir/HTML/en/kjs/
%_docdir/HTML/en/kjs/*.html
#
%dir %_docdir/HTML/en/kparts/
%doc %_docdir/HTML/en/kparts/*.html
#
%dir %_docdir/HTML/en/kspell-devel/
%doc %_docdir/HTML/en/kspell-devel/*.html
#
#
%_includedir/*.h
%_includedir/*.pot
#
%dir %_includedir/dom/
%_includedir/dom/*.h
#
%dir %_includedir/kdesu/
%_includedir/kdesu/*.h
#
%dir %_includedir/kio/
%_includedir/kio/*.h
%dir %_includedir/kio/sasl/
%_includedir/kio/sasl/*.h
#
%dir %_includedir/kjs/
%_includedir/kjs/*.h
#
%dir %_includedir/kparts/
%_includedir/kparts/*.h
%files devel-static-libraries
%defattr(-,root,root,-)
%_libdir/b3style.a
%_libdir/basicstyle.a
%_libdir/dcopserver.a
%_libdir/hcstyle.a
%_libdir/kbuildsycoca.a
%_libdir/kcookiejar.a
%_libdir/kded.a
%_libdir/kio_http_cache_cleaner.a
%_libdir/kio_uiserver.a
%_libdir/kjs_html.a
%_libdir/klauncher.a
%_libdir/klegacystyle.a
%_libdir/ksasl_auth_plain.a
%_libdir/ksgistyle.a
%_libdir/kstephighcolor.a
%_libdir/kstepstyle.a
%_libdir/libDCOP.a
%_libdir/libkab.a
%_libdir/libkdecore.a
%_libdir/libkdefakes.a
%_libdir/libkdesu.a
%_libdir/libkdeui.a
%_libdir/libkfile.a
%_libdir/libkhtml.a
%_libdir/libkhtmlimage.a
%_libdir/libkio.a
%_libdir/libkjava.a
%_libdir/libkjs.a
%_libdir/libkparts.a
%_libdir/libksasl.a
%_libdir/libkspell.a
%_libdir/libkssl.a
%_libdir/libksycoca.a
%_libdir/libktexteditor.a
%_libdir/libx11globalcomm.a
%_libdir/knotify.a
%_libdir/libkmid.a
%_libdir/libqtmcop.a
%_libdir/libartsc.a
%_libdir/libartscbackend.a
%_libdir/libartsdsp.a
%_libdir/libartsflow.a
%_libdir/libartsflow_idl.a
%_libdir/libartswavplayobject.a
%_libdir/libkmedia2_idl.a
%_libdir/libmcop.a
%_libdir/libsoundserver_idl.a
#
%dir %_libdir/kde2/
%_libdir/kde2/*.a
%files sound
%defattr(-,root,root,-)
%_bindir/knotify
#
%_libdir/knotify.la
%_libdir/libkmid.la
%_libdir/libqtmcop.la
#
%_libdir/knotify.so
%_libdir/libkmid.so*
%_libdir/libqtmcop.so*
#
%dir %_datadir/apps/
%dir %_datadir/apps/knotify/
%_datadir/apps/knotify/eventsrc
%files sound-devel
%defattr(-,root,root,-)
%dir %_docdir/HTML/
%dir %_docdir/HTML/en/
%dir %_docdir/HTML/en/libkmid/
%doc %_docdir/HTML/en/libkmid/*.html
#
%dir %_includedir/libkmid/
%_includedir/libkmid/*.h
%files -n arts
%defattr(-,root,root,-)
%_bindir/artsc-config
%_bindir/artscat
%_bindir/artsd
%_bindir/artsdsp
%_bindir/artsplay
%_bindir/artsshell
%_bindir/artswrapper
%_bindir/mcopidl
%files -n libarts2
%defattr(-,root,root,-)
%_libdir/libartsc.la
%_libdir/libartscbackend.la
%_libdir/libartsdsp.la
%_libdir/libartsflow.la
%_libdir/libartsflow_idl.la
%_libdir/libartswavplayobject.la
%_libdir/libkmedia2_idl.la
%_libdir/libsoundserver_idl.la
%_libdir/libmcop.la
#
%_libdir/libartsc.so*
%_libdir/libartscbackend.so*
%_libdir/libartsdsp.so*
%_libdir/libartsflow.so*
%_libdir/libartsflow_idl.so*
%_libdir/libartswavplayobject.so*
%_libdir/libkmedia2_idl.so*
%_libdir/libsoundserver_idl.so*
%_libdir/libmcop.so*
#
%dir %_libdir/mcop/
%_libdir/mcop/*.mcopclass
%_libdir/mcop/*.mcoptype
#
%dir %_libdir/mcop/Arts
%_libdir/mcop/Arts/*.mcopclass
%files -n libarts2-devel
%defattr(-,root,root,-)
%dir %_includedir/arts/
%_includedir/arts/*.h
%_includedir/arts/*.idl
#
%dir %_includedir/artsc/
%_includedir/artsc/*.h
# Dadou - 2.1-1mdk - Dear packager, before write your changelog, have you check
# all %%files? If yes, have you put your tag?
%changelog
* Tue Mar 13 2001 Arnd Bergmann <[EMAIL PROTECTED]> 2.1-5mdk
- Fix font resolving with antialiased Qt 2.3
* Sat Mar 10 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-4mdk
- Rebuild against Qt 2.3
- Fix BuildRequires
- Apply a patch from David FAURE to fix bug #21981 (see http://bugs.kde.org/)
- Disable -fomit-frame-pointer to fix crash of khtml
* Thu Mar 8 2001 Stefan van der Eijk <[EMAIL PROTECTED]> 2.1-3mdk
- removed BuildRequires for libreadline4
* Wed Feb 28 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-2mdk
- Add BuildRequires
- Fix installation when /usr/share/doc/HTML/default/ is present
* Thu Feb 22 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-1mdk
- KDE 2.1
* Tue Feb 20 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010220.1mdk
- Update code
- Enable --disable-debug
* Sat Feb 10 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010210.1mdk
- Update code
- Re-enable optimizations and --enable-final
* Fri Feb 09 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010209.1mdk
- Update code
- Disable optimizations and --enable-final at present time
* Tue Feb 08 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010208.2mdk
- --with-distribution= say if we were builded for Cooker or not
- Put snapshot date in KDE_VERSION_STRING
- Fix groups
* Tue Feb 08 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010208.1mdk
- Update code
- Fix khtml crashes
* Wed Feb 07 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010207.1mdk
- Update code
* Thu Feb 06 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010206.1mdk
- Update code
* Mon Feb 05 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010205.1mdk
- Update code
* Sun Feb 04 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010204.1mdk
- Update code
* Sat Feb 03 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010203.1mdk
- Update code
- Move all Menu related files (removekdesysmenu.pl, restorekdemimetypes.sh and
savekdemimetypes.sh) from kdebase in kdelibs package (be logical)
* Fri Feb 02 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010202.1mdk
- Update code
- Fix License
- Rewrite files list to fix updates
* Tue Feb 01 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010201.1mdk
- Update code
* Thu Jan 30 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010130.1mdk
- Update code
* Mon Jan 29 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010129.1mdk
- Update code
* Sun Jan 28 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010128.1mdk
- Update code
- Enable debug (low level)
* Sat Jan 27 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010127.1mdk
- Update code
* Fri Jan 26 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010126.1mdk
- Update code
* Tue Jan 25 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010125.1mdk
- Update code
* Wed Jan 24 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010124.1mdk
- Update code
* Thu Jan 23 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010123.1mdk
- Update code
* Mon Jan 22 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010122.1mdk
- Update code
- Remove patch #1
* Sun Jan 21 2001 David BAUDENS <[EMAIL PROTECTED]> 2.1-0.20010121.1mdk
- Fix distribution version
- Use optimizations
- Clean %%files section
- Spec clean up
* Fri Jan 12 2001 Christopher Molnar <[EMAIL PROTECTED]> 2.1-0.20010112.1mdk
- Updated code to fix problem in kdebase and kmail
* Thu Jan 11 2001 Daouda Lo <[EMAIL PROTECTED]> 2.1-0.20010110.4mdk
- add sasl missing files.
* Wed Jan 10 2001 Daouda Lo <[EMAIL PROTECTED]> 2.1-0.20010110.3mdk
- add emailclient files from cvs.
- kdesu security fixes
* Wed Jan 10 2001 Daouda Lo <[EMAIL PROTECTED]> 2.1-0.20010110.2mdk
- updated code
- add sasl stuffs
* Tue Jan 09 2001 Daouda Lo <[EMAIL PROTECTED]> 2.1-0.20010108.2mdk
- add post & postun for new arts libraries.
- add requires to kdelibs-sound
- fix libqt require.
* Tue Jan 09 2001 Daouda Lo <[EMAIL PROTECTED]> 2.1-0.20010108.1mdk
- split kdelibs-sound to run arts in standalone mode. We ship now three
packages of arts: arts, libarts2 and libarts2-devel
- update code.
* Tue Jan 02 2001 Daouda Lo <[EMAIL PROTECTED]> 2.1-0.20010102.1mdk
- fix kded starting problem (deadlock fix)
- reenable optimisations (-O3)
- updated code
* Mon Jan 01 2001 Daouda Lo <[EMAIL PROTECTED]> 2.1-0.20010101.1mdk
- released code
* Wed Dec 27 2000 Daouda Lo <[EMAIL PROTECTED]> 2.1-0.20001227.2mdk
- fix serial to workaround ue or rpm -U complaints:
+ serial now set to KDEDATE.
* Wed Dec 27 2000 Daouda Lo <[EMAIL PROTECTED]> 2.1-20001227
- release code
* Mon Dec 25 2000 Daouda Lo <[EMAIL PROTECTED]> 2.1-0.20001223.2mdk
- rebuild against qt-2.2.3 with AA support
* Sun Dec 24 2000 Daouda Lo <[EMAIL PROTECTED]> 2.1-0.20001223.1mdk
- release
* Sun Dec 24 2000 Daouda Lo <[EMAIL PROTECTED]> 2.1-0.beta1.1mdk
- 2.1-beta 1 release
- bzipped patch (applied with -p1)
- cleanups
- fix path-to-qt-HTML
- fix gcc2.96 build problems (build with -O2, will test for -O3)
* Mon Dec 11 2000 Daouda Lo <[EMAIL PROTECTED]> 2.1-0.20001211.1mdk
- code snapshot
- fix group for devel package
* Sat Dec 09 2000 Daouda Lo <[EMAIL PROTECTED]> 2.1-0.20001209.1mdk
- code snapshot
* Sun Dec 03 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.1-0.20001203.2mdk
- Updated code
* Sun Dec 03 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.1-0.20001203.1mdk
- Updated code
* Sun Nov 26 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.1-0.20001126.1mdk
- Updated code
* Sat Nov 25 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.1-0.20001125.1mdk
- Updated code
* Thu Nov 23 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.1-0.20001123.1mdk
- Updated code
- moved install of menu method into kdelibs. This allows koffice without kdebase.
* Tue Nov 21 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.0.1-0.1mdk
- Updated code
* Sun Nov 19 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.0-17.2mdk
- Updated code - several fixes
* Sun Nov 19 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.0-17.1mdk
- Updated code - several fixes
* Sat Nov 18 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.0-17mdk
- Updated code - several fixes
* Fri Nov 17 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.0-14.3mdk
- Updated code - several fixes
* Fri Nov 17 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.0-14.2mdk
- Updated code - several fixes
- Arts libdir moved - fixed spec file
* Wed Nov 15 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.0-14.1mdk
- Updated code - several fixes
* Fri Nov 10 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.0-14mdk
- Repackaged for a MandrakeUpdate to Mandrake 7.2
* Fri Nov 10 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.0-13mdk
- This version works properly with gcc 2.96
- NOTE: This includes code from the future KDE 2.1
* Thu Nov 09 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.0-12mdk
- Changed optimization for gcc 2.96
* Wed Nov 08 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.0-11mdk
- Make kdebase match kdelibs - these KDE people code to fast :-)
* Wed Nov 08 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.0-10mdk
- Rebuild with gcc 2.96
* Tue Nov 07 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.0-8mdk
- Rebuild with gcc 2.96 (second try)
- Code update - get a lot of kde bug fixes
- Turned debug back on for a few builds. This will need rebuilt.
* Mon Nov 06 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.0-7mdk
- Rebuild with gcc 2.96 (second try)
- Code update - get a lot of kde bug fixes
* Fri Nov 03 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.0-6mdk
- Rebuild with gcc 2.96
* Thu Oct 26 2000 David BAUDENS <[EMAIL PROTECTED]> 2.0-5mdk
- Rebuild with kdoc-2.0
* Tue Oct 24 2000 David BAUDENS <[EMAIL PROTECTED]> 2.0-4mdk
- Put a warning in "Empty" icon theme
- Fix some use of %%_prefix
* Tue Oct 24 2000 David BAUDENS <[EMAIL PROTECTED]> 2.0-3mdk
- Fix empty icon theme
* Wed Oct 18 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.0-2mdk
- Updated code
* Tue Oct 17 2000 Christopher Molnar <[EMAIL PROTECTED]> 2.0-1mdk
- Updated code to 2.0 release version.
- removed patch0 and added new configure line for distribution
* Mon Oct 16 2000 David BAUDENS <[EMAIL PROTECTED]> 1.99-6mdk
- Requires: alsa-lib only for x86 archs
* Fri Oct 06 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.99-5mdk
- Updated code for soundserver patch.
* Fri Oct 06 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.99-4mdk
- Removed patch #3
- Updated code
* Wed Oct 04 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.99-3mdk
- Added patch 3# which is David's krun-cpp patch. This will
need to come out on next cvs code update.
* Wed Oct 04 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.99-2mdk
- Updated code to get a cvs fix (again)
* Mon Oct 02 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.99-1mdk
- Updated code to get a cvs fix for the kwin problem
- Updated code for 2.0 Release Candidate 1.
* Mon Oct 02 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.94-17mdk
- Updated code to get a cvs fix (again)
* Mon Oct 02 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.94-16mdk
- Updated code to get a cvs fix (again)
* Sun Oct 01 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.94-15mdk
- Updated code to get a cvs fix
* Sat Sep 30 2000 David BAUDENS <[EMAIL PROTECTED]> 1.94-14mdk
- Make non relocatable
- Human readable Description
- Big spec clean up
- Use optimizations
- Macros
- BuildRequires audiofile
* Fri Sep 29 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.94-13mdk
- Repeat of last try because of a missing file on ke
* Fri Sep 29 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.94-12mdk
- Added kdesu patch from David
* Fri Sep 29 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.94-11mdk
- Updated code for several patches of reported bugs
* Wed Sep 27 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.94-10mdk
- Updated code
* Mon Sep 25 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.94-9mdk
- Updated code
* Sat Sep 23 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.94-8mdk
- Updated code
* Wed Sep 20 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.94-7mdk
- Updated code
* Mon Sep 18 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.94-6mdk
- Updated the code
- Added David Faure's fix for kde icon path extention
* Fri Sep 15 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.94-5mdk
- re-added lnusertemp (dropped in a build conflict)
* Fri Sep 15 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.94-4mdk
- Updated code
* Thu Sep 14 2000 Vincent Saugey <[EMAIL PROTECTED]> 1.94-3mdk
- Change kde description icons dirs (index.desktop) in locolor
* Tue Sep 12 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.94-2mdk
- Updated code
* Mon Sep 11 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.94-1mdk
- Updated code
* Sat Sep 09 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.93-14mdk
- Added link to mini icons in locolor and adjusted index files
- Added link to large icons in locolor and adjusted index.desktop file (source7)
* Fri Sep 08 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.93-13mdk
- Libs changed had to add new files to the list
* Fri Sep 08 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.93-12mdk
- Updated code again because of ke comming back online (lost all updated code)
* Fri Sep 08 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.93-11mdk
- Updated code
* Thu Sep 07 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.93-10mdk
- Updated code
- Put David Baudens kdmrc fix in
- Removed patch1 as it's now in the cvs
* Tue Sep 05 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.93-9mdk
- Updated code
- Added patch for kio
* Sat Sep 02 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.93-8mdk
- Updated code
* Thu Aug 31 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.93-7mdk
- Removed include file that is a conflict with libtools
* Wed Aug 30 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.93-6mdk
- Updated code
* Mon Aug 28 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.93-5mdk
- Recompile because of kdesupport recompile
- Updated code / bug fixes
* Sat Aug 26 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.93-4mdk
- Recompile because of kdesupport recompile
* Fri Aug 25 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.93-3mdk
- Updated code
- removed debug code
- upated with new qt
* Mon Aug 21 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.93-1mdk
- Updated code
- rebuilt to solve bad RPM problems
* Sat Aug 19 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.92-15mdk
- Updated code
- Patch for version string
- Turned debug code back on
* Wed Aug 17 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.92-14mdk
- Updated code
* Mon Aug 14 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.92-13mdk
- Updated code
* Thu Aug 10 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.92-12mdk
- Updated code and built with new qt2.2
- Some file list changes
* Tue Aug 08 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.92-11mdk
- Updated code and built with new qt2.2
* Mon Aug 07 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.92-10mdk
- Removed crypto package
* Mon Aug 07 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.92-9mdk
- Updated code
* Thu Aug 03 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.92-8mdk
- Updated code
* Thu Aug 03 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.92-7mdk
- Updated code
- Removed file list generation
* Wed Aug 02 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.92-6mdk
- Updated code
* Tue Aug 01 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.92-4mdk
- Updated code
- disabled debug code
- fixed error on kdelibs-sound-devel package
* Sun Jul 30 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.92-3mdk
- Updated code
* Sat Jul 29 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.92-1mdk
- Updated code
- Changed release numbering to the standard
- Fixed stupid typing error in the Groups on sound and sound devel
- updated again to get David's midi fix in
* Fri Jul 28 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.92-0.20000728mdk
- Updated code
- added alsa-lib as a requirement
* Wed Jul 26 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.92-0.20000726mdk
- Updated code
* Fri Jul 21 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.92-0.20000721mdk
- Updated code
* Mon Jul 17 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.91-0.20000718mdk
- Updated code
* Sun Jul 16 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.91-0.20000717mdk
- Updated code
* Wed Jul 12 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.91-0.20000712mdk
- Updated code
- moved to /usr
* Tue Jul 11 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.91-0.20000712mdk
- Updated code snapshot
- moved to /usr/X11R6/kde2
* Sat Jul 08 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.91-0.20000708mdk
- Updated code snapshot
* Fri Jul 07 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.91-0.20000630mdk
- Seperated the crypto stuff into a new package
- Updated code snapshot
* Fri Jun 30 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.91-0.20000630mdk
- Updated code snapshot
* Wed Jun 21 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.91-0.20000621mdk
- Updated code snapshot
- Possible fix for some build problems
* Mon Jun 19 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.91-0.20000619mdk
- Updated code snapshot and fixed a bad dependency in spec file.
* Sun Jun 11 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.91-0.20000611mdk
- Updated code snapshot
* Wed May 31 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.90-0.20000531mdk
- Updated code snapshot
* Sun May 21 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.90-0.20000520mdk
- Udpated code snapshot
* Wed May 17 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.90-20000517mdk
- updated to more recent version of code
* Tue May 16 2000 Christopher Molnar <[EMAIL PROTECTED]> 1.90-1mdk
- updated to 1.90 beta
- made the spec file Mandrake compatable