wok-next diff xfconf/receipt @ rev 21306

updated httrack (3.45.4 -> 3.49.2)
author Hans-G?nter Theisgen
date Tue Dec 10 10:00:39 2019 +0100 (2019-12-10)
parents e19ff076dc63
children
line diff
     1.1 --- a/xfconf/receipt	Mon Dec 31 17:23:40 2018 +0200
     1.2 +++ b/xfconf/receipt	Tue Dec 10 10:00:39 2019 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt v2.
     1.5  
     1.6  PACKAGE="xfconf"
     1.7 -VERSION="4.12.0" # Xfce release 4.12: http://archive.xfce.org/xfce/4.12/src/
     1.8 +VERSION="4.13.6"
     1.9  CATEGORY="x-window"
    1.10  SHORT_DESC="Xfce configuration utility"
    1.11  MAINTAINER="devel@slitaz.org"
    1.12 @@ -10,42 +10,32 @@
    1.13  
    1.14  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.15  WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
    1.16 +TARBALL_SHA1="e972e9f24508f8a435dd1d9230e0399a39773443"
    1.17  
    1.18  COOKOPTS="force-arch" # arch-specific paths
    1.19  
    1.20 -BUILD_DEPENDS="intltool libxfce4util-dev dbus-dev dbus-glib-dev \
    1.21 +BUILD_DEPENDS="intltool libxfce4util-dev dbus-dev \
    1.22  perl-extutils-depends perl-extutils-pkgconfig perl-glib perl-dev"
    1.23  SPLIT="$PACKAGE-dev $PACKAGE-perl $PACKAGE"
    1.24  
    1.25 +COPY_perl="/usr/lib/perl5/ @rm"
    1.26 +CAT_perl="perl|Perl bindings"
    1.27 +
    1.28 +DEPENDS_dev="$PACKAGE glib-dev" # use xfconf-perl separately if need
    1.29 +DEPENDS_perl="$PACKAGE glib perl"
    1.30 +DEPENDS_std="glib libxfce4util   dbus"
    1.31 +
    1.32 +TAGS_std="Xfce"
    1.33 +
    1.34  compile_rules() {
    1.35  	./configure \
    1.36  		--disable-debug \
    1.37  		--disable-gtk-doc \
    1.38 +		--with-perl-options='INSTALLDIRS=vendor' \
    1.39  		$CONFIGURE_ARGS &&
    1.40  	fix libtool &&
    1.41  	make &&
    1.42  	make install || return 1
    1.43  
    1.44 -	chmod a+x $install/usr/lib/libxfconf-0.so.2.0.0
    1.45 -	find $install/usr/lib/perl5 -type f -exec chmod u+w '{}' \;
    1.46 +	find $install -type f -exec chmod u+w '{}' \; # 444->644, 555->755
    1.47  }
    1.48 -
    1.49 -genpkg_rules() {
    1.50 -	case $PACKAGE in
    1.51 -		*-dev)
    1.52 -			copy @dev
    1.53 -			DEPENDS="xfconf xfconf-perl \
    1.54 -			dbus-dev dbus-glib-dev glib-dev"
    1.55 -			;;
    1.56 -		xfconf-perl)
    1.57 -			copy /usr/lib/perl5/ @rm
    1.58 -			DEPENDS="dbus dbus-glib glib perl xfconf"
    1.59 -			CAT="perl|Perl bindings"
    1.60 -			;;
    1.61 -		xfconf)
    1.62 -			copy @std @rm
    1.63 -			DEPENDS="dbus dbus-glib glib libxfce4util"
    1.64 -			;;
    1.65 -	esac
    1.66 -	TAGS="Xfce"
    1.67 -}