Mercurial > pidgin
annotate gaim.spec.in @ 6793:3d84c933b939
[gaim-migrate @ 7332]
Tim Ringenbach (marv_sf) writes:
" This makes two things work (on the server side list):
1) Moving buddies between groups.
2) Renaming groups.
It doesn't, however, fix the case where Gaim disagrees
with the server as to what group a buddy is in. But
that doesn't make anything bad happen really, so I'll
save it for another patch. And moving the buddy seems
get the server and gaim in sync again."
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Mon, 08 Sep 2003 10:08:39 +0000 |
parents | e411a7d6378c |
children | 830070d70f3c |
rev | line source |
---|---|
3737
5939b57aeed8
[gaim-migrate @ 3875]
Christian Hammond <chipx86@chipx86.com>
parents:
3736
diff
changeset
|
1 Summary: A Gtk+ based multiprotocol instant messaging client |
6171 | 2 Name: @PACKAGE@ |
3 Version: @VERSION@ | |
4 Release: 1 | |
3737
5939b57aeed8
[gaim-migrate @ 3875]
Christian Hammond <chipx86@chipx86.com>
parents:
3736
diff
changeset
|
5 Epoch: 1 |
5939b57aeed8
[gaim-migrate @ 3875]
Christian Hammond <chipx86@chipx86.com>
parents:
3736
diff
changeset
|
6 License: GPL |
5939b57aeed8
[gaim-migrate @ 3875]
Christian Hammond <chipx86@chipx86.com>
parents:
3736
diff
changeset
|
7 Group: Applications/Internet |
5939b57aeed8
[gaim-migrate @ 3875]
Christian Hammond <chipx86@chipx86.com>
parents:
3736
diff
changeset
|
8 Vendor: Pimpin' Penguins |
6171 | 9 Url: http://gaim.sourceforge.net/ |
3737
5939b57aeed8
[gaim-migrate @ 3875]
Christian Hammond <chipx86@chipx86.com>
parents:
3736
diff
changeset
|
10 Source: %{name}-%{version}.tar.gz |
5939b57aeed8
[gaim-migrate @ 3875]
Christian Hammond <chipx86@chipx86.com>
parents:
3736
diff
changeset
|
11 Packager: Rob Flynn <rob@marko.net> |
6171 | 12 BuildRoot: %{_tmppath}/%{name}-%{version}-root |
6246 | 13 %if "%{_vendor}" != "MandrakeSoft" |
5044
2738dcb5cae2
[gaim-migrate @ 5392]
Christian Hammond <chipx86@chipx86.com>
parents:
5033
diff
changeset
|
14 Requires: gtk2 >= 2.0.0 |
6246 | 15 BuildRequires: libao-devel, gtk2-devel, gtkspell-devel, libtool, audiofile-devel, pkgconfig |
6171 | 16 %else |
17 Requires: gtk+2.0 >= 2.0.0 | |
6246 | 18 BuildRequires: libao-devel, libgtk+2.0_0-devel, gtkspell-devel, libtool, audiofile-devel, pkgconfig |
6171 | 19 %endif |
20 | |
21 %package devel | |
22 Summary: Development headers, documentation, and libraries for Gaim. | |
23 Group: Applications/Internet | |
5033
14bbf22917d9
[gaim-migrate @ 5376]
Christian Hammond <chipx86@chipx86.com>
parents:
5009
diff
changeset
|
24 |
322 | 25 %description |
3162 | 26 Gaim allows you to talk to anyone using a variety of messaging |
27 protocols, including AIM (Oscar and TOC), ICQ, IRC, Yahoo!, | |
28 MSN Messenger, Jabber, Gadu-Gadu, Napster, and Zephyr. These | |
29 protocols are implemented using a modular, easy to use design. | |
30 To use a protocol, just load the plugin for it. | |
31 | |
32 Gaim supports many common features of other clients, as well as many | |
33 unique features, such as perl scripting and C plugins. | |
34 | |
2578 | 35 Gaim is NOT affiliated with or endorsed by AOL. |
36 | |
6171 | 37 %description devel |
38 | |
39 The gaim-devel package contains the header files, developer | |
40 documentation, and libraries required for development of gaim scripts | |
41 and plugins. | |
42 | |
322 | 43 %prep |
44 %setup | |
45 | |
46 %build | |
6171 | 47 CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{_prefix} \ |
48 --bindir=%{_bindir} \ | |
49 --datadir=%{_datadir} \ | |
50 --includedir=%{_includedir} \ | |
51 --libdir=%{_libdir} \ | |
52 --mandir=%{_mandir} \ | |
53 --sysconfdir=%{_sysconfdir} | |
54 make %{?_smp_mflags} | |
322 | 55 |
56 %install | |
6171 | 57 rm -rf %{buildroot} |
58 make prefix=%{buildroot}%{_prefix} bindir=%{buildroot}%{_bindir} \ | |
59 datadir=%{buildroot}%{_datadir} includedir=%{buildroot}%{_includedir} \ | |
60 libdir=%{buildroot}%{_libdir} mandir=%{buildroot}%{_mandir} \ | |
61 sysconfdir=%{buildroot}%{_sysconfdir} \ | |
62 install | |
63 | |
6736
e411a7d6378c
[gaim-migrate @ 7268]
Christian Hammond <chipx86@chipx86.com>
parents:
6653
diff
changeset
|
64 rm -f $RPM_BUILD_ROOT/%{_libdir}/perl5/*/*/perllocal.pod |
e411a7d6378c
[gaim-migrate @ 7268]
Christian Hammond <chipx86@chipx86.com>
parents:
6653
diff
changeset
|
65 |
6171 | 66 %clean |
67 rm -rf %{buildroot} | |
322 | 68 |
69 %files | |
3737
5939b57aeed8
[gaim-migrate @ 3875]
Christian Hammond <chipx86@chipx86.com>
parents:
3736
diff
changeset
|
70 %defattr(-, root, root) |
5939b57aeed8
[gaim-migrate @ 3875]
Christian Hammond <chipx86@chipx86.com>
parents:
3736
diff
changeset
|
71 |
6171 | 72 %doc doc/the_penguin.txt doc/CREDITS doc/FAQ NEWS COPYING AUTHORS |
73 %doc README ChangeLog | |
74 %doc %{_mandir}/man1/* | |
3737
5939b57aeed8
[gaim-migrate @ 3875]
Christian Hammond <chipx86@chipx86.com>
parents:
3736
diff
changeset
|
75 |
6246 | 76 %dir %{_libdir}/gaim |
3737
5939b57aeed8
[gaim-migrate @ 3875]
Christian Hammond <chipx86@chipx86.com>
parents:
3736
diff
changeset
|
77 %attr(755, root, root) %{_libdir}/gaim/* |
6171 | 78 %attr(755, root, root) %{_libdir}/libgaim-remote.so.* |
6736
e411a7d6378c
[gaim-migrate @ 7268]
Christian Hammond <chipx86@chipx86.com>
parents:
6653
diff
changeset
|
79 %attr(755, root, root) %{_libdir}/perl5 |
e411a7d6378c
[gaim-migrate @ 7268]
Christian Hammond <chipx86@chipx86.com>
parents:
6653
diff
changeset
|
80 |
3737
5939b57aeed8
[gaim-migrate @ 3875]
Christian Hammond <chipx86@chipx86.com>
parents:
3736
diff
changeset
|
81 %{_bindir}/* |
5939b57aeed8
[gaim-migrate @ 3875]
Christian Hammond <chipx86@chipx86.com>
parents:
3736
diff
changeset
|
82 %{_datadir}/locale/*/*/* |
5939b57aeed8
[gaim-migrate @ 3875]
Christian Hammond <chipx86@chipx86.com>
parents:
3736
diff
changeset
|
83 %{_datadir}/pixmaps/* |
6246 | 84 %dir %{_datadir}/sounds/gaim |
4206
30b5741e4c87
[gaim-migrate @ 4442]
Christian Hammond <chipx86@chipx86.com>
parents:
4030
diff
changeset
|
85 %{_datadir}/sounds/gaim/* |
4030 | 86 %{_datadir}/applications/* |
547
8086ed233742
[gaim-migrate @ 557]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
369
diff
changeset
|
87 |
6171 | 88 %files devel |
89 | |
6653
6cfa0af6a1fc
[gaim-migrate @ 7178]
Christian Hammond <chipx86@chipx86.com>
parents:
6301
diff
changeset
|
90 %doc plugins/SIGNALS plugins/HOWTO |
6301 | 91 %doc HACKING PROGRAMMING_NOTES |
6171 | 92 |
93 %attr(755, root, root) %{_libdir}/libgaim-remote.la | |
6246 | 94 %dir %{_includedir}/gaim-remote |
6171 | 95 %{_includedir}/gaim-remote/*.h |
2224 | 96 |
97 %changelog | |
6246 | 98 * Sun Jul 20 2003 Bjoern Voigt <bjoern@cs.tu-berlin.de> |
99 - Added pkgconfig build dependency. | |
100 - if "%{_vendor}" != "MandrakeSoft" now also works with rpm 3.x. | |
101 - Added Gaim-specific directories to list of Gaim's files. | |
102 | |
6171 | 103 * Wed Jul 16 2003 Ethan Blanton <eblanton@cs.ohiou.edu> |
104 - Complete spec file rewrite to take advantage of "new" RPM features | |
105 and make things prettier. | |
106 - Use system-supplied %%{_prefix}, %%{_datadir}, etc. rather than | |
107 attempt to define our own. |