# HG changeset patch # User Hans-G?nter Theisgen # Date 1645803878 -3600 # Node ID 8091caa34c54e4057df25a4bfc7ede983b8a02e0 # Parent cdc74335c27abdc25b44506f2507c88c7b1d5806 updated fpm2 (0.79 -> 0.90) diff -r cdc74335c27a -r 8091caa34c54 fpm2-lang/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fpm2-lang/receipt Fri Feb 25 16:44:38 2022 +0100 @@ -0,0 +1,16 @@ +# SliTaz package receipt. + +PACKAGE="fpm2-lang" +VERSION="0.90" +CATEGORY="utilities" +SHORT_DESC="Password manager - localised messages." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPL2" +WEB_SITE="https://als.regnet.cz/fpm2/" + +WANTED="fpm2" + +genpkg_rules() +{ + cook_copy_folders locale +} diff -r cdc74335c27a -r 8091caa34c54 fpm2/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fpm2/description.txt Fri Feb 25 16:44:38 2022 +0100 @@ -0,0 +1,2 @@ +FPM2 is a GTK3 port from Figaro's Password Manager originally +developed by John Conneely, with some new enhancements. diff -r cdc74335c27a -r 8091caa34c54 fpm2/receipt --- a/fpm2/receipt Fri Feb 25 16:30:10 2022 +0100 +++ b/fpm2/receipt Fri Feb 25 16:44:38 2022 +0100 @@ -1,20 +1,21 @@ # SliTaz package receipt. PACKAGE="fpm2" -VERSION="0.79" +VERSION="0.90" CATEGORY="utilities" SHORT_DESC="Password manager." MAINTAINER="pankso@slitaz.org" LICENSE="GPL2" WEB_SITE="https://als.regnet.cz/fpm2/" -TARBALL="$PACKAGE-$VERSION.tar.bz2" +TARBALL="$PACKAGE-$VERSION.tar.xz" WGET_URL="${WEB_SITE}download/$TARBALL" -DEPENDS="expat gtk+ libxml2 xorg-libX11 xorg-libXau xorg-libXcomposite \ -xorg-libXcursor xorg-libXdmcp xorg-libXext xorg-libXfixes xorg-libXinerama \ -xorg-libXrandr xorg-libXrender xorg-libXdamage" -BUILD_DEPENDS="gtk+-dev libxml2-dev" +SUGGESTED="fpm2-lang" +DEPENDS="expat gcc83-lib-base gtk+3 libxml2 nettle-dev xorg-libX11 xorg-libXau + xorg-libXcomposite xorg-libXcursor xorg-libXdamage xorg-libXdmcp + xorg-libXext xorg-libXfixes xorg-libXinerama xorg-libXrandr xorg-libXrender" +BUILD_DEPENDS="bash gcc83 glib-dev gtk+3-dev libxml2-dev nettle-dev" # What is the latest version available today? current_version() @@ -26,10 +27,14 @@ # Rules to configure and make the package. compile_rules() { - ./configure \ - --prefix=/usr \ + # Need bash for configure: + sed -i '1s|sh|bash|' configure + + ./configure \ + CC=gcc-83 \ + --prefix=/usr \ --mandir=/usr/share/man && - make -j 1 && + make && make DESTDIR=$DESTDIR install } @@ -37,15 +42,17 @@ genpkg_rules() { mkdir -p $fs/usr/share/pixmaps - cp -a $install/usr/bin $fs/usr + + cp -a $install/usr/bin $fs/usr cp -a $install/usr/share/pixmaps/fpm2/logo.png \ - $fs/usr/share/pixmaps/fpm2.png + $fs/usr/share/pixmaps/fpm2.png # locales - mkdir -p $fs/usr/share/locale - LOCALES="cs de es fr it ru" - for locale in $LOCALES - do - cp -a $install/usr/share/locale/$locale $fs/usr/share/locale - done + # moved to package fpm2-lang +# mkdir -p $fs/usr/share/locale +# LOCALES="cs de es fr it ru" +# for locale in $LOCALES +# do +# cp -a $install/usr/share/locale/$locale $fs/usr/share/locale +# done }