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

Line 
1Name:           kuftp
2Version:        1.5.0
3Summary:        A graphical FTP client for KDE
4Summary(ja):    KDE 3 のグラフィカルな FTP クライアント
5Release:        5%{?_dist_release}
6
7License:        GPLv2+
8URL:            http://kuftp.sourceforge.net/   
9Group:          Applications/Internet
10
11Source0:        %{name}-%{version}.tar.bz2
12Source1:        %{name}.mo
13
14BuildRoot:      %{_tmppath}/%{name}-%{version}-root
15BuildRequires:  kdelibs3-devel
16BuildRequires:  openssl-devel
17BuildRequires:  desktop-file-utils
18Requires(post): desktop-file-utils
19Requires(postun): desktop-file-utils
20     
21%description
22KuFTP is a graphical FTP client for KDE.
23
24Most notable features is Tab Sessions like Konqueror or Firefox.
25Other features like bookmark manager,queue manager,speed limit,
26proxy support, SSL/TSL support, multi charsets support and some
27small nifty features are currently available in the latest version.
28
29%description -l ja
30KuFTP は KDE 用のグラフィカルな FTP クライアントです。
31
32最大の特徴は、Konqueror または Firefox のようなタブ・セッションズです。
33ブックマークマネージャー、キュー・マネージャー、速度制限、
34プロキシサポート、SSL/TSL サポート、複数の charsets のサポート、
35およびその他のいくつかの素敵な細かな特徴は、最新のバージョンにおいて現在利用可能です。
36
37%prep
38%setup -q
39
40%build
41%configure \
42        --with-qt-libraries=`/usr/bin/pkg-config --variable=libdir qt-mt`\
43        --disable-rpath \
44        --enable-new-ldflags \
45        --enable-final
46
47make %{?_smp_mflags}
48
49%install
50rm -rf $RPM_BUILD_ROOT
51%makeinstall
52
53mkdir -p $RPM_BUILD_ROOT%{_localedir}/ja/LC_MESSAGES
54install -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_localedir}/ja/LC_MESSAGES/%{name}.mo
55
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
61%find_lang %{name}
62
63%clean
64rm -rf %buildroot
65
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
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
87%dir %{_datadir}/applications/kde
88%{_datadir}/applications/kde/kuftp.desktop
89%{_datadir}/apps/kuftp/kuftpui.rc
90%{_datadir}/icons/hicolor/*/apps/kuftp.png
91
92%changelog
93* Sun Mar 13 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.5.0-5
94- rebuilt with openssl-1.0.0d
95
96* Fri Apr 16 2010 Shu KONNO <owa@bg.wakwak.com> 1.5.0-4
97- added --with-qt-libraries to configure
98
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
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.