]> git.pld-linux.org Git - packages/fetchmail.git/blob - fetchmail.spec
- fixed typo in %changelog s/dield/field/.
[packages/fetchmail.git] / fetchmail.spec
1 Summary:        Remote mail fetch daemon for POP2, POP3, APOP, IMAP
2 Summary(de):    Dämon zum Laden entfernter Mail (POP2, POP3, APOP, IMAP)
3 Summary(fr):    Démon de récupération du mail pour POP2, POP3, APOP, IMAP.
4 Summary(pl):    Zdalny demon pocztowy do protoko³ów POP2, POP3, APOP, IMAP
5 Summary(pt_BR): Busca mensagens de um servidor usando POP ou IMAP
6 Summary(tr):    POP2, POP3, APOP, IMAP protokolleri ile uzaktan mektup alma yazýlýmý
7 Name:           fetchmail
8 Version:        4.7.2
9 Release:        1
10 Copyright:      freely redistributable
11 Group:          Applications/Mail
12 Group(pt_BR):   Aplicações/Correio Eletrônico
13 Vendor:         Eric S. Raymond <esr@thyrsus.com>
14 Source:         ftp://locke.ccil.org/pub/esr/fetchmail/%{name}-%{version}.tar.gz
15 Icon:           fetchmail.gif
16 URL:            http://www.tuxedo.org/~esr/fetchmail
17 Requires:       smtpdaemon
18 Buildroot:      /tmp/%{name}-%{version}-root
19
20 %description
21 Fetchmail is a program that is used to retrieve mail from a remote mail
22 server. It can use the Post Office Protocol (POP) or IMAP (Internet Mail
23 Access Protocol) for this, and delivers the mail through the local SMTP
24 server (normally sendmail).
25
26 %description -l de                                                                                            
27 Fetchmail ist ein freies, vollständiges, robustes und wohldokumentiertes
28 Werkzeug zum Abholen und Weiterreichen von E-Mail, gedacht zum Gebrauchüber
29 temporäre TCP/IP-Verbindungen (wie z.B. SLIP- oder PPP-Verbindungen).  Es
30 holt E-Mail von (weit) entfernten Mail-Servern abund reicht sie an das
31 Auslieferungssystem der lokalen Client-Maschine weiter, damit sie dann von
32 normalen MUAs ("mail user agents") wie mutt, elm, pine, (x)emacs/gnus oder
33 mailx gelesen werden kann.  Ein interaktiver GUI-Konfigurator auch gut
34 geeignet zum Gebrauch durch Endbenutzer wird mitgeliefert.
35
36 %description -l fr
37 Fetchmail est un programme utilisé pour récupérer le mail depuis un serveur
38 distant. Il peut utiliser POP (Post Office Protocol) ou IMAP (Internet Mail
39 Access Protocol) pour cela, et achemine le courrier à travers le serveur
40 SMTP local (sendmail normal).
41
42 %description -l pl
43 Fetchmail jest programem do ¶ci±gania poczty ze zdalnych serwerów
44 pocztowych. Do ¶ci±gania poczty mo¿e on uzywaæ protoko³ów POP (Post Office
45 Protocol) lub IMAP (Internet Mail Access Protocol). ¦ci±gniêt± pocztê
46 dostarcza do koñcowych odbiorców poprzez lokalny serwer SMTP.
47
48 %description -l pt_BR
49 fetchmail é um programa que é usado para recuperar mensagens de um servidor
50 de mail remoto. Ele pode usar Post Office Protocol (POP) ou IMAP (Internet
51 Mail Access Protocol) para isso, e entrega o mail através do servidor local
52 SMTP (normalmente sendmail).
53
54 %description -l tr
55 fetchmail yazýlýmý, POP veya IMAP desteði veren bir sunucuda yer alan
56 mektuplarýnýzý alýr.
57
58 %package -n fetchmailconf
59 Summary:        A GUI configurator for generating fetchmail configuration files
60 Summary(pl):    GUI konfigurator do fetchmaila
61 Group:          Utilities/System
62 Requires:       %{name} = %{version}, python
63
64 %description -n fetchmailconf
65 A GUI configurator for generating fetchmail configuration file writen in
66 python
67
68 %description -n fetchmailconf -l pl 
69 GUI konfigurator do fetchmaila napisany w pythonie.
70
71 %prep
72 %setup -q
73
74 %build
75 CFLAGS="$RPM_OPT_FLAGS" LDFLAGS="-s" \
76 ./configure \
77         --prefix=/usr \
78         --enable-nls \
79         --without-included-gettext
80
81 make
82
83 %install
84 rm -rf $RPM_BUILD_ROOT
85 install -d $RPM_BUILD_ROOT/{etc/X11/wmconfig,usr/lib/rhs/control-panel}
86
87 make install prefix=$RPM_BUILD_ROOT/usr
88
89 install rh-config/*.{xpm,init} $RPM_BUILD_ROOT/usr/lib/rhs/control-panel                               
90 install rh-config/fetchmailconf.wmconfig $RPM_BUILD_ROOT/etc/X11/wmconfig/fetchmailconf
91 rm -f $RPM_BUILD_ROOT/usr/man/man1/fetchmailconf.1
92 echo ".so fetchmail.1" > $RPM_BUILD_ROOT/usr/man/man1/fetchmailconf.1
93
94 gzip -9nf $RPM_BUILD_ROOT/usr/man/man1/*
95
96 %clean
97 rm -rf $RPM_BUILD_ROOT
98
99 %files
100 %defattr(644, root, root, 755)
101 %doc FEATURES README NEWS NOTES *.html FAQ COPYING sample.rcfile
102 %attr(755, root, root) /usr/bin/*
103 %attr(644, root,  man) /usr/man/man1/fetchmail.1.gz
104 %lang(pt) /usr/share/locale/pt*/LC_MESSAGES/fetchmail.mo
105
106 %files -n fetchmailconf
107 %defattr(644, root, root, 755)
108 /etc/X11/wmconfig/fetchmailconf
109 /usr/lib/rhs/control-panel/*
110 %attr(755, root, root) /usr/bin/fetchmailconf
111 %attr(644, root,  man) /usr/man/man1/fetchmailconf.1.gz
112
113 %changelog
114 * Mon Dec 28 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
115   [4.7.1-1]
116 - added gzipping man pages,
117 - added pl translation,
118 - Vendor field to "Eric S. Raymond <esr@thyrsus.com>",
119 - added pt_BR and de translationc from Eric spec,
120 - added fetchmail.mo file with %lang macro,
121 - fetchmailconf(1) man page maked as nroff include to 
122   fetchmail(1),
123 - removed INSTALL from %doc,
124 - added using LDFLAGS="-s" to ./configure enviroment,
125 - added "Requires: python" to fetchmailconf subpackage,
126 - added URL,
127 - added --enable-nls and --without-included-gettext to 
128   ./configure parameters (libint is integrated in glibc),
129 - added full %attr description in %files.
130
131 * Wed Jul 22 1998 Jeff Johnson <jbj@redhat.com>
132 - update to 4.5.3.
133
134 * Fri May 08 1998 Cristian Gafton <gafton@redhat.com>
135 - fixed spelung eror in the decsriptoin
136
137 * Thu May 07 1998 Cristian Gafton <gafton@redhat.com>
138 - new version 4.4.4 fixes a lot of bugs
139
140 * Fri Apr 24 1998 Prospector System <bugs@redhat.com>
141 - translations modified for de, fr, tr
142
143 * Thu Apr 09 1998 Cristian Gafton <gafton@redhat.com>
144 - upgraded to 4.4.1
145 - buildroot
146
147 * Thu Oct 23 1997 Michael Fulbright <msf@redhat.com>
148 - Updated to 4.3.2 using SRPM from Eric Raymond
149
150 * Thu Jul 10 1997 Erik Troan <ewt@redhat.com>
151 - built against glibc
This page took 0.062339 seconds and 4 git commands to generate.