]> git.pld-linux.org Git - packages/lftp.git/blob - lftp.spec
switch to new conditional builds macros (bcond_on_ -> _with_/bcond_off_ -> _without_...
[packages/lftp.git] / lftp.spec
1 #
2 # Conditional build:
3 # _without_ssl - do not use SSL
4 #
5 Summary:        Commandline ftp client
6 Summary(pl):    Zaawansowany klient ftp
7 Name:           lftp
8 Version:        2.3.10
9 Release:        1
10 License:        GPL
11 Group:          Applications/Networking
12 Group(de):      Applikationen/Netzwerkwesen
13 Group(pl):      Aplikacje/Sieciowe
14 Source0:        ftp://ftp.yars.free.net/pub/software/unix/net/ftp/client/lftp/%{name}-%{version}.tar.bz2
15 Patch0:         %{name}-OMIT.patch
16 Patch1:         %{name}-readline.patch
17 Patch2:         %{name}-use_system_gettext.m4.patch
18 Icon:           ftp.gif
19 URL:            http://ftp.yars.free.net/projects/lftp/
20 BuildRequires:  ncurses-devel >= 5.2
21 BuildRequires:  readline-devel >= 4.2
22 BuildRequires:  gettext-devel
23 BuildRequires:  gcc-c++
24 %{!??_without_ssl:BuildRequires:        openssl-devel >= 0.9.6a}
25 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
26
27 %description
28 LFTP is a shell-like command line ftp client. The main two advantages
29 over other ftp clients are reliability and ability to perform tasks in
30 background. It will reconnect and reget the file being transferred if
31 the connection broke. You can start a transfer in background and
32 continue browsing on the ftp site. It does this all in one process.
33 When you have started background jobs and feel you are done, you can
34 just exit lftp and it automatically moves to nohup mode and completes
35 the transfers. It has also such nice features as reput and mirror.
36
37 %description -l pl
38 Lftp jest zaawansowanym klientem ftp. Potrafi automatycznie po³±czyæ
39 siê z serwerem ftp po zerwanym po³±czeniu i dokoñczyæ ¶ci±ganie
40 archiwów. Lftp mo¿e pracowaæ w tle i nie zrywa przy tym po³±czenia po
41 tym jak siê wylogujesz. Program ten honoruje komendy pow³oki podczas
42 sesji, np. `ls -al | less` itp. Doskonale siê spisuje jako aplikacja
43 do mirrorowania serwerów FTP.
44
45 %prep
46 %setup -q
47 %patch0 -p1
48 %patch1 -p1
49 #%patch2 -p1
50
51 %build
52 libtoolize --copy --force
53 gettextize --copy --force
54 aclocal -I m4
55 autoconf
56 automake -a -c
57 CXXFLAGS="%{rpmcflags} -fno-rtti -fno-exceptions -fno-implicit-templates"
58 %configure \
59         --with-modules \
60         --with%{?_without_ssl:out}-ssl
61 %{__make}
62
63 %install
64 rm -rf $RPM_BUILD_ROOT
65 install -d $RPM_BUILD_ROOT%{_sysconfdir}
66
67 %{__make} install DESTDIR=$RPM_BUILD_ROOT
68
69 install lftp.conf $RPM_BUILD_ROOT%{_sysconfdir}
70 install src/.libs/proto-ftp.so[A-Z] $RPM_BUILD_ROOT%{_libdir}/lftp/%{version}/proto-ftp.so
71 install src/.libs/proto-http.so[A-Z] $RPM_BUILD_ROOT%{_libdir}/lftp/%{version}/proto-http.so
72
73 gzip -9nf README NEWS FAQ
74
75 %find_lang %{name}
76
77 %clean
78 rm -rf $RPM_BUILD_ROOT
79
80 %files -f %{name}.lang
81 %defattr(644,root,root,755)
82 %doc *.gz
83 %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/lftp.conf
84 %attr(755,root,root) %{_bindir}/*
85 %{_mandir}/man1/*
86 %attr(755,root,root) %{_datadir}/lftp
87
88 %dir %{_libdir}/lftp
89 %dir %{_libdir}/lftp/%{version}
90 %attr(755,root,root) %{_libdir}/lftp/%{version}/*.so
This page took 0.041269 seconds and 4 git commands to generate.