# HG changeset patch # User Antoine Bodin # Date 1299691237 -3600 # Node ID 2a9e108fd848e9b9cf253b7e3930470459595e4e # Parent ec4ef31b3ad772bcb162fc0dc46cb6ccec68165b Add: pinentry/pinentry-gtk 0.8.1 diff -r ec4ef31b3ad7 -r 2a9e108fd848 pinentry-gtk/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pinentry-gtk/receipt Wed Mar 09 18:20:37 2011 +0100 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="pinentry-gtk" +VERSION="0.8.1" +CATEGORY="security" +SHORT_DESC="Allow GnuPG to read passphrases and PIN numbers in a secure manner (GTK+ GUI)." +# Bring the curses version as fallback if there's no X display. +DEPENDS="gtk+ libcap pinentry" +SOURCE="pinentry" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://www.gnupg.org/" +WGET_URL="ftp://ftp.gnupg.org/gcrypt/pinentry/$TARBALL" + +# Rules to gen a SliTaz package suitable for Tazpkg. + +compile_rules() +{ + cd $src + ./configure --enable-pinentry-gtk2 \ + --enable-fallback-curses \ + --disable-pinentry-curses \ + --disable-pinentry-gtk \ + --disable-pinentry-qt \ + --disable-pinentry-qt4 && + make && + make install +} + +genpkg_rules() +{ + mkdir -p $fs/usr/ + cp -a $_pkg/usr/bin $fs/usr +} diff -r ec4ef31b3ad7 -r 2a9e108fd848 pinentry/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pinentry/receipt Wed Mar 09 18:20:37 2011 +0100 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="pinentry" +VERSION="0.8.1" +CATEGORY="security" +SHORT_DESC="pinentry is a small collection of dialog programs that allow GnuPG to read passphrases and PIN numbers in a secure manner." +DEPENDS="ncursesw libcap" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.gnupg.org/" +WGET_URL="ftp://ftp.gnupg.org/gcrypt/pinentry/$TARBALL" + +# Rules to gen a SliTaz package suitable for Tazpkg. + +compile_rules() +{ + cd $src + ./configure --enable-pinentry-curses \ + --disable-pinentry-gtk \ + --disable-pinentry-gtk2 \ + --disable-pinentry-qt \ + --disable-pinentry-qt4 && + make && make install +} + +genpkg_rules() +{ + mkdir -p $fs/usr/ + cp -a $_pkg/usr/bin $fs/usr +}