comparison pidgin.spec.in @ 20400:ea9a5566a156

propagate from branch 'im.pidgin.rlaager.merging.msnp13-and-sf-1621854-4' (head 36b8a3e05397b5918f311a046fa580c5bb8846e0) to branch 'im.pidgin.cpw.khc.msnp14' (head 39ac2e1b7754245b292605b0e3055ebb1b954c5d)
author Richard Laager <rlaager@wiktel.com>
date Sun, 15 Apr 2007 05:00:56 +0000
parents 770e2f91d8f1
children 14fe3c5a7749 598b1b15b199
comparison
equal deleted inserted replaced
20395:bb940f08c820 20400:ea9a5566a156
1 # Older RPM doesn't define these by default
2 %{!?perl_vendorlib: %define perl_vendorlib %(eval "`%{__perl} -V:installvendorlib`"; echo $installvendorlib)}
3 %{!?perl_vendorarch: %define perl_vendorarch %(eval "`%{__perl} -V:installvendorarch`"; echo $installvendorarch)}
4 %{!?perl_archlib: %define perl_archlib %(eval "`%{__perl} -V:installarchlib`"; echo $installarchlib)}
5
6 # When not doing betas comment this out
7 # NOTE: %defines in spec files are evaluated in comments so the correct
8 # way to comment it out is to replace the % with #
9 #define beta 7
10
11 %if 0%{?beta}
12 %define pidginver %(echo "@VERSION@"|sed -e 's/dev//; s/beta.*//')
13 %else
14 %define pidginver @VERSION@
15 %endif
16
17 Summary: A GTK+ based multiprotocol instant messaging client
18 Name: @PACKAGE@
19 Version: %pidginver
20 Release: 0%{?beta:.beta%{beta}}
21 Epoch: 0
22 License: GPL
23 Group: Applications/Internet
24 URL: http://pidgin.im/
25 Packager: %{packager}
26 Source: %{name}-@VERSION@.tar.bz2
27 BuildRoot: %{_tmppath}/%{name}-%{version}-root
28
29 # Generic build requirements
30 BuildRequires: libtool, pkgconfig, intltool, gettext, libxml2-devel
31 %{?_with_avahi:BuildRequires: avahi-compat-howl-devel}
32 %{!?_without_gtkspell:BuildRequires: gtkspell-devel}
33 %{?_with_howl:BuildRequires: howl-devel}
34 %{?_with_meanwhile:BuildRequires: meanwhile-devel}
35 %{?_with_mono:BuildRequires: mono-devel}
36 %{?_with_sasl:BuildRequires: cyrus-sasl-devel >= 2}
37 %{?_with_silc:BuildRequires: /usr/include/silc/silcclient.h}
38 %{?_with_tcl:BuildRequires: tcl, tk, /usr/include/tcl.h}
39 %{!?_without_text:BuildRequires: ncurses-devel}
40
41 %if "%{_vendor}" == "suse"
42 # For SuSE:
43 BuildRequires: gnutls-devel
44 %{?_with_dbus:BuildRequires: dbus-1-devel >= 0.35}
45 %{!?_without_gstreamer:BuildRequires: gstreamer010-devel >= 0.10}
46 %else
47 %{?_with_dbus:BuildRequires: dbus-devel >= 0.35}
48 %{!?_without_gstreamer:BuildRequires: gstreamer-devel >= 0.10}
49 %endif
50
51 # Mandrake 10.1 and lower || Mandrake 10.2 (and higher?)
52 %if "%{_vendor}" == "MandrakeSoft" || "%{_vendor}" == "Mandrakesoft" || "%{_vendor}" == "Mandriva"
53 # For Mandrake/Mandriva:
54 BuildRequires: libgtk+2.0_0-devel, libnss3-devel, perl-devel
55 Obsoletes: libgaim-remote0
56 %else
57 # For SuSE, Red Hat, Fedora and others:
58 BuildRequires: gtk2-devel
59 %if "%{_vendor}" != "suse"
60 # For Red Hat, Fedora and others:
61 # let's assume RH & FC1 are the only brain-dead distros missing the
62 # perl-XML-Parser dependency on intltool and that other RH/FC releases
63 # don't care if we specify it here
64 BuildRequires: perl-XML-Parser
65 BuildRequires: mozilla-nss-devel
66 %endif
67 %endif
68
69 # For some reason perl isn't always automatically detected as a requirement :(
70 Requires: perl
71 # Gadu-Gadu support was split out temporarily (only as gaim)
72 Provides: gaim-gadugadu = %{epoch}:%{version}-%{release}
73
74 %package devel
75 Summary: Development headers, documentation, and libraries for Pidgin
76 Group: Applications/Internet
77 Requires: pkgconfig, pidgin = %{epoch}:%{version}, libpurple-devel = %{epoch}:%{version}
78
79 %package -n libpurple
80 Summary: libpurple library for IM clients like Pidgin and Finch
81 Group: Applications/Internet
82
83 %package -n libpurple-devel
84 Summary: Development headers, documentation, and libraries for libpurple
85 Group: Applications/Internet
86 Requires: libpurple = %{epoch}:%{version}
87
88 %if 0%{?_with_howl:1} || 0%{?_with_avahi:1}
89 %package -n libpurple-bonjour
90 Summary: Bonjour plugin for Pidgin
91 Group: Applications/Internet
92 Requires: libpurple = %{epoch}:%{version}
93 %endif
94
95 %if 0%{?_with_meanwhile:1}
96 %package -n libpurple-meanwhile
97 Summary: Lotus Sametime plugin for Pidgin using the Meanwhile library
98 Group: Applications/Internet
99 Requires: libpurple = %{epoch}:%{version}
100 %endif
101
102 %if 0%{?_with_mono:1}
103 %package -n libpurple-mono
104 Summary: Mono .NET plugin support for Pidgin
105 Group: Applications/Internet
106 Requires: libpurple = %{epoch}:%{version}
107 %endif
108
109 %if 0%{?_with_silc:1}
110 %package -n libpurple-silc
111 Summary: SILC (Secure Internet Live Conferencing) plugin for Pidgin
112 Group: Applications/Internet
113 Requires: libpurple = %{epoch}:%{version}
114 %endif
115
116 %if 0%{?_with_tcl:1}
117 %package -n libpurple-tcl
118 Summary: Tcl scripting support for Pidgin
119 Group: Applications/Internet
120 Requires: libpurple = %{epoch}:%{version}
121 %endif
122
123 %if 0%{!?_without_text:1}
124 %package -n finch
125 Summary: A text-based user interface for Pidgin
126 Group: Applications/Internet
127 Requires: libpurple = %{epoch}:%{version}
128
129 %package -n finch-devel
130 Summary: Headers etc. for finch stuffs
131 Group: Applications/Internet
132 Requires: finch = %{epoch}:%{version}, libpurple-devel = %{epoch}:%{version}
133 %endif
134
135 %description
136 Pidgin allows you to talk to anyone using a variety of messaging
137 protocols including AIM, MSN, Yahoo!, Jabber, Bonjour, Gadu-Gadu,
138 ICQ, IRC, Novell Groupwise, QQ, Lotus Sametime, SILC, Simple and
139 Zephyr. These protocols are implemented using a modular, easy to
140 use design. To use a protocol, just add an account using the
141 account editor.
142
143 Pidgin supports many common features of other clients, as well as many
144 unique features, such as perl scripting, TCL scripting and C plugins.
145
146 Pidgin is not affiliated with or endorsed by America Online, Inc.,
147 Microsoft Corporation, Yahoo! Inc., or ICQ Inc.
148
149 %description devel
150 The pidgin-devel package contains the header files, developer
151 documentation, and libraries required for development of Pidgin scripts
152 and plugins.
153
154 %description -n libpurple
155 someone write a good description of libpurple please
156
157 %description -n libpurple-devel
158 someone write a good description of libpurple-devel please
159
160 %if 0%{?_with_howl:1} || 0%{?_with_avahi:1}
161 %description -n libpurple-bonjour
162 Bonjour plugin for Pidgin.
163 %endif
164
165 %if 0%{?_with_meanwhile:1}
166 %description -n libpurple-meanwhile
167 Lotus Sametime plugin for Pidgin using the Meanwhile library.
168 %endif
169
170 %if 0%{?_with_mono:1}
171 %description -n libpurple-mono
172 Mono plugin loader for Pidgin. This package will allow you to write or
173 use Pidgin plugins written in the .NET programming language.
174 %endif
175
176 %if 0%{?_with_silc:1}
177 %description -n libpurple-silc
178 SILC (Secure Internet Live Conferencing) plugin for Pidgin.
179 %endif
180
181 %if 0%{!?without_text:1}
182 %description -n finch
183 A text-based user interface for Pidgin. This can be run from a
184 standard text console or from a terminal within X Windows. It
185 uses ncurses and our homegrown gnt library for drawing windows
186 and text.
187
188 %description -n finch-devel
189 Finch devel blah blah
190 %endif
191
192 %if 0%{?_with_tcl:1}
193 %description -n libpurple-tcl
194 Tcl plugin loader for Pidgin. This package will allow you to write or
195 use Pidgin plugins written in the Tcl programming language.
196 %endif
197
198 %prep
199 %setup -q -n %{name}-@VERSION@
200
201 %build
202 CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{_prefix} \
203 --bindir=%{_bindir} \
204 --datadir=%{_datadir} \
205 --includedir=%{_includedir} \
206 --libdir=%{_libdir} \
207 --mandir=%{_mandir} \
208 --sysconfdir=%{_sysconfdir} \
209 --disable-schemas-install \
210 %{!?_with_dbus:--disable-dbus} \
211 %{?_without_gstreamer:--disable-gstreamer} \
212 %{?_without_gtkspell:--disable-gtkspell} \
213 %{?_with_mono:--enable-mono} \
214 %{?_with_perlmakehack:--with-perl-lib=%{buildroot}%{_prefix}} \
215 %{!?_with_perlmakehack:--with-perl-lib=%{_prefix}} \
216 %{?_with_sasl:--enable-cyrus-sasl} \
217 %{?_with_silc:--with-silc-includes=%{_includedir}/silc} \
218 %{?_with_silc:--with-silc-libs=%{_libdir}/silc} \
219 %{!?_with_tcl:--disable-tcl} \
220 %{?_without_text:--disable-consoleui}
221
222 make %{?_smp_mflags}
223
224 %install
225 rm -rf %{buildroot}
226 %if 0%{?_with_perlmakehack:1}
227 make prefix=%{buildroot}%{_prefix} bindir=%{buildroot}%{_bindir} \
228 datadir=%{buildroot}%{_datadir} includedir=%{buildroot}%{_includedir} \
229 libdir=%{buildroot}%{_libdir} mandir=%{buildroot}%{_mandir} \
230 sysconfdir=%{buildroot}%{_sysconfdir} \
231 install
232 %else
233 make DESTDIR=$RPM_BUILD_ROOT install
234 %endif
235
236 # Delete files that we don't want to put in any of the RPMs
237 rm -f $RPM_BUILD_ROOT%{_libdir}/finch/*.la
238 rm -f $RPM_BUILD_ROOT%{_libdir}/pidgin/*.la
239 rm -f $RPM_BUILD_ROOT%{_libdir}/libpurple/*.la
240 rm -f $RPM_BUILD_ROOT%{_libdir}/libpurple/private/*.la
241 rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
242 rm -f $RPM_BUILD_ROOT%{perl_archlib}/perllocal.pod
243 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
244 find $RPM_BUILD_ROOT -type f -name '*.bs' -empty -exec rm -f {} ';'
245 # do we want to ship the nullclient ?
246 rm -f $RPM_BUILD_ROOT%{_bindir}/nullclient
247 rm -f $RPM_BUILD_ROOT%{_datadir}/pixmaps/gaim.svg
248
249 %if 0%{!?_with_howl:1} && 0%{!?_with_avahi:1}
250 rm -f $RPM_BUILD_ROOT%{_libdir}/libpurple/libbonjour.so
251 %endif
252
253 %if 0%{!?_with_meanwhile:1}
254 rm -f $RPM_BUILD_ROOT%{_libdir}/libpurple/libsametime.so
255 %endif
256
257 %if 0%{!?_with_mono:1}
258 rm -f $RPM_BUILD_ROOT%{_libdir}/libpurple/mono.so
259 rm -f $RPM_BUILD_ROOT%{_libdir}/libpurple/*.dll
260 %endif
261
262 %if 0%{!?_with_silc:1}
263 rm -f $RPM_BUILD_ROOT%{_libdir}/libpurple/libsilcpurple.so
264 %endif
265
266 %if 0%{!?_with_tcl:1}
267 rm -f $RPM_BUILD_ROOT%{_libdir}/libpurple/tcl.so
268 %endif
269
270 %if 0%{?_without_text:1}
271 rm -f $RPM_BUILD_ROOT%{_mandir}/man1/finch.*
272 rm -rf $RPM_BUILD_ROOT%{_bindir}/finch
273 rm -f $RPM_BUILD_ROOT%{_libdir}/libgnt.so.*
274 %endif
275
276 %find_lang %{name}
277
278 find $RPM_BUILD_ROOT%{_libdir}/libpurple -xtype f -print | \
279 sed "s@^$RPM_BUILD_ROOT@@g" | \
280 grep -v /libbonjour.so | \
281 grep -v /libsilcpurple.so | \
282 grep -v /libsametime.so | \
283 grep -v /mono.so | \
284 grep -v /tcl.so | \
285 grep -v ".dll$" | \
286 grep -v ".tcl$" > %{name}-%{version}-purpleplugins
287
288 find $RPM_BUILD_ROOT%{_libdir}/pidgin -xtype f -print | \
289 sed "s@^$RPM_BUILD_ROOT@@g" > %{name}-%{version}-pidginplugins
290
291 find $RPM_BUILD_ROOT%{_libdir}/finch -xtype f -print | \
292 sed "s@^$RPM_BUILD_ROOT@@g" > %{name}-%{version}-finchplugins
293
294 # files -f file can only take one filename :(
295 cat %{name}.lang >> %{name}-%{version}-purpleplugins
296 cat %{name}.lang >> %{name}-%{version}-pidginplugins
297 cat %{name}.lang >> %{name}-%{version}-finchplugins
298
299 %clean
300 rm -rf %{buildroot}
301
302 %pre
303 if [ "$1" -gt 1 -a -n "`which gconftool-2 2>/dev/null`" ]; then
304 export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
305 gconftool-2 --makefile-uninstall-rule \
306 %{_sysconfdir}/gconf/schemas/purple.schemas >/dev/null || :
307 killall -HUP gconfd-2 || :
308 fi
309
310 %post
311 if [ -n "`which gconftool-2 2>/dev/null`" ]; then
312 export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
313 gconftool-2 --makefile-install-rule \
314 %{_sysconfdir}/gconf/schemas/purple.schemas > /dev/null || :
315 killall -HUP gconfd-2 || :
316 fi
317 /sbin/ldconfig
318
319 %preun
320 if [ "$1" -eq 0 -a -n "`which gconftool-2 2>/dev/null`" ]; then
321 export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
322 gconftool-2 --makefile-uninstall-rule \
323 %{_sysconfdir}/gconf/schemas/purple.schemas > /dev/null || :
324 killall -HUP gconfd-2 || :
325 fi
326
327 %postun -p /sbin/ldconfig
328
329 %files -f %{name}-%{version}-pidginplugins
330 %defattr(-, root, root)
331
332 %doc AUTHORS
333 %doc COPYING
334 %doc COPYRIGHT
335 %doc ChangeLog
336 %doc NEWS
337 %doc README
338 %doc README.SVN
339 %doc doc/FAQ
340 %doc doc/the_penguin.txt
341 %doc %{_mandir}/man1/pidgin.*
342 %doc %{_mandir}/man3*/*
343
344 %dir %{_libdir}/pidgin
345 %dir %{perl_vendorarch}/Purple
346 %attr(755, root, root) %{perl_vendorarch}/Purple/*
347 %attr(755, root, root) %{perl_vendorarch}/auto/Purple/GtkUI*
348
349 %{_bindir}/pidgin
350 %{_datadir}/pixmaps/pidgin
351 %{_datadir}/pixmaps/pidgin.svg
352 %dir %{_datadir}/sounds/pidgin
353 %{_datadir}/sounds/pidgin/*
354 %{_datadir}/applications/*
355 %{_sysconfdir}/gconf/schemas/purple.schemas
356
357
358 %files -f %{name}-%{version}-purpleplugins -n libpurple
359 %defattr(-, root, root)
360
361 %{_libdir}/libpurple.so.*
362 %dir %{_libdir}/libpurple
363 %attr(755, root, root) %{perl_vendorarch}/Purple.pm
364 %dir %{perl_vendorarch}/auto/Purple
365 %attr(755, root, root) %{perl_vendorarch}/auto/Purple/Purple.so
366 %attr(755, root, root) %{perl_vendorarch}/auto/Purple/autosplit.ix
367
368 %{_datadir}/pixmaps/purple
369
370 %if 0%{?_with_dbus:1}
371 %{_bindir}/purple-client-example
372 %{_bindir}/purple-remote
373 %{_bindir}/purple-send
374 %{_bindir}/purple-send-async
375 %{_bindir}/purple-url-handler
376 %{_libdir}/libpurple-client.so.*
377 %{_datadir}/dbus-1/services/gaim.service
378 %doc README.dbus
379 %doc libpurple/purple-notifications-example
380 %endif
381
382 %files devel
383 %defattr(-, root, root)
384 %dir %{_includedir}/pidgin
385 %{_includedir}/pidgin/*.h
386 %{_libdir}/pkgconfig/pidgin.pc
387
388 %files -n libpurple-devel
389 %defattr(-, root, root)
390
391 %doc ChangeLog.API
392 %doc HACKING
393 %doc PLUGIN_HOWTO
394 %doc PROGRAMMING_NOTES
395
396 %dir %{_includedir}/libpurple
397 %{_includedir}/libpurple/*.h
398 %{_libdir}/libpurple.so
399 %{_libdir}/pkgconfig/purple.pc
400 %{_datadir}/aclocal/purple.m4
401 %if 0%{?_with_dbus:1}
402 %{_libdir}/libpurple-client.so
403 %endif
404
405
406 %if 0%{?_with_howl:1} || 0%{?_with_avahi:1}
407 %files -n libpurple-bonjour
408 %defattr(-, root, root)
409
410 %{_libdir}/libpurple/libbonjour.*
411 %endif
412
413 %if 0%{?_with_meanwhile:1}
414 %files -n libpurple-meanwhile
415 %defattr(-, root, root)
416
417 %{_libdir}/libpurple/libsametime.*
418 %endif
419
420 %if 0%{?_with_mono:1}
421 %files libpurple-mono
422 %defattr(-, root, root)
423
424 %{_libdir}/libpurple/mono.so
425 %{_libdir}/libpurple/*.dll
426 %endif
427
428 %if 0%{?_with_silc:1}
429 %files -n libpurple-silc
430 %defattr(-, root, root)
431
432 %{_libdir}/libpurple/libsilcpurple.*
433 %endif
434
435 %if 0%{?_with_tcl:1}
436 %files -n libpurple-tcl
437 %defattr(-, root, root)
438
439 %{_libdir}/libpurple/tcl.so
440 %endif
441
442 %if 0%{!?_without_text:1}
443 %files -f %{name}-%{version}-finchplugins -n finch
444 %defattr(-, root, root)
445
446 %doc %{_mandir}/man1/finch.*
447 %{_bindir}/finch
448 %{_libdir}/libgnt.so.*
449
450 %files -n finch-devel
451 %defattr(-, root, root)
452 %dir %{_includedir}/finch
453 %{_includedir}/finch/*.h
454 # libgnt
455 %dir %{_includedir}/gnt
456 %{_includedir}/gnt/*.h
457 %{_libdir}/pkgconfig/gnt.pc
458 %{_libdir}/libgnt.so
459
460 %endif
461
462 %changelog
463 * Thu Apr 12 2007 Stu Tomlinson <stu@nosnilmot.com>
464 - Actually move libpurple.so.* to the libpurple RPM
465
466 * Wed Apr 11 2007 Stu Tomlinson <stu@nosnilmot.com>
467 - Separate out libpurple, libpurple-devel and finch-devel
468
469 * Sat Mar 24 2007 Stu Tomlinson <stu@nosnilmot.com>
470 - Update to reflect renaming to pidgin/libpurple
471
472 * Sun Oct 1 2006 Stu Tomlinson <stu@nosnilmot.com>
473 - We can build with internal gadu gadu again, so bring it back into the
474 main package
475 - Deal with gconf schame uninstallation on package upgrade and removal
476
477 * Sun Aug 20 2006 Stu Tomlinson <stu@nosnilmot.com>
478 - Make the gstreamer-devel dependency overridable with '--without-gstreamer'
479 to allow building on older distributions without suitable gstreamer
480
481 * Tue Aug 15 2006 Mark Doliner <thekingant@users.sourceforge.net>
482 - Add a BuildRequire for gstreamer-devel
483 - Remove the BuildRequires for audiofile-devel and libao-devel
484
485 * Mon May 8 2006 Mark Doliner <thekingant@users.sourceforge.net>
486 - Add --with avahi option to compile the gaim-bonjour package against
487 Avahi's Howl compatibility layer
488
489 * Wed Mar 29 2006 Stu Tomlinson <stu@nosnilmot.com>
490 - Source RPM uses tar.bz2 now to save space
491 - Update BuildRequires for new intltool dependencies
492 - Add a --with perlmakehack option to allow builds to succeed on RH9
493 - Add a --with gadugadu to build (separate) gaim-gadugadu package
494
495 * Sat Dec 17 2005 Stu Tomlinson <stu@nosnilmot.com>
496 - Add support for beta versions so the subsequent releases are seen as newer
497 by RPM
498 - Split of sametime support to gaim-meanwhile
499 - Use make DESTDIR=... instead of overloading prefix etc. when installing
500 - Default build to include cyrus-sasl support in Jabber
501 - Add --with dbus to build with DBUS support
502
503 * Sun Dec 04 2005 Christopher O'Brien <siege@preoccupied.net>
504 - Added obsoletes gaim-meanwhile
505
506 * Sun Oct 30 2005 Stu Tomlinson <stu@nosnilmot.com>
507 - Add separate gaim-bonjour package if built with --with-howl
508 - Add separate gaim-mono package if built with --with-mono
509 - Exclude some unwanted perl files
510
511 * Sat Aug 20 2005 Stu Tomlinson <stu@nosnilmot.com>
512 - Include libgaimperl.so
513 - Include gaim.m4 in gaim-devel
514
515 * Thu Apr 28 2005 Stu Tomlinson <stu@nosnilmot.com>
516 - Use perl_vendorlib & perl_archlib for better 64bit compat (Jeff Mahoney)
517 - Clean up Requires, most should be auto-detected
518 - Restore gtkspell-devel build requirement (and add --without gtkspell option)
519 - Fix Tcl build requirements to work across more distros
520 - Fix SILC build requirements to work across more distros
521
522 * Mon Oct 11 2004 John Jolly <john.jolly@gmail.com>
523 - Added if "%{_vendor}" == "suse" to handle GnuTLS libraries for SuSE
524
525 * Sat Oct 2 2004 Stu Tomlinson <stu@nosnilmot.com>
526 - If --with tcl or silc are not specified, make sure the plugins don't
527 exist to prevent RPM complaining about unpackaged files
528
529 * Tue Jun 29 2004 Ethan Blanton <eblanton@cs.ohiou.edu>
530 - Change Tcl to use --with tcl, the same as SILC, and build a gaim-tcl
531 package if specified.
532
533 * Thu Jun 24 2004 Mark Doliner <thekingant@users.sourceforge.net>
534 - Add --with silc rebuild option for compiling a separate gaim-silc
535 RPM containing the silc protocol plugin (Stu Tomlinson).
536
537 * Wed Jun 23 2004 Ethan Blanton <eblanton@cs.ohiou.edu>
538 - Moved gaim headers and a pkgconfig configuration file into the
539 gaim-devel RPM (Stu Tomlinson).
540
541 * Thu Jan 15 2004 Ethan Blanton <eblanton@cs.ohiou.edu>
542 - Removed the manual strip command, as it seems to be unwarranted if
543 the necessary programs are properly installed. (For me, this was
544 elfutils.)
545
546 * Sun Jul 20 2003 Bjoern Voigt <bjoern@cs.tu-berlin.de>
547 - Added pkgconfig build dependency.
548 - if "%{_vendor}" != "MandrakeSoft" now also works with rpm 3.x.
549 - Added Gaim-specific directories to list of Gaim's files.
550
551 * Wed Jul 16 2003 Ethan Blanton <eblanton@cs.ohiou.edu>
552 - Complete spec file rewrite to take advantage of "new" RPM features
553 and make things prettier.
554 - Use system-supplied %%{_prefix}, %%{_datadir}, etc. rather than
555 attempt to define our own.