wok diff hexchat-plugin/receipt @ rev 16974

some fixes to previous commits
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Tue Aug 05 15:58:00 2014 +0200 (2014-08-05)
parents 50db55539590
children 0dbc08309d5e
line diff
     1.1 --- a/hexchat-plugin/receipt	Sun Mar 30 15:23:23 2014 +0000
     1.2 +++ b/hexchat-plugin/receipt	Tue Aug 05 15:58:00 2014 +0200
     1.3 @@ -6,39 +6,39 @@
     1.4  SHORT_DESC="IRC client using GTK+ with plugins support"
     1.5  MAINTAINER="lenios@slitaz.org"
     1.6  LICENSE="GPL2"
     1.7 +WEB_SITE="http://hexchat.github.io/"
     1.8  SOURCE="hexchat"
     1.9  TARBALL="$SOURCE-$VERSION.tar.xz"
    1.10 -WEB_SITE="http://hexchat.github.io/"
    1.11  WGET_URL="http://dl.hexchat.net/hexchat/$TARBALL"
    1.12  PROVIDE="hexchat"
    1.13  
    1.14 -DEPENDS="gtk+ dbus openssl gettext dbus-glib xorg-libXdamage python"
    1.15 +DEPENDS="gtk+ dbus openssl gettext-base dbus-glib xorg-libXdamage python"
    1.16  BUILD_DEPENDS="gtk+-dev dbus-dev openssl shared-mime-info python-dev"
    1.17  
    1.18  # Rules to configure and make the package.
    1.19  compile_rules()
    1.20  {
    1.21 -    cd $src
    1.22 -    sed -i -e 's|glib/gslist.h|glib.h|' -e 's|glib/giochannel.h|glib.h|' \
    1.23 -	   -e 's|glib/glist.h|glib.h|' -e 's|glib/gstrfuncs.h|glib.h|'
    1.24 -    sed -i 's|glib/ghash.h|glib.h|' src/common/servlist.c src/common/text.c
    1.25 -    sed -i 's|glib/gmarkup.h|glib.h|' src/common/util.c
    1.26 -    ./configure  --prefix=/usr \
    1.27 -	  --infodir=/usr/share/info \
    1.28 -	  --mandir=/usr/share/man \
    1.29 -	  --disable-tcl \
    1.30 -	  --enable-spell=static \
    1.31 -	  --enable-ipv6 \
    1.32 -      $CONFIGURE_ARGS &&
    1.33 -    make &&
    1.34 -    make DESTDIR=$DESTDIR install
    1.35 +	sed -i -e 's|glib/gslist.h|glib.h|' -e 's|glib/giochannel.h|glib.h|' \
    1.36 +		-e 's|glib/glist.h|glib.h|' -e 's|glib/gstrfuncs.h|glib.h|'
    1.37 +	sed -i 's|glib/ghash.h|glib.h|' src/common/servlist.c src/common/text.c
    1.38 +	sed -i 's|glib/gmarkup.h|glib.h|' src/common/util.c
    1.39 +
    1.40 +	./configure \
    1.41 +		--prefix=/usr \
    1.42 +		--infodir=/usr/share/info \
    1.43 +		--mandir=/usr/share/man \
    1.44 +		--disable-tcl \
    1.45 +		--enable-spell=static \
    1.46 +		--enable-ipv6 \
    1.47 +		$CONFIGURE_ARGS &&
    1.48 +	make &&
    1.49 +	make DESTDIR=$DESTDIR install
    1.50  }
    1.51  
    1.52  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.53  genpkg_rules()
    1.54  {
    1.55 -    mkdir -p $fs/usr \
    1.56 -    	$fs/usr/share
    1.57 -    cp -a $install/usr/bin $fs/usr
    1.58 -#    cp -a $install/usr/share/dbus-1 $fs/usr/share
    1.59 +	mkdir -p $fs/usr
    1.60 +	cp -a $install/usr/bin $fs/usr
    1.61 +	# cp -a $install/usr/share/dbus-1 $fs/usr/share
    1.62  }