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

Revision 653, 3.0 KB checked in by inagaki, 14 years ago (diff)

upload: kuftp, kcoloredit, kdbg, kiconedit

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