]> git.ipfire.org Git - ipfire-3.x.git/blame - lfs/pinentry
Added some lines for ext4 on installer.
[ipfire-3.x.git] / lfs / pinentry
CommitLineData
aa9194b6
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007, 2008, 2009 Michael Tremer & Christian Schmidt #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
27PKG_NAME = pinentry
28VER = 0.7.3
29PKG_VER = 0
30
31THISAPP = $(PKG_NAME)-$(VER)
32DL_FILE = $(THISAPP).tar.gz
33DIR_APP = $(DIR_SRC)/$(THISAPP)
34
35OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
36
37MAINTAINER =
38GROUP = System/Libraries
39EXTRA = no
40DEBUG = no
41DEPS = libgpg-error
42
43URL = http://www.gnupg.org/
44LICENSE = GPLv2
45SHORT_DESC = Collection of simple PIN or passphrase entry dialogs.
46
47define LONG_DESC
48 Pinentry is a collection of simple PIN or passphrase entry dialogs which \
49 utilize the Assuan protocol as described by the aegypten project; see \
50 http://www.gnupg.org/aegypten/ for details. This package contains the \
51 curses (text) based version of the PIN entry dialog.
52endef
53
54###############################################################################
55# Top-level Rules
56###############################################################################
57
58objects = $(DL_FILE)
59
60download: $(objects)
61
62info:
63 $(DO_PKG_INFO)
64
65install: $(OBJECT)
66
67package:
68 @$(DO_PACKAGE)
69
70$(objects):
71 @$(LOAD)
72
73###############################################################################
74# Installation Details
75###############################################################################
76
77$(OBJECT): $(objects)
78 @$(PREBUILD)
79 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && $(EXTRACTOR) $(DIR_DL)/$(DL_FILE)
80 cd $(DIR_APP) && \
81 ./configure \
82 $(CONFIGURE_ARCH) \
83 --prefix=/usr \
84 --enable-pin-entry-curses \
85 --enable-fallback-curses \
86 --disable-pinentry-gtk \
87 --disable-pinentry-gtk2 \
88 --disable-pinentry-qt
89 cd $(DIR_APP) && make $(PARALLELISMFLAGS)
90 cd $(DIR_APP) && make install
91 @rm -rf $(DIR_APP)
92 @$(POSTBUILD)