]> git.pld-linux.org Git - packages/alpine.git/blame - alpine.spec
- 1.10_12 - opportunity to reenter password.
[packages/alpine.git] / alpine.spec
CommitLineData
ecdbf6cc
PG
1# TODO:
2# - backport man-pages from pine.spec
c4ce2c49 3# - separate package with tcl web-frontend
c9e98969 4# - fix as-needed
f7c40b67 5%define ver 1.10
0b0b216c 6%define patchlevel 12
150f6140
JB
7Summary: University of Washington Alpine mail user agent
8Summary(pl.UTF-8): Klient pocztowy Alpine z Uniwersytetu w Waszyngtonie
02477d30 9Name: alpine
db14e620 10Version: %{ver}.%{patchlevel}
7b67f7a8 11Release: 1
ecdbf6cc 12Epoch: 1
e4566517 13License: Apache v2.0
02477d30 14Group: Applications/Mail
19f73470
PG
15# Main site:
16#Source0: ftp://ftp.cac.washington.edu/alpine/%{name}-%{version}.tar.gz
150f6140 17# Source with applied patches from http://staff.washington.edu/chappa/alpine/
db14e620 18Source0: http://staff.washington.edu/chappa/alpine/patches/alpine-%{ver}/%{name}-%{ver}_%{patchlevel}.tar.gz
0b0b216c 19# Source0-md5: 957294ff3c54ddfd5345337651cfb1e1
ecdbf6cc 20Source1: pico.desktop
e4e766a4
JB
21Source2: %{name}.desktop
22Source3: %{name}.png
f5d7d4fd
PG
23Patch0: %{name}-index_display.patch
24Patch1: %{name}-doc.patch
25Patch2: %{name}-filter.patch
f7c40b67
PG
26Patch3: %{name}-fhs.patch
27Patch4: %{name}-libc-client.patch
28Patch5: %{name}-ssl.patch
29Patch6: %{name}-no_1777_warning.patch
30Patch7: %{name}-home_etc.patch
e4e766a4 31URL: http://www.washington.edu/alpine/
c85f8efa
PG
32BuildRequires: autoconf
33BuildRequires: automake
fda94c2a 34BuildRequires: home-etc-devel
84f5c30e 35BuildRequires: krb5-devel
02477d30 36BuildRequires: ncurses-devel
78a816a8 37BuildRequires: openldap-devel >= 2.4.6
02477d30 38BuildRequires: openssl-devel
02477d30 39BuildRequires: pam-devel
ed75d4f6
PG
40# Only for web-frontend:
41#BuildRequires: tcl-devel
96222bac 42Suggests: aspell
574ca3e5 43Provides: pine = 5.10
35f8b560 44Obsoletes: pine
02477d30
AM
45BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
46
35f8b560 47%define alpineconfdir %{_sysconfdir}/%{name}
c9e98969 48%define filterout_ld -Wl,--as-needed
ecdbf6cc 49
02477d30
AM
50%description
51Alpine -- an Alternatively Licensed Program for Internet News & Email
52-- is a tool for reading, sending, and managing electronic messages.
53Alpine is the successor to Pine and was developed by Computing &
54Communications at the University of Washington. Though originally
55designed for inexperienced email users, Alpine supports many advanced
56features, and an ever-growing number of configuration and
57personal-preference options.
58
84f5c30e
JB
59%description -l pl.UTF-8
60Alpine, czyli Alternatively Licensed Program for Internet News & Email
61(alternatywnie licencjonowany program do newsów i poczty internetowej)
62to narzędzie do czytania, wysyłania i zarządzania wiadomościami
63elektronicznymi. Alpine jest następcą Pine'a i został napisany przez
64wydział Computing & Communications (Obliczeń i komunikacji) na
65Uniwersytecie w Waszyngtonie. Mimo że Alpine pierwotnie został
66zaprojektowany dla niedoświadczonych użytkowników poczty, obsługuje
67wiele zaawansowanych możliwości, a liczba opcji konfiguracyjnych
68ciągle rośnie.
69
ecdbf6cc 70%package -n pico
16696081
PG
71Summary: Simple text editor in the style of the Pine Composer
72Summary(pl.UTF-8): Prosty edytor tekstowy w stylu alpine
73Summary(pt_BR.UTF-8): Editor de textos para terminal simples e fácil de usar
74Group: Applications/Editors
574ca3e5 75Provides: pico = 5.10
ecdbf6cc
PG
76
77%description -n pico
78Pico is a simple, display-oriented text editor based on the Alpine
79message system composer. As with Pine, commands are displayed at the
80bottom of the screen, and context-sensitive help is provided. As
81characters are typed they are immediately inserted into the text.
82
83%description -n pico -l pl.UTF-8
84Pico jest prostym, zorientowanym na wyświetlanie edytorem bazującym na
85alpine. Tak jak w pine komendy są wyświetlane na dole ekranu oraz
150f6140 86dostępna jest pomoc kontekstowa. Wpisywane znaki są natychmiast
ecdbf6cc
PG
87włączane do tekstu.
88
89%description -n pico -l pt_BR.UTF-8
90Pico é um editor de texto baseado no compositor de mensagens do Alpine.
91Assim como no Pine, comandos são mostrados na parte de baixo da tela,
92e ajuda de acordo com o contexto está disponível.
93
94%package -n pilot
16696081
PG
95Summary: Simple file system browser in the style of the Alpine Composer
96Summary(pl.UTF-8): Prosta przeglądarka plików w stylu composera alpine
97Summary(pt_BR.UTF-8): Navegador de sistemas de arquivos no estilo do compositor do Alpine
98Group: Applications/Shells
574ca3e5 99Provides: pilot = 5.10
ecdbf6cc
PG
100
101%description -n pilot
102Pilot is a simple, display-oriented file system browser based on the
150f6140
JB
103Alpine message system composer. As with Alpine, commands are displayed
104at the bottom of the screen, and context-sensitive help is provided.
ecdbf6cc
PG
105
106%description -n pilot -l pl.UTF-8
107Pilot jest prostą, zorientowaną na wyświetlanie przeglądarką plików w
150f6140
JB
108stylu composera pine. Podobnie jak w alpine polecenia są wyświetlane
109na dole ekranu oraz jest dostępna pomoc kontekstowa.
ecdbf6cc
PG
110
111%description -n pilot -l pt_BR.UTF-8
112Pilot é um navegador de sistemas de arquivos baseado no Pine. Assim
113como no Pine, comandos são apresentados na parte de baixo da tela, e
114ajuda de acordo com o contexto está disponível.
115
02477d30 116%prep
db14e620 117%setup -q -n %{name}-%{ver}
f5d7d4fd
PG
118%patch0 -p1
119%patch1 -p1
d147c72a
JR
120%patch2 -p1
121%patch3 -p1
122%patch4 -p1
123%patch5 -p1
124%patch6 -p1
125%patch7 -p1
02477d30
AM
126
127%build
14ee7687
PG
128rm -f libtool missing
129%{__libtoolize}
c85f8efa 130%{__aclocal} -I m4
d147c72a
JR
131%{__autoconf}
132%{__autoheader}
c85f8efa 133%{__automake}
02477d30
AM
134%configure \
135 --enable-quotas \
ed75d4f6 136 --without-tcl \
02477d30 137 --with-smtp-msa=%{_libdir}/sendmail \
96222bac 138 --with-simple-spellcheck=aspell \
35f8b560
ER
139 --with-system-pinerc=%{_sysconfdir}/%{name}/%{name}.conf \
140 --with-system-fixed-pinerc=%{_sysconfdir}/%{name}/%{name}.conf.fixed \
02477d30
AM
141 --with-krb5-dir=%{_prefix} \
142 --with-ldap-dir=%{_prefix} \
d147c72a 143 --with-system-mail-directory=/var/mail \
f6e2946d 144 --with-c-client-target=slx \
145 --with-ssl-dir=/var/lib/openssl/certs \
146 --with-ssl-certs-dir=/var/lib/openssl/certs \
d147c72a
JR
147 --with-passfile=.pine.pwd
148
149%{__make} \
150 GCCOPTLEVEL="%{rpmcflags}"
02477d30
AM
151
152%install
153rm -rf $RPM_BUILD_ROOT
35f8b560 154install -d $RPM_BUILD_ROOT{%{_sysconfdir}/%{name},%{_desktopdir},%{_pixmapsdir}}
02477d30
AM
155
156%{__make} install \
157 DESTDIR=$RPM_BUILD_ROOT
158
ecdbf6cc 159install %{SOURCE1} $RPM_BUILD_ROOT%{_desktopdir}
28b69314
PG
160install %{SOURCE2} $RPM_BUILD_ROOT%{_desktopdir}
161install %{SOURCE3} $RPM_BUILD_ROOT%{_pixmapsdir}
162
d147c72a
JR
163ln -s alpine $RPM_BUILD_ROOT%{_bindir}/pine
164
35f8b560
ER
165$RPM_BUILD_ROOT%{_bindir}/alpine -conf > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/alpine.conf
166cat <<'EOF' > $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/alpine.conf.fixed
f098cf80
JR
167#
168# Alpine system-wide enforced configuration file - customize as needed
169#
170# This file holds the system-wide enforced values for alpine configuration
171# settings. Any values set in it will override values set in the
35f8b560 172# system-wide default configuration file (%{_sysconfdir}/%{name}/alpine.conf) and
f098cf80
JR
173# the user's own configuration file (~/.pinerc).
174# For more information on the format of this file, read the
35f8b560 175# comments at the top of %{_sysconfdir}/%{name}/alpine.conf
f098cf80
JR
176
177EOF
178
02477d30
AM
179%clean
180rm -rf $RPM_BUILD_ROOT
181
182%files
183%defattr(644,root,root,755)
ecdbf6cc 184%doc README doc/tech-notes.txt
35f8b560
ER
185%dir %{_sysconfdir}/%{name}
186%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/%{name}/alpine.conf
187%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/%{name}/alpine.conf.fixed
28b69314 188%attr(755,root,root) %{_bindir}/%{name}
d147c72a 189%attr(755,root,root) %{_bindir}/pine
02477d30
AM
190%attr(755,root,root) %{_bindir}/rpload
191%attr(755,root,root) %{_bindir}/rpdump
28b69314 192%{_mandir}/man1/%{name}.1*
ad29b28d
PG
193%{_mandir}/man1/rpload.1*
194%{_mandir}/man1/rpdump.1*
28b69314
PG
195%{_desktopdir}/%{name}.desktop
196%{_pixmapsdir}/%{name}.png
ecdbf6cc
PG
197
198%files -n pico
199%defattr(644,root,root,755)
200%attr(755,root,root) %{_bindir}/pico
201%{_desktopdir}/pico.desktop
202%{_mandir}/man1/pico*
203
204%files -n pilot
205%defattr(644,root,root,755)
206%attr(755,root,root) %{_bindir}/pilot
207%{_mandir}/man1/pilot*
This page took 0.155098 seconds and 4 git commands to generate.