2007-05-07 07:54:04 -05:00
|
|
|
# Description: A multi-protocol instant messaging client
|
|
|
|
# Maintainer: Matt Housh, jaeger at morpheus dot net
|
|
|
|
# URL: http://pidgin.im/
|
|
|
|
# Depends on: nss, startup-notification
|
|
|
|
|
|
|
|
name=pidgin
|
2007-10-24 15:58:35 -05:00
|
|
|
version=2.2.2
|
2007-05-29 07:58:28 -05:00
|
|
|
release=1
|
2007-05-07 07:54:04 -05:00
|
|
|
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.bz2)
|
|
|
|
|
|
|
|
build () {
|
|
|
|
cd pidgin-$version
|
|
|
|
sed -i -e 's/x$GCONFTOOL/xno/' configure
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--mandir=/usr/man \
|
|
|
|
--disable-perl \
|
|
|
|
--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 \
|
2007-05-16 21:25:56 -05:00
|
|
|
--disable-gevolution \
|
|
|
|
--disable-dbus \
|
|
|
|
--disable-gstreamer \
|
|
|
|
--with-dynamic-prpls="gg,irc,jabber,msn,novell,oscar,qq,sametime,silc,simple,yahoo,zephyr"
|
2007-05-07 07:54:04 -05:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/share/locale
|
|
|
|
}
|