aboutsummaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog6
-rw-r--r--debian/control14
-rw-r--r--debian/copyright25
-rwxr-xr-xdebian/rules5
4 files changed, 50 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..86d4a19
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+krb5-auth-dialog (0.6-0ubuntu1) edgy; urgency=low
+
+ * Initial revision
+
+ -- Andrew Mitchell <ajmitch@ubuntu.com> Sat, 10 Jun 2006 23:11:43 +1200
+
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..5848d52
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,14 @@
+Source: krb5-auth-dialog
+Section: gnome
+Priority: optional
+Maintainer: Andrew Mitchell <ajmitch@ubuntu.com>
+Build-Depends: debhelper (>= 5.0.0), cdbs, libkrb5-dev, libgnome2-dev, libgtk2.0-dev, libglade2-dev, intltool, libgnomeui-dev
+Standards-Version: 3.7.2
+
+Package: krb5-auth-dialog
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: dialog for reauthenticating kerberos tickets
+ krb5-auth-dialog is a simple dialog that monitors kerberos tickets, and
+ pops up a dialog when they are about to expire.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..6f8b435
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,25 @@
+This package was debianized by Andrew Mitchell <ajmitch@ubuntu.com> on
+Fri Sep 30 00:52:30 NZST 2005 from sources obtained from:
+
+ http://ftp.gnome.org/pub/GNOME/sources/krb5-auth-dialog/
+
+ Copyright (C) 2004,2005 Red Hat, Inc.
+ Authored by Christopher Aillon <caillon@redhat.com>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2, or (at your option)
+ any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+On Debian systems, the complete text of the GNU General Public License
+can be found in ‘/usr/share/common-licenses/GPL’.
+
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..77225a7
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,5 @@
+#! /usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/gnome.mk
+
bgstack15