wok-next diff libnotify/receipt @ rev 21687

updated glpi (0.80.7 -> 9.4.6)
author Hans-G?nter Theisgen
date Mon Jun 29 17:11:21 2020 +0100 (2020-06-29)
parents d5aab818505e
children
line diff
     1.1 --- a/libnotify/receipt	Fri Nov 02 14:15:08 2018 +0200
     1.2 +++ b/libnotify/receipt	Mon Jun 29 17:11:21 2020 +0100
     1.3 @@ -7,34 +7,24 @@
     1.4  MAINTAINER="devel@slitaz.org"
     1.5  LICENSE="LGPL2.1"
     1.6  WEB_SITE="https://developer.gnome.org/libnotify/"
     1.7 +LFS="http://www.linuxfromscratch.org/blfs/view/svn/x/libnotify.html"
     1.8  
     1.9  TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.10  WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
    1.11 +TARBALL_SHA1="4cdf482737df504ac37f5489940b5c7ea5e18d57"
    1.12  
    1.13  BUILD_DEPENDS="gdk-pixbuf-dev glib-dev gtk2-dev gobject-introspection-dev \
    1.14  gtk-doc xmlto"
    1.15  SPLIT="$PACKAGE-dev"
    1.16  
    1.17 +DEPENDS_std="gdk-pixbuf glib"
    1.18 +DEPENDS_dev="$PACKAGE gdk-pixbuf-dev glib-dev"
    1.19 +
    1.20  compile_rules() {
    1.21 -	sed -e 's/REQ_GTK_VERSION=2.90/REQ_GTK_VERSION=2.24/' \
    1.22 -	-e 's/tests_modules="gtk+-3.0 >= $REQ_GTK_VERSION"/tests_modules="gtk+-2.0 >= $REQ_GTK_VERSION"/' \
    1.23 -	-i configure
    1.24 -
    1.25 -	./configure $CONFIGURE_ARGS &&
    1.26 +	./configure \
    1.27 +		--disable-static \
    1.28 +		$CONFIGURE_ARGS &&
    1.29  	fix libtool &&
    1.30  	make &&
    1.31  	make install
    1.32  }
    1.33 -
    1.34 -genpkg_rules() {
    1.35 -	case $PACKAGE in
    1.36 -		libnotify)
    1.37 -			copy @std
    1.38 -			DEPENDS="gdk-pixbuf glib"
    1.39 -			;;
    1.40 -		*-dev)
    1.41 -			copy @dev
    1.42 -			DEPENDS="libnotify gdk-pixbuf-dev glib-dev"
    1.43 -			;;
    1.44 -	esac
    1.45 -}