2006-02-23 15:26:10 +00:00
|
|
|
# Description: A multi-protocol instant messaging client with encryption
|
|
|
|
# Maintainer: Matt Housh, jaeger at morpheus dot net
|
|
|
|
# URL: http://gaim.sourceforge.net/
|
|
|
|
# Depends on: gtk, nss
|
|
|
|
|
|
|
|
# Nice to have: libao
|
|
|
|
# Note: mozilla will work in place of nss for building gaim
|
|
|
|
|
|
|
|
name=gaim
|
|
|
|
version=1.5.0
|
2006-04-09 16:48:38 +00:00
|
|
|
release=2
|
2006-02-23 15:26:10 +00:00
|
|
|
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.bz2)
|
|
|
|
|
|
|
|
build () {
|
|
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--disable-nls \
|
|
|
|
--disable-gnutls \
|
|
|
|
--with-nspr-includes=/usr/include/nspr \
|
|
|
|
--with-nss-includes=/usr/include/nss \
|
|
|
|
--with-nspr-libs=/usr/lib \
|
|
|
|
--with-nss-libs=/usr/lib \
|
|
|
|
--disable-gevolution
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2006-04-09 16:48:38 +00:00
|
|
|
mv $PKG/{Gaim.*,auto} $PKG/usr/lib/perl5/*/linux/
|
2006-02-23 15:26:10 +00:00
|
|
|
find $PKG -name perllocal.pod -exec rm -f '{}' \;
|
|
|
|
find $PKG -name .packlist -exec rm -f '{}' \;
|
|
|
|
}
|