wok view xchat-plugin/receipt @ rev 15280

cinepaint: remove a wrong error trigger (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 26 13:12:43 2013 +0000 (2013-09-26)
parents da67a92d3e79
children e4fd343fd7b8
line source
1 # SliTaz package receipt.
3 PACKAGE="xchat-plugin"
4 VERSION="2.8.8"
5 CATEGORY="network"
6 SHORT_DESC="IRC client using GTK+ with plugins support"
7 MAINTAINER="lenios@slitaz.org"
8 LICENSE="GPL2"
9 SOURCE="xchat"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.xchat.org/"
12 WGET_URL="http://www.xchat.org/files/source/2.8/$TARBALL"
13 PROVIDE="xchat"
15 DEPENDS="gtk+ dbus openssl gettext dbus-glib xorg-libXdamage"
16 BUILD_DEPENDS="gtk+-dev dbus-dev openssl shared-mime-info"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 sed -i -e 's|glib/gslist.h|glib.h|' -e 's|glib/giochannel.h|glib.h|' \
23 -e 's|glib/glist.h|glib.h|' -e 's|glib/gstrfuncs.h|glib.h|' \
24 -e 's|glib/gutils.h|glib.h|' src/common/xchat.h
25 sed -i 's|glib/ghash.h|glib.h|' src/common/servlist.c src/common/text.c
26 sed -i 's|glib/gmarkup.h|glib.h|' src/common/util.c
27 ./configure --prefix=/usr \
28 --infodir=/usr/share/info \
29 --mandir=/usr/share/man \
30 --disable-tcl \
31 --enable-spell=static \
32 --enable-ipv6 \
33 $CONFIGURE_ARGS &&
34 make &&
35 make DESTDIR=$DESTDIR install
36 }
38 # Rules to gen a SliTaz package suitable for Tazpkg.
39 genpkg_rules()
40 {
41 mkdir -p $fs/usr \
42 $fs/usr/share
43 cp -a $install/usr/bin $fs/usr
44 # cp -a $install/usr/share/dbus-1 $fs/usr/share
45 }