2006-02-23 15:26:10 +00:00
|
|
|
# Description: GTK+ based IRC client
|
2006-09-17 19:03:05 +00:00
|
|
|
# URL: http://www.xchat.org/
|
2008-01-30 21:08:56 +01:00
|
|
|
# Maintainer: Simone Rota, sip at crux dot nu
|
2006-09-17 19:03:05 +00:00
|
|
|
# Depends on: openssl, gtk, perl
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=xchat
|
2008-07-05 13:23:12 +00:00
|
|
|
version=2.8.6
|
|
|
|
release=1
|
2007-12-04 19:41:23 -06:00
|
|
|
source=(http://www.xchat.org/files/source/2.8/$name-$version.tar.bz2 \
|
2008-07-05 13:23:12 +00:00
|
|
|
http://www.xchat.org/files/source/2.8/patches/xc286-smallfixes.diff)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
2006-09-17 19:03:05 +00:00
|
|
|
cd $name-$version
|
2008-07-05 13:23:12 +00:00
|
|
|
patch -p1 -i $SRC/xc286-smallfixes.diff
|
2006-09-17 19:03:05 +00:00
|
|
|
./configure --prefix=/usr \
|
2006-02-23 15:26:10 +00:00
|
|
|
--enable-openssl \
|
|
|
|
--enable-perl \
|
|
|
|
--enable-ipv6 \
|
|
|
|
--disable-gnome \
|
|
|
|
--disable-textfe \
|
|
|
|
--disable-python \
|
|
|
|
--disable-tcl \
|
|
|
|
--disable-nls
|
2006-09-17 19:03:05 +00:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/{etc,share}
|
2007-04-01 10:09:33 -05:00
|
|
|
install -D $name.desktop $PKG/usr/share/applications/$name.desktop
|
|
|
|
install -D $name.png $PKG/usr/share/pixmaps/$name.png
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|