]> git.pld-linux.org Git - packages/ekg.git/blame - ekg.spec
- ncurses rebuild
[packages/ekg.git] / ekg.spec
CommitLineData
885cd040
JB
1#
2# Conditional build:
52bc40da 3%bcond_without aspell # without spell checking
885cd040 4%bcond_without voip # without VoIP support
d9c5c558 5%bcond_without python # with python support
5914ec6b 6%bcond_without pthread # build with Posix threads support
885cd040 7%bcond_with ioctl_daemon # with ioctl_daemon (suid root)
bbc3cb88 8%bcond_with lock_reason # with lock_reason patch
885cd040 9#
16fa9a8a 10Summary: A client compatible with Gadu-Gadu
1dbf50e3
ER
11Summary(de.UTF-8): Ein Cliente kompatibel mit Gadu-Gadu
12Summary(es.UTF-8): Un cliente compatible con Gadu-Gadu
13Summary(it.UTF-8): Un cliente compatibile con Gadu-Gadu
14Summary(pl.UTF-8): Klient kompatybilny z Gadu-Gadu
16fa9a8a 15Name: ekg
76599bb9 16Version: 1.7
3e289036 17Release: 12
68bd1e98 18Epoch: 4
c3065a30 19License: GPL v2
d26d141d 20Group: Applications/Communications
76599bb9
AG
21Source0: http://ekg.chmurka.net/%{name}-%{version}.tar.gz
22# Source0-md5: 2aa92b56517fdf09d75519a105772b74
6d45143b 23Source1: %{name}.conf
abccf4f1 24Patch0: %{name}-LDFLAGS.patch
25Patch1: %{name}-lock_reason.patch
76599bb9 26Patch2: %{name}-external_libgadu.patch
20951c01 27URL: http://ekg.chmurka.net/
0c6f31ba 28BuildRequires: %{_bindir}/perl
52bc40da 29%{?with_aspell:BuildRequires: aspell-devel}
cc0909ea
JB
30BuildRequires: autoconf
31BuildRequires: automake
d0076d73 32BuildRequires: libgadu-devel >= 4:1.7.0
dad7039f 33%{?with_voip:BuildRequires: libgsm-devel}
7a60042e 34BuildRequires: libjpeg-devel
16f43e8b 35BuildRequires: ncurses-devel
b4f5b154 36BuildRequires: openssl-devel >= 0.9.7d
60ba6353 37BuildRequires: pkgconfig
e725a65a
KK
38%if %{with python}
39BuildRequires: python
40BuildRequires: python-devel
60ba6353 41BuildRequires: python-modules
e725a65a 42%endif
cc0909ea
JB
43BuildRequires: readline-devel
44BuildRequires: zlib-devel
d7b15c2d 45Requires: libgadu >= 4:1.7.0
16fa9a8a 46BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
0f2b10a8 47
48%description
782236ba
AG
49EKG ("Eksperymentalny Klient Gadu-Gadu") is an open source gadu-gadu
50client for UNIX systems. Gadu-Gadu is an instant messaging program,
51very popular in Poland.
52
53EKG features include:
54 - irssi-like ncurses interface
55 - sending and receiving files
56 - voice conversations
57 - launching shell commands on certain events
58 - reading input from pipe
59 - python scripting support
60 - speech synthesis (using an external program)
61 - encryption support
62
63Please note that the program is not internationalized and all messages
b1cbd258 64are in Polish (although the commands are in English).
0f2b10a8 65
7cf2b953 66%description -l de.UTF-8
9cb95678 67Ein Cliente kompatibel mit Gadu-Gadu.
68
7cf2b953 69%description -l es.UTF-8
9cb95678 70Un cliente compatible con Gadu-Gadu.
a1e26334 71
7cf2b953 72%description -l it.UTF-8
9cb95678 73Un cliente compatibile con Gadu-Gadu.
83aa91cc 74
7cf2b953 75%description -l pl.UTF-8
782236ba 76EKG ("Eksperymentalny Klient Gadu-Gadu") jest open source'owym
7cf2b953 77klientem gadu-gadu dla systemów uniksowych. Gadu-Gadu to popularny w
4dd31a27 78Polsce komunikator internetowy.
782236ba 79
7cf2b953
JR
80Możliwości EKG:
81 - interfejs użytkownika podobny do irssi,
82 - wysyłanie i odbieranie plików,
83 - rozmowy głosowe,
84 - uruchamianie poleceń powłoki w określonych sytuacjach,
85 - wczytywanie wejścia z potoku,
86 - wsparcie dla skryptów w języku Python,
87 - synteza mowy (z użyciem zewnętrznego programu),
782236ba
AG
88 - wsparcie dla szyfrowania.
89
7cf2b953
JR
90Program nie jest umiędzynarodowiony i wszystkie komunikaty są po
91polsku (jednak komendy są w języku angielskim).
83aa91cc 92
0f2b10a8 93%prep
76599bb9 94%setup -q
abccf4f1 95%patch0 -p0
bbc3cb88 96%if %{with lock_reason}
abccf4f1 97%patch1 -p1
bbc3cb88 98%endif
76599bb9 99%patch2 -p0
0f2b10a8 100
101%build
c56e51fa 102%{__aclocal} -I m4
20e60f56 103%{__autoheader}
104%{__autoconf}
8ef2af65 105%configure \
9edc2338 106 CFLAGS_LIBGADU="%{rpmcflags}" \
5c392f9b 107 --enable-dynamic \
cc801eba
MK
108 --enable-shared \
109 --enable-static \
e43df637 110%if %{with pthread}
2079e14d 111 --with-pthread \
e43df637
MM
112%else
113 --without-pthread \
114%endif
7a60042e 115 --without-bind \
dad7039f 116 %{?with_python:--with-python} \
db66f667 117 %{!?with_voip:--without-libgsm} \
52bc40da 118 %{?with_aspell:--enable-aspell} \
eba7c257 119 %{?with_ioctl_daemon:--enable-ioctld}
885cd040 120
9edc2338 121%{__make}
0f2b10a8 122
dad7039f 123%if %{with ioctl_daemon}
885cd040 124%{__make} -C src ioctld
7cf2fdf8 125%endif
126
0f2b10a8 127%install
128rm -rf $RPM_BUILD_ROOT
20e60f56 129install -d $RPM_BUILD_ROOT%{_sysconfdir}
130
d285d758
PG
131%{__make} install install-ekl2 \
132 DESTDIR=$RPM_BUILD_ROOT
0f2b10a8 133
885cd040 134install %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}
0f2b10a8 135
8775f7e8
ŁJM
136# For libgadu-devel
137
260759fd
JB
138rm -f examples/Makefile examples/Makefile.in examples/.cvsignore
139rm -rf examples/CVS
43a3a70b 140
dad7039f 141%if %{with ioctl_daemon}
cb122163 142install src/ioctld $RPM_BUILD_ROOT%{_bindir}
443240d5
JK
143%endif
144
0f2b10a8 145%clean
146rm -rf $RPM_BUILD_ROOT
147
148%files
149%defattr(644,root,root,755)
76599bb9 150%doc docs/{7thguard,dcc,files,gdb,python,sim,themes,ui-ncurses,vars,voip}.txt
45efdda4 151%{?with_aspell:%doc docs/slownik.txt}
d03bc2d5 152%doc ChangeLog docs/{FAQ,README,TODO,ULOTKA} docs/emoticons.{ansi,sample}
0f7cf26d 153%attr(755,root,root) %{_bindir}/e*
dad7039f 154%{?with_ioctl_daemon:%attr(4755,root,root) %{_bindir}/ioctld}
059bcb29 155%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/*.conf
0c754970 156%{_datadir}/ekg
16fa9a8a
TP
157%{_mandir}/man1/*
158%lang(pl) %{_mandir}/pl/man1/*
This page took 0.068383 seconds and 4 git commands to generate.