35 lines
965 B
Plaintext
35 lines
965 B
Plaintext
# Description: A multi-protocol instant messaging client
|
|
# URL: http://pidgin.im/
|
|
# Maintainer: Simone Rota, sip at crux dot nu
|
|
# Depends on: xorg-libxscrnsaver, nss, nspr, startup-notification, p5-xml-parser, gtk
|
|
|
|
name=pidgin
|
|
version=2.4.3
|
|
release=1
|
|
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-gtkspell \
|
|
--disable-meanwhile \
|
|
--disable-avahi \
|
|
--disable-tcl \
|
|
--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 \
|
|
--disable-dbus \
|
|
--disable-gstreamer \
|
|
--with-dynamic-prpls="gg,irc,jabber,msn,novell,oscar,qq,sametime,silc,simple,yahoo,zephyr"
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -rf $PKG/usr/share/locale
|
|
}
|