wok rev 24216

updated perl-gtk2-trayicon (0.06 -> 0.07)
author Hans-G?nter Theisgen
date Fri Dec 31 16:29:31 2021 +0100 (2021-12-31)
parents 08f840a2b79b
children 78c6039421c0
files perl-gtk2-trayicon/description.txt perl-gtk2-trayicon/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/perl-gtk2-trayicon/description.txt	Fri Dec 31 16:29:31 2021 +0100
     1.3 @@ -0,0 +1,26 @@
     1.4 +NOTICE
     1.5 +
     1.6 +This module has been deprecated by the Gtk-Perl project.
     1.7 +This means that the module will no longer be updated with security
     1.8 +patches, bug fixes, or when changes are made in the Perl ABI.
     1.9 +The Git repo for this module has been archived (made read-only),
    1.10 +it will no longer possible to submit new commits to it.
    1.11 +You are more than welcome to ask about this module on the Gtk-Perl
    1.12 +mailing list, but our priorities going forward will be maintaining
    1.13 +Gtk-Perl modules that are supported and maintained upstream;
    1.14 +this module is neither.
    1.15 +
    1.16 +NOTICE
    1.17 +
    1.18 +EggTrayIcon is slated for inclusion in Gtk+ at some point, which
    1.19 +is the reason the Gtk2::TrayIcon namespace. As all egg libs,
    1.20 +EggTrayIcon is not considered api stable and its not installed
    1.21 +as a shared object.
    1.22 +
    1.23 +Enough about what it is not, Gtk2::TrayIcon is first and foremost
    1.24 +a simple way of giving a Gtk2 script access to the system tray.
    1.25 +
    1.26 +System Trays are found in both KDE and Gnome.
    1.27 +But neither support the specification fully.
    1.28 +
    1.29 +Gtk2::TrayIcon is a subclass of Gtk2::Plug and should be used as such.
     2.1 --- a/perl-gtk2-trayicon/receipt	Fri Dec 31 16:25:16 2021 +0100
     2.2 +++ b/perl-gtk2-trayicon/receipt	Fri Dec 31 16:29:31 2021 +0100
     2.3 @@ -1,18 +1,20 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="perl-gtk2-trayicon"
     2.7 -VERSION="0.06"
     2.8 +VERSION="0.07"
     2.9  CATEGORY="development"
    2.10  SHORT_DESC="Gtk2::TrayIcon module is a Perl extension."
    2.11  MAINTAINER="pascal.bellard@slitaz.org"
    2.12  LICENSE="GPL"
    2.13 +WEB_SITE="https://metacpan.org/pod/Gtk2::TrayIcon"
    2.14 +REPOLOGY="perl:gtk2-trayicon"
    2.15  SOURCE="Gtk2-TrayIcon"
    2.16  TARBALL="$SOURCE-$VERSION.tar.gz"
    2.17 -WEB_SITE="https://metacpan.org/dist/Gtk2-TrayIcon"
    2.18 -WGET_URL="https://metacpan.org/CPAN/authors/id/B/BO/BORUP/$TARBALL"
    2.19 +WGET_URL="https://www.cpan.org/modules/by-module/Gtk2/$TARBALL"
    2.20  
    2.21 -DEPENDS="perl-gtk2"
    2.22 -BUILD_DEPENDS="perl-gtk2 perl-extutils-depends perl-extutils-pkgconfig gtk+-dev"
    2.23 +DEPENDS="libxml2 perl-gtk2"
    2.24 +BUILD_DEPENDS="gtk+-dev libxml2-dev perl-gtk2 perl-extutils-depends
    2.25 +	perl-extutils-pkgconfig"
    2.26  
    2.27  current_version()
    2.28  {
    2.29 @@ -23,16 +25,13 @@
    2.30  # Rules to configure and make the package.
    2.31  compile_rules()
    2.32  {
    2.33 -	cd $src
    2.34  	perl Makefile.PL &&
    2.35  	make &&
    2.36 -	make DESTDIR=$DESTDIR install
    2.37 +	make install DESTDIR=$DESTDIR
    2.38  }
    2.39  
    2.40  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.41  genpkg_rules()
    2.42  {
    2.43 -	mkdir -p $fs/usr
    2.44 -	cp -a $install/usr/lib $fs/usr
    2.45 +	cook_copy_folders	lib
    2.46  }
    2.47 -