# HG changeset patch # User Hans-G?nter Theisgen # Date 1729697658 -3600 # Node ID ddf8fdd181daf8bdf9262f27ed6a6f7c2a78ee51 # Parent d831eaab074cc41c800303d17158bc8e3924739d created recipe for libxfcegui4-lang diff -r d831eaab074c -r ddf8fdd181da libxfcegui4-dev/receipt --- a/libxfcegui4-dev/receipt Wed Oct 23 16:19:52 2024 +0100 +++ b/libxfcegui4-dev/receipt Wed Oct 23 16:34:18 2024 +0100 @@ -3,22 +3,16 @@ PACKAGE="libxfcegui4-dev" VERSION="4.10.0" CATEGORY="development" -SHORT_DESC="Xfce Gtk Widget library dev files" +SHORT_DESC="Xfce Gtk Widget library - development files." MAINTAINER="erjo@slitaz.org" LICENSE="GPL2" -WANTED="libxfcegui4" WEB_SITE="https://www.xfce.org" -DEPENDS="gtk+ libxfcegui4 libxfce4util-dev pkg-config" +DEPENDS="gtk+ libxfce4util-dev libxfcegui4 pkg-config" +WANTED="libxfcegui4" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib \ - $fs/usr - - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + get_dev_files } - diff -r d831eaab074c -r ddf8fdd181da libxfcegui4-lang/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libxfcegui4-lang/receipt Wed Oct 23 16:34:18 2024 +0100 @@ -0,0 +1,17 @@ +# SliTaz package receipt. + +PACKAGE="libxfcegui4-lang" +VERSION="4.10.0" +CATEGORY="localization" +SHORT_DESC="Xfce Gtk Widget library - localised messages." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPL2" +WEB_SITE="https://www.xfce.org" + +WANTED="libxfcegui4" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cook_copy_folders locale +} diff -r d831eaab074c -r ddf8fdd181da libxfcegui4/receipt --- a/libxfcegui4/receipt Wed Oct 23 16:19:52 2024 +0100 +++ b/libxfcegui4/receipt Wed Oct 23 16:34:18 2024 +0100 @@ -3,16 +3,18 @@ PACKAGE="libxfcegui4" VERSION="4.10.0" CATEGORY="x-window" -SHORT_DESC="Xfce Gtk Widget library" +SHORT_DESC="Xfce Gtk Widget library." MAINTAINER="erjo@slitaz.org" LICENSE="GPL2" +WEB_SITE="https://www.xfce.org" + TARBALL="$PACKAGE-$VERSION.tar.bz2" -WEB_SITE="https://www.xfce.org" WGET_URL="https://archive.xfce.org/src/archive/$PACKAGE/${VERSION%.*}/$TARBALL" -DEPENDS="gtk+ libxfce4util xfconf startup-notification dbus-glib libglade" -BUILD_DEPENDS="gtk+-dev libxfce4util-dev xfconf-dev startup-notification-dev - libglade-dev xcb-util-dev intltool util-linux-uuid-dev" +SUGGESTED="libxfcegui4-lang" +DEPENDS="dbus-glib gtk+ libglade libxfce4util startup-notification xfconf" +BUILD_DEPENDS="gtk+-dev intltool libglade-dev libxfce4util-dev + startup-notification-dev util-linux-uuid-dev xcb-util-dev xfconf-dev" # What is the latest version available today? current_version() @@ -24,33 +26,26 @@ # Rules to configure and make the package. compile_rules() { - cd $src # xfce_setenv is removed in libxfce4util 4.11.0 sed -i 's/xfce_setenv/g_setenv/' libxfcegui4/xfce-exec.c - ./configure --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - --disable-static \ - --disable-debug \ + + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --disable-debug \ + --disable-static \ $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - - mkdir -p $fs/usr/lib \ - $fs/usr/share/locale - - cp -a $install/usr/lib/*.so* $fs/usr/lib - cp -a $install/usr/lib/libglade $fs/usr/lib - cp -a $install/usr/share/locale/fr $fs/usr/share/locale - cp -a $install/usr/share/icons $fs/usr/share - + cook_copy_files *.so* + cook_copy_folders icons + # Remove SVG icons - rm -rf $fs/usr/share/icons/hicolor/scalable - + rm -rf $fs/usr/share/icons/hicolor/scalable } -