source: projects/specs/trunk/k/kuftp/kuftp-vl.spec @ 3001

Revision 3001, 3.2 KB checked in by inagaki, 13 years ago (diff)

update: kdebase3, kuftp, qtscriptgenerator, gscintilla

RevLine 
[521]1Name:           kuftp
2Version:        1.5.0
[3001]3Summary:        A graphical FTP client for KDE
4Summary(ja):    KDE 3 のグラフィカルな FTP クライアント
5Release:        5%{?_dist_release}
6
[521]7License:        GPLv2+
[3001]8URL:            http://kuftp.sourceforge.net/   
[521]9Group:          Applications/Internet
[3001]10
[521]11Source0:        %{name}-%{version}.tar.bz2
12Source1:        %{name}.mo
[3001]13
[521]14BuildRoot:      %{_tmppath}/%{name}-%{version}-root
[653]15BuildRequires:  kdelibs3-devel
[521]16BuildRequires:  openssl-devel
17BuildRequires:  desktop-file-utils
[653]18Requires(post): desktop-file-utils
19Requires(postun): desktop-file-utils
20     
[521]21%description
[3001]22KuFTP is a graphical FTP client for KDE.
[521]23
24Most notable features is Tab Sessions like Konqueror or Firefox.
25Other features like bookmark manager,queue manager,speed limit,
[653]26proxy support, SSL/TSL support, multi charsets support and some
[521]27small nifty features are currently available in the latest version.
28
29%description -l ja
[3001]30KuFTP は KDE 用のグラフィカルな FTP クライアントです。
[521]31
32最大の特徴は、Konqueror または Firefox のようなタブ・セッションズです。
33ブックマークマネージャー、キュー・マネージャー、速度制限、
34プロキシサポート、SSL/TSL サポート、複数の charsets のサポート、
35およびその他のいくつかの素敵な細かな特徴は、最新のバージョンにおいて現在利用可能です。
36
37%prep
38%setup -q
39
40%build
41%configure \
[834]42        --with-qt-libraries=`/usr/bin/pkg-config --variable=libdir qt-mt`\
43        --disable-rpath \
44        --enable-new-ldflags \
[653]45        --enable-final
[521]46
[653]47make %{?_smp_mflags}
48
[521]49%install
[3001]50rm -rf $RPM_BUILD_ROOT
[521]51%makeinstall
52
[3001]53mkdir -p $RPM_BUILD_ROOT%{_localedir}/ja/LC_MESSAGES
54install -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_localedir}/ja/LC_MESSAGES/%{name}.mo
[521]55
[653]56# changed .desktop file location
57mkdir -p $RPM_BUILD_ROOT%{_datadir}/applications/kde
58mv $RPM_BUILD_ROOT%{_datadir}/applnk/Utilities/kuftp.desktop \
59    $RPM_BUILD_ROOT%{_datadir}/applications/kde/
60
[521]61%find_lang %{name}
62
63%clean
64rm -rf %buildroot
65
[653]66%post
67touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
68
69%postun
70if [ $1 -eq 0 ] ; then
71  update-desktop-database -q &> /dev/null
72  touch --no-create %{_datadir}/icons/hicolor &> /dev/null
73  gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
74fi
75
76%posttrans
77update-desktop-database -q &> /dev/null
78gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
79
80
[521]81%files -f %{name}.lang
82%defattr(-,root,root,755)
83%doc AUTHORS README COPYING TODO ChangeLog
84%doc %{_docdir}/HTML/en/kuftp/*
85%{_bindir}/kuftp
86%{_libdir}/libkuftpbookmarks.a
[653]87%dir %{_datadir}/applications/kde
88%{_datadir}/applications/kde/kuftp.desktop
[521]89%{_datadir}/apps/kuftp/kuftpui.rc
90%{_datadir}/icons/hicolor/*/apps/kuftp.png
91
92%changelog
[3001]93* Sun Mar 13 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.5.0-5
94- rebuilt with openssl-1.0.0d
95
[834]96* Fri Apr 16 2010 Shu KONNO <owa@bg.wakwak.com> 1.5.0-4
97- added --with-qt-libraries to configure
98
[653]99* Wed Mar 24 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.5.0-3
100- rebuilt with new toolchain
101- added %%post, %%postun and %%posttrans section
102- moved .desktop file location
103
[521]104* Sat Apr 11 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.5.0-2
105- changed Group to Applications/Internet
106
107* Mon Jan 11 2009 TOSHI <milk-tea1977@dune.ocn.ne.jp> 1.5.0-1vl5
108- initial build for Vine Seed
109- spec in utf-8
Note: See TracBrowser for help on using the repository browser.