comparison gaim.spec.in @ 547:8086ed233742

[gaim-migrate @ 557] gaim.spec now also builds gaim-applet.rpm committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 28 Jul 2000 20:05:43 +0000
parents cf895313fc50
children eaab8abda2c0
comparison
equal deleted inserted replaced
546:e312b8b9bee5 547:8086ed233742
25 stored on AOL's servers and can be retrieved from anywhere. 25 stored on AOL's servers and can be retrieved from anywhere.
26 26
27 It contains many of the same features as AOL's IM client while at 27 It contains many of the same features as AOL's IM client while at
28 the same time incorporating many new features. 28 the same time incorporating many new features.
29 29
30 %package applet
31 Summary: A Gnome client compatible with AOL's 'Instant Messenger'
32 Group: Applications/Internet
33 Requires: gtk+ >= 1.2.3
34
35 %description applet
36 Gaim allows you to talk to anyone using AOL's
37 Instant Messenger service (you can sign up at http://www.aim.aol.com).
38
39 It uses the TOC version of the AOL protocol, so your buddy list is
40 stored on AOL's servers and can be retrieved from anywhere.
41
42 It contains many of the same features as AOL's IM client while at
43 the same time incorporating many new features.
44
45 The applet sits in your Gnome panel. It has all the same functionality
46 as the regular application but takes less desktop space.
47
30 %prep 48 %prep
31 %setup 49 %setup
32 50
33 %build 51 %build
34 CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} 52 CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix}
35 make 53 make
54 if [ -d $RPM_BUILD_ROOT ]; then rm -r $RPM_BUILD_ROOT; fi;
55 mkdir -p $RPM_BUILD_ROOT%{prefix}
56 make prefix=$RPM_BUILD_ROOT%{prefix} install-strip
57 make distclean
58 CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=${prefix} --enable-distrib
59 make
36 60
37 %install 61 %install
38 if [ -d $RPM_BUILD_ROOT ]; then rm -r $RPM_BUILD_ROOT; fi;
39 mkdir -p $RPM_BUILD_ROOT%{prefix}
40 make prefix=$RPM_BUILD_ROOT%{prefix} install-strip 62 make prefix=$RPM_BUILD_ROOT%{prefix} install-strip
41 63
42 %files 64 %files
43 %defattr(-,root,root) 65 %defattr(-,root,root)
44 %attr(755,root,root) %{prefix}/bin/gaim 66 %attr(755,root,root) %{prefix}/bin/gaim
45 %doc doc/the_penguin.txt doc/PROTOCOL doc/CREDITS NEWS COPYING AUTHORS doc/FAQ README README.plugins ChangeLog 67 %doc doc/the_penguin.txt doc/PROTOCOL doc/CREDITS NEWS COPYING AUTHORS doc/FAQ README README.plugins ChangeLog
46 %{prefix}/lib/gaim/* 68 %{prefix}/lib/gaim/*
47 %{prefix}/share/locale/*/*/* 69 %{prefix}/share/locale/*/*/*
48 %{prefix}/share/pixmaps/gaim.xpm 70 %{prefix}/share/pixmaps/gaim.xpm
49 %{prefix}/share/gnome/apps/Internet/gaim.desktop 71 %{prefix}/share/gnome/apps/Internet/gaim.desktop
72
73 %files applet
74 %defattr(-,root,root)
75 %attr(755,root,root) %{prefix}/bin/gaim_applet
76 %doc doc/the_penguin.txt doc/PROTOCOL doc/CREDITS NEWS COPYING AUTHORS doc/FAQ README README.plugins ChangeLog
77 %{prefix}/lib/gaim/*
78 %{prefix}/share/locale/*/*/*
79 %{prefix}/share/sounds/gaim/*
80 %{prefix}/share/pixmaps/gaim.xpm
81 %{prefix}/share/pixmaps/gaim/gnome/*
82 %{prefix}/share/gnome/apps/Internet/gaim.desktop
83
50 %clean 84 %clean
51 rm -r $RPM_BUILD_ROOT 85 rm -r $RPM_BUILD_ROOT