~logan/ubuntu/wily/pinentry/0.9.2

« back to all changes in this revision

Viewing changes to qt4/Makefile.am

  • Committer: Logan Rosen
  • Date: 2015-05-26 02:53:55 UTC
  • mfrom: (4.1.8 sid)
  • Revision ID: logan@ubuntu.com-20150526025355-xv8gmurkxvx2qai1
Tags: 0.9.2-1ubuntu1
* Merge from Debian unstable. Remaining changes:
  - debian/patches/kubuntu_fix_stayontop.diff: Make pinentry stay on top.
* Refresh patch.
* debian/rules: Install README.Debian in all packages instead of using
  symlinks.
* new upstream version (Closes: #516489)
* add pinentry-tty package (Closes: #782888)
* debian/copyright: use DEP5
* use --enable-pinentry-qt4-clipboard (Closes: #637029)
* terminate politely if TTY vanishes (Closes: #559936)
* use dh-autoreconf
* New Upstream Release
* Bringing package under team maintenance, with Peter's agreement.
* Non-maintainer upload
* new upstream release (Closes: #765532)
* bumped Standards-Version to 3.9.6 (no changes needed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.am
2
 
# Copyright (C) 2002 g10 Code GmbH, Klar�lvdalens Datakonsult AB
3
 
# Copyright (C) 2008 g10 Code GmbH
4
 
#
5
 
# This file is part of PINENTRY.
6
 
#
7
 
# PINENTRY is free software; you can redistribute it and/or modify
8
 
# it under the terms of the GNU General Public License as published by
9
 
# the Free Software Foundation; either version 2 of the License, or
10
 
# (at your option) any later version.
11
 
#
12
 
# PINENTRY is distributed in the hope that it will be useful,
13
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
# GNU General Public License for more details.
16
 
#
17
 
# You should have received a copy of the GNU General Public License
18
 
# along with this program; if not, write to the Free Software
19
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
20
 
 
21
 
## Process this file with automake to produce Makefile.in
22
 
 
23
 
bin_PROGRAMS = pinentry-qt4
24
 
 
25
 
EXTRA_DIST = document-encrypt.png pinentry.qrc
26
 
 
27
 
 
28
 
if FALLBACK_CURSES
29
 
ncurses_include = $(NCURSES_INCLUDE)
30
 
libcurses = ../pinentry/libpinentry-curses.a $(LIBCURSES) $(LIBICONV)
31
 
else
32
 
ncurses_include =
33
 
libcurses =
34
 
endif
35
 
 
36
 
 
37
 
AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/assuan -I$(top_srcdir)/secmem \
38
 
        $(ncurses_include) -I$(top_srcdir)/pinentry
39
 
AM_CXXFLAGS = $(QT4_CORE_CFLAGS) $(QT4_GUI_CFLAGS)
40
 
pinentry_qt4_LDADD = $(QT4_CORE_LIBS) $(QT4_GUI_LIBS) $(libcurses) \
41
 
        ../pinentry/libpinentry.a $(top_builddir)/assuan/libassuan.a \
42
 
        $(top_builddir)/secmem/libsecmem.a $(LIBCAP)
43
 
 
44
 
pinentry_qt4_SOURCES = pinentrydialog.h pinentrydialog.cpp \
45
 
        main.cpp secstring.h secstring.cpp qsecurelineedit.h \
46
 
        qsecurelineedit.cpp pinentrydialog.moc qsecurelineedit.moc \
47
 
        qrc_pinentry.cpp \
48
 
        qsecurelineedit_p.h \
49
 
        pinentryconfirm.cpp pinentryconfirm.h pinentryconfirm.moc