1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- Name: libkdeedu
- Summary: Library for using with KDE 4 educational applications
- Version: 4.9.0
- Release: 1%{?_dist_release}
- License: GPLv2+ and LGPLv2+
- Group: System Environment/Libraries
- URL: https://projects.kde.org/projects/kde/kdegraphics/libs/libkexiv2
- Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/%{name}-%{version}.tar.xz
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: kdelibs4-devel >= %{version}
- Requires: kdelibs4 >= 4.7.0
- # when split occurred
- Conflicts: kdeedu-libs < 4.6.95-10
- %description
- This package contains shared libraries used by KDE 4 educational
- applications. It provides support for data plotting and vocabulary
- data in the kvtml format.
- %package devel
- Summary: Development files for %{name}
- Summary(ja): %{name} の開発用ファイル
- Group: Development/Libraries
- Requires: %{name} = %{version}-%{release}
- Requires: kdelibs4-devel
- %description devel
- %{summary}.
- %prep
- %setup -q
- %build
- mkdir -p %{_target_platform}
- pushd %{_target_platform}
- %cmake \
- -DCMAKE_BUILD_TYPE=release \
- -DCMAKE_INSTALL_PREFIX:PATH=%{_prefix} \
- -DDATA_INSTALL_DIR:PATH=%{_datadir}/kde4/apps \
- -DINCLUDE_INSTALL_DIR:PATH=%{_includedir}/kde4 \
- -DLIB_INSTALL_DIR:PATH=%{_libdir} \
- -DLIBEXEC_INSTALL_DIR:PATH=%{_libexecdir}/kde4 \
- -DSYSCONF_INSTALL_DIR:PATH=%{_sysconfdir} \
- ..
- popd
- make %{?_smp_mflags} -C %{_target_platform}
- %install
- rm -rf $RPM_BUILD_ROOT
- make install/fast DESTDIR=$RPM_BUILD_ROOT -C %{_target_platform}
- %post
- /sbin/ldconfig
- touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
- %posttrans
- gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
- %postun
- /sbin/ldconfig
- if [ $1 -eq 0 ] ; then
- touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
- gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
- fi
- %files
- %doc AUTHORS COPYING COPYING.LIB README
- %{_libdir}/libkeduvocdocument.so.*
- %{_datadir}/kde4/apps/kvtml/
- %{_datadir}/icons/hicolor/*/*/*
- %files devel
- %{_libdir}/libkeduvocdocument.so
- %{_libdir}/libqtmmlwidget.a
- %{_libdir}/cmake/libkdeedu/*.cmake
- %{_includedir}/kde4/libkdeedu/
- %changelog
- * Mon Aug 13 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.9.0-1
- - new upstream release
- * Sat Oct 15 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.7.2-1
- - new upstream release
- * Sat Aug 6 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.7.0-1
- - Initial build for Vine Linux
|