wok rev 25743
updated xfconf and xfconf-dev (4.12.0 -> 4.14.1)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Aug 30 13:51:38 2024 +0100 (9 months ago) |
parents | 455748513a4c |
children | ee0dcf2d36a0 |
files | xfconf-dev/receipt xfconf-lang/receipt xfconf/description.txt xfconf/receipt |
line diff
1.1 --- a/xfconf-dev/receipt Tue Aug 27 14:33:47 2024 +0000 1.2 +++ b/xfconf-dev/receipt Fri Aug 30 13:51:38 2024 +0100 1.3 @@ -1,23 +1,18 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="xfconf-dev" 1.7 -VERSION="4.12.0" 1.8 +VERSION="4.14.1" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Xfce Configuration Utility dev files" 1.11 +SHORT_DESC="Xfce Configuration Utility - development files." 1.12 MAINTAINER="erjo@slitaz.org" 1.13 LICENSE="GPL2" 1.14 -WANTED="xfconf" 1.15 WEB_SITE="https://www.xfce.org" 1.16 1.17 -DEPENDS="xfconf glib-dev dbus-dev dbus-glib-dev pkg-config" 1.18 +DEPENDS="dbus-dev dbus-glib-dev glib-dev pkg-config xfconf" 1.19 +WANTED="xfconf" 1.20 1.21 # Rules to gen a SliTaz package suitable for Tazpkg. 1.22 genpkg_rules() 1.23 { 1.24 - mkdir -p $fs/usr \ 1.25 - $fs/usr/lib 1.26 - 1.27 - cp -a $install/usr/include $fs/usr 1.28 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.29 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.30 + get_dev_files 1.31 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/xfconf-lang/receipt Fri Aug 30 13:51:38 2024 +0100 2.3 @@ -0,0 +1,17 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="xfconf-lang" 2.7 +VERSION="4.14.1" 2.8 +CATEGORY="localization" 2.9 +SHORT_DESC="Xfce Configuration Utility - localised messages." 2.10 +MAINTAINER="maintainer@slitaz.org" 2.11 +LICENSE="GPL2" 2.12 +WEB_SITE="https://www.xfce.org" 2.13 + 2.14 +WANTED="xfconf" 2.15 + 2.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.17 +genpkg_rules() 2.18 +{ 2.19 + cook_copy_folders locale 2.20 +}
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/xfconf/description.txt Fri Aug 30 13:51:38 2024 +0100 3.3 @@ -0,0 +1,16 @@ 3.4 +Xfconf is a hierarchical (tree-like) configuration system 3.5 +where the immediate child nodes of the root are called 3.6 +channels. 3.7 +All settings beneath the channel nodes are called properties. 3.8 +Valid channel and property names are composed of the ASCII 3.9 +US-English uppercase characters A-Z, lowercase characters a-z, 3.10 +numerals 0-9, the dash (-), and underscore (_). 3.11 +No other characters are allowed for channel names. 3.12 +The less than (<) and greater than (>) characters 3.13 +(aka angle brackets) are also allowed in property names, 3.14 +but not in channel names. 3.15 +Property names are referenced by their full path underneath 3.16 +their channel, for example: /main/history-window/last-accessed. 3.17 +Of course, when querying a particular property, the channel 3.18 +must be specified separately as well. 3.19 +Both channel and property names are case-insensitive.
4.1 --- a/xfconf/receipt Tue Aug 27 14:33:47 2024 +0000 4.2 +++ b/xfconf/receipt Fri Aug 30 13:51:38 2024 +0100 4.3 @@ -1,17 +1,19 @@ 4.4 # SliTaz package receipt. 4.5 4.6 PACKAGE="xfconf" 4.7 -VERSION="4.12.0" 4.8 +VERSION="4.14.1" 4.9 CATEGORY="x-window" 4.10 -SHORT_DESC="Xfce Copnfiguration Utility" 4.11 +SHORT_DESC="Xfce Configuration Utility." 4.12 MAINTAINER="erjo@slitaz.org" 4.13 LICENSE="GPL2" 4.14 +WEB_SITE="https://www.xfce.org" 4.15 + 4.16 TARBALL="$PACKAGE-$VERSION.tar.bz2" 4.17 -WEB_SITE="https://www.xfce.org" 4.18 WGET_URL="https://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL" 4.19 4.20 -DEPENDS="gtk+ libxfce4util dbus-glib" 4.21 -BUILD_DEPENDS="gtk+-dev libxfce4util-dev dbus-dev dbus-glib-dev intltool" 4.22 +SUGGESTED="xfconf-lang" 4.23 +DEPENDS="dbus-glib gtk+ libxfce4util" 4.24 +BUILD_DEPENDS="dbus-dev dbus-glib-dev gtk+-dev intltool libxfce4util-dev" 4.25 4.26 # What is the latest version available today? 4.27 current_version() 4.28 @@ -24,29 +26,25 @@ 4.29 # Rules to configure and make the package. 4.30 compile_rules() 4.31 { 4.32 - cd $src 4.33 - ./configure --prefix=/usr \ 4.34 - --libexecdir=/usr/lib/$PACKAGE \ 4.35 - --infodir=/usr/share/info \ 4.36 - --disable-debug \ 4.37 - --mandir=/usr/share/man $CONFIGURE_ARGS && \ 4.38 - make && make install 4.39 + ./configure \ 4.40 + --prefix=/usr \ 4.41 + --infodir=/usr/share/info \ 4.42 + --libexecdir=/usr/lib/$PACKAGE \ 4.43 + --mandir=/usr/share/man \ 4.44 + --disable-debug \ 4.45 + $CONFIGURE_ARGS && 4.46 + make && 4.47 + make install 4.48 } 4.49 4.50 4.51 # Rules to gen a SliTaz package suitable for Tazpkg. 4.52 genpkg_rules() 4.53 { 4.54 - mkdir -p $fs/usr \ 4.55 - $fs/usr/lib \ 4.56 - $fs/usr/share/locale 4.57 - 4.58 - 4.59 - cp -a $install/usr/bin $fs/usr 4.60 - cp -a $install/usr/lib/*.so* $fs/usr/lib 4.61 - cp -a $install/usr/lib/xfce4 $fs/usr/lib 4.62 - cp -a $install/usr/share/locale/fr $fs/usr/share/locale 4.63 - cp -a $install/usr/share/dbus-1 $fs/usr/share 4.64 - 4.65 - strip -s $fs/usr/lib/xfce4/$PACKAGE/* 4.66 + cook_copy_folders bin 4.67 + cook_copy_folders dbus-1 4.68 + cook_copy_files xfconfd 4.69 + cook_copy_files *.so* 4.70 + 4.71 + strip -s $fs/usr/lib/xfce4/$PACKAGE/* 4.72 }