]> git.pld-linux.org Git - packages/ggrelay.git/blob - ggrelay.spec
- more changes
[packages/ggrelay.git] / ggrelay.spec
1 # $Revision: 1.3 $
2 Summary:        ggrelay - Gadu-Gadu instant messenger transparent proxy with DCC support
3 Summary(pl):    ggrelay - przezroczyste proxy dla komunikatora Gadu-Gadu z obs³ug± DCC
4 Name:           ggrelay
5 %define         _rc     rc5A
6 Version:        1.0
7 Release:        0.%{_rc}.1
8 License:        GPL
9 Group:          Networking/Utilities
10 Source0:        http://dl.sourceforge.net/%{name}/%{name}-%{version}-%{_rc}.tar.gz
11 #  Source0-md5: 7dd4ce85fdb72ad7c7f5d4156f386dc4
12 Patch0:         %{name}-init.patch
13 PreReq:         rc-scripts
14 Requires(post,preun):   /sbin/chkconfig
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 This small application is a simple GG relaying agent. This means, that
19 if you are a network administrator and applying masquerade on your
20 server, it's likely, that your customers would like to establish
21 direct connections over the masquerade using GG. This program is
22 intended to be the solution.
23
24 %description -l pl
25 Ta ma³a aplikacja jest prostym agentem przekazuj±cym GG. Oznacza to,
26 ¿e pozwala na u¿ywanie transerów plików pomiêdzy u¿ytkownikami
27 Gadu-Gadu, którzy schowani s± za NAT-em (aka maskarad±).
28
29 %prep
30 %setup -q -n %{name}-%{version}-%{_rc}
31 %patch0 -p1
32
33 %build
34 %configure \
35         --prefix="$RPM_BUILD_ROOT%{_prefix}"
36 %{__make}
37
38 %install
39 rm -rf $RPM_BUILD_ROOT
40 install -d $RPM_BUILD_ROOT
41
42 %{__make} install
43 ./install.sh --rpmbuild "$RPM_BUILD_ROOT"
44
45 %clean
46 rm -rf $RPM_BUILD_ROOT
47
48 %post
49 /sbin/chkconfig --add ggrelay
50 if [ -f /var/lock/subsys/ggrelay ]; then
51         /etc/rc.d/init.d/ggrelay restart 1>&2
52 else
53         echo
54         echo "Installation completed. Please adjust your /etc/ggrelay/ggrelay.conf"
55         echo "adding -o and possibly -i parameters."
56         echo "Then run \"/etc/rc.d/init.d/ggrelay start\" to start daemon."
57         echo
58 fi
59
60 %preun
61 if [ "$1" = 0 ]; then
62         if [ -f /var/lock/subsys/ggrelay ]; then
63                 /etc/rc.d/init.d/ggrelay stop >&2
64         fi
65         /sbin/chkconfig --del ggrelay
66 fi
67
68 %files
69 %defattr(644,root,root,755)
70 %doc README COPYING
71 %attr(755,root,root) %{_sbindir}/ggrelay
72 %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/ggrelay
73 %attr(754,root,root) /etc/rc.d/init.d/ggrelay
This page took 0.066806 seconds and 4 git commands to generate.