From 276120aeb136e0a498b7028e9eefa289e74b76fb Mon Sep 17 00:00:00 2001 From: Ben Kibbey Date: Sat, 23 Feb 2013 10:18:47 -0500 Subject: [PATCH] Update debian package control file. --- debian/changelog | 8 ++++++++ debian/control | 8 ++++++-- debian/rules | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index dee139c8..68cacb06 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +pwmd (3.0.0-1) UNRELEASED; urgency=low + + * New upstream. + * Recommend pinentry 0.7.6 rather than Depend. + * Add compile time features. + + -- Ben Kibbey Sat, 23 Feb 2013 10:16:53 -0500 + pwmd (2.20-1) testing; urgency=low * New upstream. diff --git a/debian/control b/debian/control index 132693be..b89d4cc7 100644 --- a/debian/control +++ b/debian/control @@ -9,8 +9,8 @@ Standards-Version: 3.9.1 Package: pwmd Homepage: http://pwmd.sourceforge.net/ Architecture: any -Depends: ${shlibs:Depends}, pinentry-curses (>= 0.7.5) | pinentry-gtk (>= 0.7.5) | pinentry-gtk2 (>= 0.7.5) | pinentry-qt (>= 0.7.5) | pinentry-qt4 (>= 0.7.5) -Recommends: libpwmd +Depends: ${shlibs:Depends} +Recommends: libpwmd, pinentry-curses (>= 0.7.6) | pinentry-gtk (>= 0.7.6) | pinentry-gtk2 (>= 0.7.6) | pinentry-qt (>= 0.7.6) | pinentry-qt4 (>= 0.7.6) Description: a universal data server Password Manager Daemon is a server that provides a way for applications to securely store data in a centralized location. The data is stored in an @@ -30,3 +30,7 @@ Description: a universal data server * Secure memory usage. PWMD will zero out memory before freeing it and also has the option to lock the entire process in RAM to avoid swapping the data to virtual memory. + * Remote connections over TLS. + * gpg-agent support (including smartcards). + . + Read pwmd.info for protocol commands and syntax. \ No newline at end of file diff --git a/debian/rules b/debian/rules index afd49bcb..3bfa38e8 100755 --- a/debian/rules +++ b/debian/rules @@ -33,7 +33,7 @@ endif ifneq "$(wildcard /usr/share/misc/config.guess)" "" cp -f /usr/share/misc/config.guess config.guess endif - ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" --enable-gnutls --enable-quality --enable-acl --enable-agent LDFLAGS="-Wl,-z,defs" build: build-stamp -- 2.11.4.GIT