Mercurial > pidgin
changeset 322:8ed366802f2e
[gaim-migrate @ 332]
Made adjustments to how rpm .spec file works, and added new default plugin,
and added plugins to RPM.
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Fri, 02 Jun 2000 21:13:31 +0000 |
parents | 14e78d939990 |
children | e94a6f5d4088 |
files | .cvsignore configure.in gaim.spec gaim.spec.in plugins/Makefile.am |
diffstat | 5 files changed, 52 insertions(+), 50 deletions(-) [+] |
line wrap: on
line diff
--- a/.cvsignore Fri Jun 02 20:08:09 2000 +0000 +++ b/.cvsignore Fri Jun 02 21:13:31 2000 +0000 @@ -15,3 +15,4 @@ Receive.h aclocal.m4 libtool +gaim.spec
--- a/configure.in Fri Jun 02 20:08:09 2000 +0000 +++ b/configure.in Fri Jun 02 21:13:31 2000 +0000 @@ -101,4 +101,5 @@ libfaim/Makefile doc/Makefile m4/Makefile + gaim.spec ])
--- a/gaim.spec Fri Jun 02 20:08:09 2000 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,49 +0,0 @@ -%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 -
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gaim.spec.in Fri Jun 02 21:13:31 2000 +0000 @@ -0,0 +1,49 @@ +%define name @PACKAGE@ +%define version @VERSION@ +%define release 1 +%define serial 1 +%define prefix /usr + +Summary: A client compatible with AOL's 'Instant Messenger' +Name: %{name} +Version: %{version} +Release: %{release} +Serial: %{serial} +Copyright: GPL +Group: Applications/Internet +Vendor: Pimpin' Penguins +Url: http://www.marko.net/gaim/ +Source: %{name}-%{version}.tar.gz +BuildRoot: /var/tmp/%{name}-%{version}-root +Requires: gtk+ >= 1.2.3 + +%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 +%{prefix}/lib/gaim/* + +%clean +rm -r $RPM_BUILD_ROOT
--- a/plugins/Makefile.am Fri Jun 02 20:08:09 2000 +0000 +++ b/plugins/Makefile.am Fri Jun 02 21:13:31 2000 +0000 @@ -7,7 +7,7 @@ LDFLAGS += -ggdb $(GTK_LIBS) -shared .c.so: $(CC) $(CFLAGS) -fPIC -DPIC -o $@ $< $(LDFLAGS) -plugin_DATA = autorecon.so iconaway.so spellchk.so +plugin_DATA = autorecon.so iconaway.so notify.so spellchk.so plugindir = $(libdir)/gaim clean: $(RM) $(plugin_DATA)