view gaim.spec @ 306:a8f964718837

[gaim-migrate @ 316] Ok, one last time, for the record: - It tries to load the requested font in the requested size. - It tries to load the requested font at *any* size. - It tries to load either courier or helvetica with the requested features at any size. - It tries to load the other of the two with the requested features at any size. - It tries to load the chosen outgoing font with the requested features at any size, if one exists. - It tries to load courier with no features (bold, italics, etc) at any size. - It tries to load helvetica with no features (bold, italics, etc) at any size. - It tries to load times with no features (bold, italics, etc) at any size. - It tries to load *any* font, generally the first one GDK can find, which ends up usually being something like Arial Bold. It returns after it gets a font, or after it gets *any* font. If you didn't get one, your system is screwy. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Thu, 01 Jun 2000 19:27:18 +0000
parents a018ad7fef59
children
line wrap: on
line source

%define name gaim
%define version 0.9.18
%define release 1
%define prefix /usr

Summary: A client compatible with AOL's 'Instant Messenger'

Name: %{name}
Version: %{version}
Release: %{release}
Group: Applications/Internet
Copyright: GPL

Url: http://marko.net/gaim
Packager: rflynn@blueridge.net 
Source: ftp://ftp.marko.net/pub/gaim/gaim-%{version}.tar.gz
Buildroot: /var/tmp/%{name}-%{version}-%{release}-root

%description
Gaim allows you to talk to anyone using AOL's 
Instant Messenger service (you can sign up at http://www.aim.aol.com).  

It uses the TOC version of the AOL protocol, so your buddy list is 
stored on AOL's servers and can be retrieved from anywhere.

It contains many of the same features as AOL's IM client while at
the same time incorporating many new features.

%prep

%setup

%build
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix}
make

%install
if [ -d $RPM_BUILD_ROOT ]; then rm -r $RPM_BUILD_ROOT; fi
mkdir -p $RPM_BUILD_ROOT%{prefix}
make prefix=$RPM_BUILD_ROOT%{prefix} install-strip

%files
%defattr(-,root,root)
%attr(755,root,root) %{prefix}/bin/gaim
%doc doc/the_penguin.txt doc/PROTOCOL doc/CREDITS NEWS COPYING AUTHORS doc/FAQ README README.plugins ChangeLog

%clean
rm -r $RPM_BUILD_ROOT