parent
1b82e4c452
commit
ba0e2f33b9
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,190 @@
|
|||||||
|
# Default version for this component
|
||||||
|
%if "%{?version}" == ""
|
||||||
|
%define version 3.5.13
|
||||||
|
%endif
|
||||||
|
%define release 0
|
||||||
|
|
||||||
|
# If TDE is built in a specific prefix (e.g. /opt/trinity), the release will be suffixed with ".opt".
|
||||||
|
%if "%{?_prefix}" != "/usr"
|
||||||
|
%define _variant .opt
|
||||||
|
%define _docdir %{_prefix}/share/doc
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# TDE 3.5.12 specific building variables
|
||||||
|
BuildRequires: cmake >= 2.8
|
||||||
|
%define tde_docdir %{_docdir}/kde
|
||||||
|
%define tde_includedir %{_includedir}/kde
|
||||||
|
%define tde_libdir %{_libdir}/trinity
|
||||||
|
|
||||||
|
|
||||||
|
Summary: K Desktop Environment - Accessibility
|
||||||
|
Name: trinity-kdeaccessibility
|
||||||
|
Version: %{?version}
|
||||||
|
Release: %{?release}%{?dist}%{?_variant}
|
||||||
|
|
||||||
|
License: GPLv2
|
||||||
|
Group: User Interface/Desktops
|
||||||
|
|
||||||
|
Vendor: Trinity Project
|
||||||
|
Packager: Francois Andriot <francois.andriot@free.fr>
|
||||||
|
URL: http://www.trinitydesktop.org/
|
||||||
|
|
||||||
|
Source0: kdeaccessibility-%{version}.tar.gz
|
||||||
|
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
|
|
||||||
|
|
||||||
|
Provides: kdeaccessibility3 = %{version}-%{release}
|
||||||
|
|
||||||
|
Requires: trinity-kdelibs
|
||||||
|
Requires(post): /sbin/ldconfig
|
||||||
|
Requires(postun): /sbin/ldconfig
|
||||||
|
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
|
BuildRequires: trinity-kdelibs-devel
|
||||||
|
BuildRequires: alsa-lib-devel
|
||||||
|
%if 0%{?fedora} > 4 || 0%{?rhel} > 4
|
||||||
|
BuildRequires: libXtst-devel
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%description
|
||||||
|
Included with this package are:
|
||||||
|
* kmag, a screen magnifier,
|
||||||
|
* kmousetool, a program for people whom it hurts to click the mouse,
|
||||||
|
* kmouth, program that allows people who have lost their voice
|
||||||
|
to let their computer speak for them.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development files for %{name}
|
||||||
|
Group: Development/Libraries
|
||||||
|
Provides: kdeaccessibility3-devel = %{version}-%{release}
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
Requires: trinity-kdelibs-devel
|
||||||
|
%description devel
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n kdeaccessibility
|
||||||
|
|
||||||
|
# Ugly hack to modify TQT include directory inside autoconf files.
|
||||||
|
# If TQT detection fails, it fallbacks to TQT4 instead of TQT3 !
|
||||||
|
sed -i admin/acinclude.m4.in \
|
||||||
|
-e "s,/usr/include/tqt,%{_includedir}/tqt,g"
|
||||||
|
|
||||||
|
%__cp "/usr/share/aclocal/libtool.m4" "admin/libtool.m4.in"
|
||||||
|
%__cp "/usr/share/libtool/config/ltmain.sh" "admin/ltmain.sh"
|
||||||
|
%__make -f "admin/Makefile.common"
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
unset QTDIR || : ; . /etc/profile.d/qt.sh
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
export LDFLAGS="-L%{_libdir} -I%{_includedir}"
|
||||||
|
|
||||||
|
%configure \
|
||||||
|
--includedir=%{tde_includedir} \
|
||||||
|
--disable-rpath \
|
||||||
|
--enable-new-ldflags \
|
||||||
|
--enable-closure \
|
||||||
|
--disable-debug --disable-warnings \
|
||||||
|
--enable-final \
|
||||||
|
--with-extra-includes=%{_includedir}/tqt
|
||||||
|
|
||||||
|
%__make %{?_smp_mflags}
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
%__make install DESTDIR=%{buildroot}
|
||||||
|
|
||||||
|
desktop-file-install \
|
||||||
|
--vendor="" \
|
||||||
|
--dir %{buildroot}%{_datadir}/applications/kde \
|
||||||
|
--delete-original \
|
||||||
|
%{buildroot}%{_datadir}/applnk/Applications/*.desktop ||:
|
||||||
|
|
||||||
|
# file lists for locale
|
||||||
|
%find_lang %{name} || touch %{name}.lang
|
||||||
|
HTML_DIR=$(kde-config --expandvars --install html)
|
||||||
|
if [ -d %{buildroot}/$HTML_DIR ]; then
|
||||||
|
for lang_dir in %{buildroot}/$HTML_DIR/* ; do
|
||||||
|
if [ -d $lang_dir ]; then
|
||||||
|
lang=$(basename $lang_dir)
|
||||||
|
echo "%lang($lang) $HTML_DIR/$lang/*" >> %{name}.lang
|
||||||
|
# replace absolute symlinks with relative ones
|
||||||
|
pushd $lang_dir
|
||||||
|
for i in *; do
|
||||||
|
[ -d $i -a -L $i/common ] && ln -nsf ../common $i/common
|
||||||
|
done
|
||||||
|
popd
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
# rpmdocs
|
||||||
|
for dir in kmag kmousetool ksayit kttsd ; do
|
||||||
|
for file in AUTHORS ChangeLog README TODO ; do
|
||||||
|
test -s $dir/$file && install -p -m644 -D $dir/$file rpmdocs/$dir/$file
|
||||||
|
done
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
%clean
|
||||||
|
%__rm -rf %{buildroot}
|
||||||
|
|
||||||
|
|
||||||
|
%post
|
||||||
|
/sbin/ldconfig ||:
|
||||||
|
for icon_theme in mono hicolor locolor ; do
|
||||||
|
touch --no-create %{_datadir}/icons/${icon_theme} 2> /dev/null ||:
|
||||||
|
gtk-update-icon-cache -q %{_datadir}/icons/${icon_theme} 2> /dev/null ||:
|
||||||
|
done
|
||||||
|
update-desktop-database %{_datadir}/applications > /dev/null 2>&1 || :
|
||||||
|
|
||||||
|
%postun
|
||||||
|
/sbin/ldconfig ||:
|
||||||
|
for icon_theme in mono hicolor locolor ; do
|
||||||
|
touch --no-create %{_datadir}/icons/${icon_theme} 2> /dev/null ||:
|
||||||
|
gtk-update-icon-cache -q %{_datadir}/icons/${icon_theme} 2> /dev/null ||:
|
||||||
|
done
|
||||||
|
update-desktop-database %{_datadir}/applications > /dev/null 2>&1 || :
|
||||||
|
|
||||||
|
|
||||||
|
%files -f %{name}.lang
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%doc COPYING
|
||||||
|
%doc rpmdocs/*
|
||||||
|
%{_bindir}/*
|
||||||
|
%{_datadir}/applications/kde/*.desktop
|
||||||
|
%{_datadir}/apps/*/
|
||||||
|
%{_datadir}/config/*
|
||||||
|
%{_datadir}/icons/hicolor/*/*/*
|
||||||
|
%{_datadir}/icons/locolor/*/*/*
|
||||||
|
%{_datadir}/icons/mono/
|
||||||
|
%{_datadir}/icons/crystalsvg/*/*/*
|
||||||
|
%{_datadir}/service*/*.desktop
|
||||||
|
%{_libdir}/lib*.so.*
|
||||||
|
%{_libdir}/*.la
|
||||||
|
%{tde_libdir}/*
|
||||||
|
|
||||||
|
# Misc docs
|
||||||
|
%doc %lang(en) %{_docdir}/HTML/en/kmag
|
||||||
|
%doc %lang(en) %{_docdir}/HTML/en/kmousetool
|
||||||
|
%doc %lang(en) %{_docdir}/HTML/en/kmouth
|
||||||
|
%doc %lang(en) %{_docdir}/HTML/en/kttsd
|
||||||
|
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{tde_includedir}/*
|
||||||
|
%{_libdir}/lib*.so
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Sun Sep 11 2011 Francois Andriot <francois.andriot@free.fr> - 3.5.13-0
|
||||||
|
- Initial build for RHEL 6
|
||||||
|
- Spec file based on Fedora 8 "kdeaccessibility-3.5.10-1"
|
||||||
|
- Import to GIT
|
@ -0,0 +1,33 @@
|
|||||||
|
[Kpackage]
|
||||||
|
BSD=false
|
||||||
|
DEBAPT=false
|
||||||
|
DEBDPKG=false
|
||||||
|
KISS=false
|
||||||
|
RPM=true
|
||||||
|
SLACK=false
|
||||||
|
|
||||||
|
[Rpm]
|
||||||
|
Package_L_0_0=/mnt/cdrom/RedHat/RPMS
|
||||||
|
Package_L_0_1=/mnt/cdrom/SRPMS
|
||||||
|
Package_L_0_2=/usr/src/redhat/RPMS
|
||||||
|
Package_L_0_3=/usr/src/redhat/SRPMS
|
||||||
|
Package_L_0_4=ftp://ftp.redhat.com/pub/redhat/linux/updates/7.2/en
|
||||||
|
Package_L_1_0=ftp://rhcontrib.bero.org/pub/rh-contrib/7.2/i386
|
||||||
|
Package_L_1_1=ftp://rhcontrib.bero.org/pub/rh-contrib/7.2/noarch
|
||||||
|
Package_L_1_2=ftp://rhcontrib.bero.org/pub/rh-contrib/7.2/SRPMS
|
||||||
|
Package_S_0_0=0
|
||||||
|
Package_S_0_1=0
|
||||||
|
Package_S_0_2=1
|
||||||
|
Package_S_0_3=0
|
||||||
|
Package_S_0_4=1
|
||||||
|
Package_S_1_0=0
|
||||||
|
Package_S_1_1=0
|
||||||
|
Package_S_1_2=0
|
||||||
|
Package_U_0_0=1
|
||||||
|
Pacakge_U_0_1=1
|
||||||
|
Package_U_0_2=1
|
||||||
|
Pacakge_U_0_3=1
|
||||||
|
Package_U_0_4=0
|
||||||
|
Package_U_1_0=0
|
||||||
|
Package_U_1_1=0
|
||||||
|
Package_U_1_2=0
|
@ -0,0 +1,264 @@
|
|||||||
|
# Default version for this component
|
||||||
|
%if "%{?version}" == ""
|
||||||
|
%define version 3.5.13
|
||||||
|
%endif
|
||||||
|
%define release 0
|
||||||
|
|
||||||
|
# If TDE is built in a specific prefix (e.g. /opt/trinity), the release will be suffixed with ".opt".
|
||||||
|
%if "%{?_prefix}" != "/usr"
|
||||||
|
%define _variant .opt
|
||||||
|
%define _docdir %{_prefix}/share/doc
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# TDE 3.5.13 specific variables
|
||||||
|
BuildRequires: cmake >= 2.8
|
||||||
|
%define tde_docdir %{_docdir}/kde
|
||||||
|
%define tde_libdir %{_libdir}/trinity
|
||||||
|
|
||||||
|
|
||||||
|
Name: trinity-kdelibs
|
||||||
|
Version: %{version}
|
||||||
|
Release: %{?release}%{?dist}%{?_variant}
|
||||||
|
License: GPL
|
||||||
|
Summary: Trinity KDE Libraries
|
||||||
|
|
||||||
|
Vendor: Trinity Project
|
||||||
|
Packager: Francois Andriot <francois.andriot@free.fr>
|
||||||
|
URL: http://www.trinitydesktop.org/
|
||||||
|
|
||||||
|
Source0: kdelibs-%{version}.tar.gz
|
||||||
|
Prefix: %{_prefix}
|
||||||
|
|
||||||
|
BuildRequires: libtool
|
||||||
|
BuildRequires: tqtinterface-devel
|
||||||
|
BuildRequires: trinity-arts-devel
|
||||||
|
BuildRequires: qt3-devel
|
||||||
|
BuildRequires: avahi-devel avahi-qt3-devel
|
||||||
|
#BuildRequires: lua-devel
|
||||||
|
BuildRequires: krb5-devel libxslt-devel cups-devel libart_lgpl-devel pcre-devel
|
||||||
|
BuildRequires: libutempter-devel
|
||||||
|
BuildRequires: bzip2-devel
|
||||||
|
BuildRequires: openssl-devel
|
||||||
|
|
||||||
|
Requires: tqtinterface
|
||||||
|
Requires: trinity-arts
|
||||||
|
Requires: qt3
|
||||||
|
Requires: avahi avahi-qt3
|
||||||
|
|
||||||
|
%if "%{?_prefix}" == "/usr"
|
||||||
|
Obsoletes: kdelibs3
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%description
|
||||||
|
Libraries for the Trinity K Desktop Environment
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Requires: %{name}
|
||||||
|
Summary: %{name} - Development files
|
||||||
|
%if "%{?_prefix}" == "/usr"
|
||||||
|
Obsoletes: kdelibs3-devel
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
Development files for %{name}
|
||||||
|
|
||||||
|
%package apidocs
|
||||||
|
Requires: %{name}
|
||||||
|
Summary: %{name} - API documentation
|
||||||
|
|
||||||
|
%description apidocs
|
||||||
|
This package includes the KDE 3 API documentation in HTML
|
||||||
|
format for easy browsing
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n kdelibs
|
||||||
|
|
||||||
|
# Gets the cmake modules in current build directory
|
||||||
|
%__mkdir_p cmake/modules
|
||||||
|
%__cp -f %{_datadir}/cmake/*.* cmake/modules
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
unset QTDIR || : ; . /etc/profile.d/qt.sh
|
||||||
|
export PATH="%{_bindir}:${PATH}"
|
||||||
|
export LD_LIBRARY_PATH="%{_libdir}"
|
||||||
|
export PKG_CONFIG_PATH="%{_libdir}/pkgconfig"
|
||||||
|
export CMAKE_INCLUDE_PATH="%{_includedir}:%{_includedir}/tqt"
|
||||||
|
|
||||||
|
%__mkdir build
|
||||||
|
cd build
|
||||||
|
%cmake \
|
||||||
|
-DWITH_ARTS=ON \
|
||||||
|
-DWITH_ALSA=ON \
|
||||||
|
-DWITH_LIBART=ON \
|
||||||
|
-DWITH_LIBIDN=OFF \
|
||||||
|
-DWITH_SSL=ON \
|
||||||
|
-DWITH_CUPS=ON \
|
||||||
|
-DWITH_LUA=OFF \
|
||||||
|
-DWITH_TIFF=ON \
|
||||||
|
-DWITH_JASPER=ON \
|
||||||
|
-DWITH_OPENEXR=ON \
|
||||||
|
-DWITH_UTEMPTER=ON \
|
||||||
|
-DWITH_AVAHI=ON \
|
||||||
|
-DWITH_ASPELL=OFF \
|
||||||
|
-DWITH_HSPELL=OFF \
|
||||||
|
..
|
||||||
|
|
||||||
|
%__make %{?_smp_mflags}
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%__rm -rf %{?buildroot}
|
||||||
|
%__mkdir_p %{?buildroot}
|
||||||
|
%make_install -C build
|
||||||
|
|
||||||
|
%__mkdir_p %{?buildroot}%{_sysconfdir}/ld.so.conf.d
|
||||||
|
cat <<EOF >%{?buildroot}%{_sysconfdir}/ld.so.conf.d/trinity.conf
|
||||||
|
%if "%{?_prefix}" != "/usr"
|
||||||
|
%{_libdir}
|
||||||
|
%endif
|
||||||
|
%{_libdir}/trinity
|
||||||
|
EOF
|
||||||
|
|
||||||
|
%clean
|
||||||
|
%__rm -rf %{?buildroot}
|
||||||
|
|
||||||
|
|
||||||
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%doc README
|
||||||
|
%doc COPYING.LIB
|
||||||
|
%{_bindir}/artsmessage
|
||||||
|
%{_bindir}/cupsdconf
|
||||||
|
%{_bindir}/cupsdoprint
|
||||||
|
%{_bindir}/dcop
|
||||||
|
%{_bindir}/dcopclient
|
||||||
|
%{_bindir}/dcopfind
|
||||||
|
%{_bindir}/dcopobject
|
||||||
|
%{_bindir}/dcopquit
|
||||||
|
%{_bindir}/dcopref
|
||||||
|
%{_bindir}/dcopserver
|
||||||
|
%{_bindir}/dcopserver_shutdown
|
||||||
|
%{_bindir}/dcopstart
|
||||||
|
%{_bindir}/filesharelist
|
||||||
|
%{_bindir}/fileshareset
|
||||||
|
%{_bindir}/imagetops
|
||||||
|
%{_bindir}/kab2kabc
|
||||||
|
%{_bindir}/kaddprinterwizard
|
||||||
|
%{_bindir}/kbuildsycoca
|
||||||
|
%{_bindir}/kcmshell
|
||||||
|
%{_bindir}/kconf_update
|
||||||
|
%{_bindir}/kcookiejar
|
||||||
|
%{_bindir}/kde-config
|
||||||
|
%{_bindir}/kde-menu
|
||||||
|
%{_bindir}/kded
|
||||||
|
%{_bindir}/kdeinit
|
||||||
|
%{_bindir}/kdeinit_shutdown
|
||||||
|
%{_bindir}/kdeinit_wrapper
|
||||||
|
%{_bindir}/kdesu_stub
|
||||||
|
%{_bindir}/kdontchangethehostname
|
||||||
|
%{_bindir}/kdostartupconfig
|
||||||
|
%{_bindir}/kfile
|
||||||
|
%{_bindir}/kfmexec
|
||||||
|
%{_bindir}/khotnewstuff
|
||||||
|
%{_bindir}/kinstalltheme
|
||||||
|
%{_bindir}/kio_http_cache_cleaner
|
||||||
|
%{_bindir}/kio_uiserver
|
||||||
|
%{_bindir}/kioexec
|
||||||
|
%{_bindir}/kioslave
|
||||||
|
%{_bindir}/klauncher
|
||||||
|
%{_bindir}/kmailservice
|
||||||
|
%{_bindir}/kmimelist
|
||||||
|
%attr(4755,root,root) %{_bindir}/kpac_dhcp_helper
|
||||||
|
%{_bindir}/ksendbugmail
|
||||||
|
%{_bindir}/kshell
|
||||||
|
%{_bindir}/kstartupconfig
|
||||||
|
%{_bindir}/ktelnetservice
|
||||||
|
%{_bindir}/ktradertest
|
||||||
|
%{_bindir}/kwrapper
|
||||||
|
%{_bindir}/lnusertemp
|
||||||
|
%{_bindir}/make_driver_db_cups
|
||||||
|
%{_bindir}/make_driver_db_lpr
|
||||||
|
%{_bindir}/meinproc
|
||||||
|
%{_bindir}/networkstatustestservice
|
||||||
|
%{_bindir}/start_kdeinit
|
||||||
|
%{_bindir}/start_kdeinit_wrapper
|
||||||
|
%attr(4755,root,root) %{_bindir}/kgrantpty
|
||||||
|
%{_libdir}/lib*.so.*
|
||||||
|
%{_libdir}/libkdeinit_*.so
|
||||||
|
%{_libdir}/lib*.la
|
||||||
|
%{tde_libdir}/
|
||||||
|
%{_datadir}/applications/kde/*.desktop
|
||||||
|
%{_datadir}/autostart/kab2kabc.desktop
|
||||||
|
%{_datadir}/applnk/kio_iso.desktop
|
||||||
|
%{_datadir}/apps/*
|
||||||
|
%exclude %{_datadir}/apps/ksgmltools2/
|
||||||
|
%config(noreplace) %{_datadir}/config/*
|
||||||
|
%{_datadir}/emoticons/*
|
||||||
|
%{_datadir}/icons/default.kde
|
||||||
|
%{_datadir}/mimelnk/magic
|
||||||
|
%{_datadir}/mimelnk/*/*.desktop
|
||||||
|
%{_datadir}/services/*
|
||||||
|
%{_datadir}/servicetypes/*
|
||||||
|
%{_datadir}/icons/crystalsvg/
|
||||||
|
%{tde_docdir}/HTML/en/kspell
|
||||||
|
# remove conflicts with kdelibs-4
|
||||||
|
%if "%{?_prefix}" != "/usr"
|
||||||
|
%{_bindir}/checkXML
|
||||||
|
%{_bindir}/ksvgtopng
|
||||||
|
%{_bindir}/kunittestmodrunner
|
||||||
|
%{_bindir}/preparetips
|
||||||
|
%{_datadir}/icons/hicolor/index.theme
|
||||||
|
%{_datadir}/locale/all_languages
|
||||||
|
%{tde_docdir}/HTML/en/common/*
|
||||||
|
%else
|
||||||
|
%exclude %{_bindir}/checkXML
|
||||||
|
%exclude %{_bindir}/ksvgtopng
|
||||||
|
%exclude %{_bindir}/kunittestmodrunner
|
||||||
|
%exclude %{_bindir}/preparetips
|
||||||
|
%exclude %{_datadir}/config/colors
|
||||||
|
%exclude %{_datadir}/config/kdebug.areas
|
||||||
|
%exclude %{_datadir}/config/kdebugrc
|
||||||
|
%exclude %{_datadir}/config/ksslcalist
|
||||||
|
%exclude %{_datadir}/config/ui/ui_standards.rc
|
||||||
|
%exclude %{_datadir}/icons/hicolor/index.theme
|
||||||
|
%exclude %{_datadir}/locale/all_languages
|
||||||
|
%exclude %{tde_docdir}/HTML/en/common/*
|
||||||
|
%endif
|
||||||
|
%{_sysconfdir}/ld.so.conf.d/trinity.conf
|
||||||
|
|
||||||
|
# Provided by 'redhat-menus' package
|
||||||
|
%exclude %{_sysconfdir}/xdg/menus/applications.menu
|
||||||
|
|
||||||
|
# New in TDE 3.5.13
|
||||||
|
%{_bindir}/kdetcompmgr
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{_bindir}/dcopidl*
|
||||||
|
%{_bindir}/kconfig_compiler
|
||||||
|
%{_bindir}/makekdewidgets
|
||||||
|
%{_datadir}/apps/ksgmltools2/
|
||||||
|
%{_includedir}/
|
||||||
|
%{_libdir}/lib*.so
|
||||||
|
%{_libdir}/lib*.a
|
||||||
|
%exclude %{_libdir}/libkdeinit_*.so
|
||||||
|
|
||||||
|
# New in TDE 3.5.13
|
||||||
|
%{_datadir}/cmake/kdelibs.cmake
|
||||||
|
|
||||||
|
%files apidocs
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{_docdir}/%{name}-%{version}/
|
||||||
|
#%{tde_docdir}/HTML/en/kdelibs*
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Wed Sep 02 2011 Francois Andriot <francois.andriot@free.fr> - 3.5.13pre.svn20110902-0.el6
|
||||||
|
- Import to GIT
|
||||||
|
- Built with future TDE version (3.5.13 + cmake + QT3.3.8d)
|
Loading…
Reference in new issue