123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- Name: kuftp
- Version: 1.5.0
- Summary: A graphical FTP client for KDE
- Summary(ja): KDE 3 のグラフィカルな FTP クライアント
- Release: 6%{?_dist_release}
- License: GPLv2+
- URL: http://kuftp.sourceforge.net/
- Group: Applications/Internet
- Source0: %{name}-%{version}.tar.bz2
- Source1: %{name}.mo
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: kdelibs3-devel
- BuildRequires: openssl-devel
- BuildRequires: arts-devel
- BuildRequires: desktop-file-utils
- Requires(post): desktop-file-utils
- Requires(postun): desktop-file-utils
-
- %description
- KuFTP is a graphical FTP client for KDE.
- Most notable features is Tab Sessions like Konqueror or Firefox.
- Other features like bookmark manager,queue manager,speed limit,
- proxy support, SSL/TSL support, multi charsets support and some
- small nifty features are currently available in the latest version.
- %description -l ja
- KuFTP は KDE 用のグラフィカルな FTP クライアントです。
- 最大の特徴は、Konqueror または Firefox のようなタブ・セッションズです。
- ブックマークマネージャー、キュー・マネージャー、速度制限、
- プロキシサポート、SSL/TSL サポート、複数の charsets のサポート、
- およびその他のいくつかの素敵な細かな特徴は、最新のバージョンにおいて現在利用可能です。
- %prep
- %setup -q
- %build
- unset QTDIR || : ; . /etc/profile.d/qt.sh
- %configure \
- --with-qt-libraries=`/usr/bin/pkg-config --variable=libdir qt-mt`\
- --disable-rpath \
- --enable-new-ldflags \
- --enable-final
- make %{?_smp_mflags}
- %install
- rm -rf $RPM_BUILD_ROOT
- %makeinstall
- mkdir -p $RPM_BUILD_ROOT%{_localedir}/ja/LC_MESSAGES
- install -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_localedir}/ja/LC_MESSAGES/%{name}.mo
- # changed .desktop file location
- mkdir -p $RPM_BUILD_ROOT%{_datadir}/applications/kde
- mv $RPM_BUILD_ROOT%{_datadir}/applnk/Utilities/kuftp.desktop \
- $RPM_BUILD_ROOT%{_datadir}/applications/kde/
- %find_lang %{name}
- %clean
- rm -rf %buildroot
- %post
- touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
- %postun
- if [ $1 -eq 0 ] ; then
- update-desktop-database -q &> /dev/null
- touch --no-create %{_datadir}/icons/hicolor &> /dev/null
- gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
- fi
- %posttrans
- update-desktop-database -q &> /dev/null
- gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
- %files -f %{name}.lang
- %defattr(-,root,root,755)
- %doc AUTHORS README COPYING TODO ChangeLog
- %doc %{_docdir}/HTML/en/kuftp/*
- %{_bindir}/kuftp
- %{_libdir}/libkuftpbookmarks.a
- %dir %{_datadir}/applications/kde
- %{_datadir}/applications/kde/kuftp.desktop
- %{_datadir}/apps/kuftp/kuftpui.rc
- %{_datadir}/icons/hicolor/*/apps/kuftp.png
- %changelog
- * Sun May 15 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.5.0-6
- - add BuildRequires: arts-devel
- - add ". /etc/profile.d/qt.sh" to %%build
- * Sun Mar 13 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.5.0-5
- - rebuilt with openssl-1.0.0d
- * Fri Apr 16 2010 Shu KONNO <owa@bg.wakwak.com> 1.5.0-4
- - added --with-qt-libraries to configure
- * Wed Mar 24 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.5.0-3
- - rebuilt with new toolchain
- - added %%post, %%postun and %%posttrans section
- - moved .desktop file location
- * Sat Apr 11 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.5.0-2
- - changed Group to Applications/Internet
- * Mon Jan 11 2009 TOSHI <milk-tea1977@dune.ocn.ne.jp> 1.5.0-1vl5
- - initial build for Vine Seed
- - spec in utf-8
|