123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- Name: nepomuk-core
- Summary: Nepomuk core utilities and libraries
- Summary(ja): Nepomuk core ユーティリティーとライブラリ
- Version: 4.9.1
- Release: 1%{?_dist_release}
- License: GPLv2,GPLv3,LGPLv2,LGPLv3
- Group: User Interface/Desktops
- URL: http://nepomuk.kde.org/
- Source0: ftp://ftp.kde.org/pub/kde/stable/%{version}/src/%{name}-%{version}.tar.xz
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: kdelibs-devel >= %{version}
- BuildRequires: kdebase-workspace-devel >= %{version}
- BuildRequires: soprano-devel >= 2.7.56
- BuildRequires: strigi-devel >= 0.7.3
- Requires: %{name}-libs = %{version}-%{release}
- %description
- The core Nepomuk system contains of the central services like file indexing,
- file system monitoring, query, and of course storage, as well as the corresponding
- client libraries.
- %package devel
- Summary: Developer files for %{name}
- Summary(ja): %{name} の開発用ファイル
- Group: Development/Libraries
- Requires: %{name}-libs = %{version}-%{release}
- %description devel
- %{summary}.
- %description -l ja devel
- %{name} の開発用ファイルです.
- %package libs
- Summary: Runtime libraries for %{name}
- Summary(ja): %{name} のランタイムライブラリ
- Group: System Environment/Libraries
- Requires: kdelibs4 >= %{version}
- Requires: kdepimlibs >= %{version}
- # cagibi is runtime dep, a dbus service
- Requires: cagibi
- %description libs
- %{summary}.
- %description -l ja libs
- %{name} のランタイムライブラリです.
- %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}
- %clean
- rm -rf $RPM_BUILD_ROOT
- %posttrans
- update-desktop-database -q &> /dev/null ||:
- %postun
- if [ $1 -eq 0 ] ; then
- update-desktop-database -q &> /dev/null ||:
- fi
- %post libs -p /sbin/ldconfig
- %postun libs -p /sbin/ldconfig
- %files
- %defattr(-,root,root,-)
- %{_bindir}/nepomuk-simpleresource-rcgen
- %{_bindir}/nepomukbackup
- %{_bindir}/nepomukindexer
- %{_bindir}/nepomukserver
- %{_bindir}/nepomukservicestub
- %{_libdir}/libkdeinit4_nepomukserver.so
- %{_datadir}/applications/kde4/nepomukbackup.desktop
- %{_datadir}/autostart/nepomukserver.desktop
- %{_datadir}/dbus-1/interfaces/*
- %{_datadir}/kde4/apps/*
- %{_datadir}/kde4/services/*
- %{_datadir}/kde4/servicetypes/*
- %{_datadir}/ontology/kde/
- %files devel
- %defattr(-,root,root,-)
- %{_includedir}/kde4/Nepomuk2
- %{_includedir}/kde4/nepomuk2
- %{_libdir}/libnepomukcore.so
- %{_libdir}/libnepomuksync.so
- %{_libdir}/cmake/NepomukCore
- %files libs
- %defattr(-,root,root,-)
- %{_libdir}/libnepomukcore.so.*
- %{_libdir}/libnepomuksync.so.*
- %{_libdir}/libnepomukcommon.so
- %{_libdir}/kde4/*.so
- %changelog
- * Thu Sep 06 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.9.1-1
- - new upstream release
- * Sun Aug 12 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 4.9.0-1
- - initial build
|