Magellan Linux

Contents of /trunk/extras/pinentry/pinentry-1.0.0-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 28533 - (show annotations) (download)
Wed Dec 28 10:41:26 2016 UTC (7 years, 4 months ago) by niro
File size: 903 byte(s)
auto added: ver bump to 1.0.0-r1
1 # $Id$
2
3 PNAME="pinentry"
4 PVER="1.0.0"
5 PBUILD="r1"
6
7 PCAT="app-crypt"
8
9 DESCRIPTION="A collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol."
10 HOMEPAGE="http://www.gnupg.org/aegypten2/"
11
12 DEPEND=">= sys-libs/ncurses-6.0
13 >= sys-libs/libcap-2.22
14 >= app-crypt/libsecret-0.18
15 >= app-crypt/libassuan-2.4"
16
17 SRCFILE="${PNAME}-${PVER}.tar.bz2"
18 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
19
20 sminclude mbuild
21
22 SRC_URI=(
23 ftp://ftp.gnupg.org/gcrypt/${PNAME}/${SRCFILE}
24 #ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/${PNAME}/${SRCFILE}
25 mirror://${PNAME}/${SRCFILE}
26 )
27
28 UP2DATE="updatecmd ftp://ftp.gnupg.org/gcrypt/${PNAME} | grep ${PNAME}-[0-9] | lasttarball"
29
30 src_compile()
31 {
32 cd ${SRCDIR}
33
34 mconfigure \
35 --enable-pinentry-curses \
36 --enable-fallback-curses \
37 --disable-pinentry-gtk2 \
38 --disable-pinentry-gnome \
39 --disable-pinentry-qt4 \
40 || die
41
42 mmake || die
43 }