wok rev 9190

Add: pinentry/pinentry-gtk 0.8.1
author Antoine Bodin <gokhlayeh@slitaz.org>
date Wed Mar 09 18:20:37 2011 +0100 (2011-03-09)
parents ec4ef31b3ad7
children 2d83b01ba257
files pinentry-gtk/receipt pinentry/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/pinentry-gtk/receipt	Wed Mar 09 18:20:37 2011 +0100
     1.3 @@ -0,0 +1,33 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="pinentry-gtk"
     1.7 +VERSION="0.8.1"
     1.8 +CATEGORY="security"
     1.9 +SHORT_DESC="Allow GnuPG to read passphrases and PIN numbers in a secure manner (GTK+ GUI)."
    1.10 +# Bring the curses version as fallback if there's no X display.
    1.11 +DEPENDS="gtk+ libcap pinentry"
    1.12 +SOURCE="pinentry"
    1.13 +TARBALL="$SOURCE-$VERSION.tar.gz"
    1.14 +WEB_SITE="http://www.gnupg.org/"
    1.15 +WGET_URL="ftp://ftp.gnupg.org/gcrypt/pinentry/$TARBALL"
    1.16 +
    1.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.18 +
    1.19 +compile_rules()
    1.20 +{
    1.21 +	cd $src
    1.22 +	./configure --enable-pinentry-gtk2 \
    1.23 +		--enable-fallback-curses \
    1.24 +		--disable-pinentry-curses \
    1.25 +		--disable-pinentry-gtk \
    1.26 +		--disable-pinentry-qt \
    1.27 +		--disable-pinentry-qt4 &&
    1.28 +	make &&
    1.29 +	make install
    1.30 +}
    1.31 +
    1.32 +genpkg_rules()
    1.33 +{
    1.34 +	mkdir -p $fs/usr/
    1.35 +	cp -a $_pkg/usr/bin $fs/usr
    1.36 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/pinentry/receipt	Wed Mar 09 18:20:37 2011 +0100
     2.3 @@ -0,0 +1,29 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="pinentry"
     2.7 +VERSION="0.8.1"
     2.8 +CATEGORY="security"
     2.9 +SHORT_DESC="pinentry is a small collection of dialog programs that allow GnuPG to read passphrases and PIN numbers in a secure manner."
    2.10 +DEPENDS="ncursesw libcap"
    2.11 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.12 +WEB_SITE="http://www.gnupg.org/"
    2.13 +WGET_URL="ftp://ftp.gnupg.org/gcrypt/pinentry/$TARBALL"
    2.14 +
    2.15 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.16 +
    2.17 +compile_rules()
    2.18 +{
    2.19 +	cd $src
    2.20 +	./configure --enable-pinentry-curses \
    2.21 +		--disable-pinentry-gtk \
    2.22 +		--disable-pinentry-gtk2 \
    2.23 +		--disable-pinentry-qt \
    2.24 +		--disable-pinentry-qt4 &&
    2.25 +	make &&	make install
    2.26 +}
    2.27 +
    2.28 +genpkg_rules()
    2.29 +{
    2.30 +	mkdir -p $fs/usr/
    2.31 +	cp -a $_pkg/usr/bin $fs/usr
    2.32 +}