Mercurial > pidgin.yaz
annotate gaim.spec @ 223:ac05dfb9e762
[gaim-migrate @ 233]
Convert chat window entry field to an editable, added horizontal and vertical
pane widgets to give user more flexibility in the layout (like was done for
the IM conversation log).
committer: Tailor Script <tailor@pidgin.im>
author | Syd Logan <slogan> |
---|---|
date | Mon, 08 May 2000 12:27:36 +0000 |
parents | 12a39dcb681c |
children | 101b3b4609d1 |
rev | line source |
---|---|
0 | 1 %define name gaim |
222 | 2 %define version 0.9.16 |
0 | 3 %define release 1 |
4 %define prefix /usr | |
5 | |
6 Summary: A client compatible with AOL's 'Instant Messenger' | |
7 | |
8 Name: %{name} | |
9 Version: %{version} | |
10 Release: %{release} | |
11 Group: Applications/Internet | |
12 Copyright: GPL | |
13 | |
14 Url: http://marko.net/gaim | |
15 Packager: rflynn@blueridge.net | |
16 Source: ftp://ftp.marko.net/pub/gaim/gaim-%{version}.tar.gz | |
17 Buildroot: /var/tmp/%{name}-%{version}-%{release}-root | |
18 | |
19 %description | |
20 Gaim allows you to talk to anyone using AOL's | |
21 Instant Messenger service (you can sign up at http://www.aim.aol.com). | |
22 | |
23 It uses the TOC version of the AOL protocol, so your buddy list is | |
24 stored on AOL's servers and can be retrieved from anywhere. | |
25 | |
26 It contains many of the same features as AOL's IM client while at | |
27 the same time incorporating many new features. | |
28 | |
29 %prep | |
30 | |
31 %setup | |
32 | |
33 %build | |
196
3042e11c1902
[gaim-migrate @ 206]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
173
diff
changeset
|
34 CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} |
0 | 35 make |
36 | |
37 %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 | |
41 | |
42 %files | |
43 %defattr(-,root,root) | |
44 %attr(755,root,root) %{prefix}/bin/gaim | |
173
7b5d56a74b71
[gaim-migrate @ 183]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
170
diff
changeset
|
45 %doc doc/the_penguin.txt doc/PROTOCOL doc/CREDITS NEWS COPYING AUTHORS doc/FAQ README README.plugins ChangeLog |
0 | 46 |
47 %clean | |
48 rm -r $RPM_BUILD_ROOT | |
49 |