diff options
author | Ross Burton <ross@debian.org> | 2003-11-09 17:08:19 +0000 |
---|---|---|
committer | Ross Burton <ross@debian.org> | 2003-11-09 17:08:19 +0000 |
commit | 819357924ee33542eaa86ca9b406f47c8f1b95b6 (patch) | |
tree | f53b8130a71d32e985b2358cf5847256737626d9 | |
download | zenity-819357924ee33542eaa86ca9b406f47c8f1b95b6.tar.gz zenity-819357924ee33542eaa86ca9b406f47c8f1b95b6.tar.bz2 zenity-819357924ee33542eaa86ca9b406f47c8f1b95b6.zip |
Initial import of zenity
-rw-r--r-- | .gitignore | 16 | ||||
-rw-r--r-- | debian/changelog | 46 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control.in | 17 | ||||
-rw-r--r-- | debian/copyright | 25 | ||||
-rw-r--r-- | debian/docs | 2 | ||||
-rw-r--r-- | debian/postrm | 9 | ||||
-rw-r--r-- | debian/preinst | 10 | ||||
-rwxr-xr-x | debian/rules | 10 |
9 files changed, 136 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..4dc4c1e6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +# A simulation of Subversion default ignores, generated by reposurgeon. +*.o +*.lo +*.la +*.al +.libs +*.so +*.so.[0-9]* +*.a +*.pyc +*.pyo +*.rej +*~ +.#* +.*.swp +.DS_store diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 00000000..39c21c38 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,46 @@ +zenity (1.6-2) unstable; urgency=low + + * Move to GNOME Packaging Team on alioth (at last!) + * Add GNOME team to Uploaders + + -- Ross Burton <ross@debian.org> Sun, 9 Nov 2003 17:05:43 +0000 + +zenity (1.6-1) unstable; urgency=low + + * New upstream release + * Build-depend on Debhelper/CDBS with dh_scrollkeeper support + * Remove scrollkeeper from install scripts + * Push to Standards 3.6.1.0 + + -- Ross Burton <ross@debian.org> Thu, 11 Sep 2003 11:11:47 +0100 + +zenity (1.4-1) unstable; urgency=low + + * New upstream release + * Fix mistakes in man page (closes: #204704) + * CDBS should be changing DTD references to local paths (closes: #200004) + + -- Ross Burton <ross@debian.org> Fri, 8 Aug 2003 18:01:35 +0100 + +zenity (1.3-1) unstable; urgency=low + + * New upstream release + * Update to CDBS + * Update Standards to 3.5.10 (no changes) + * Diverting /usr/bin/gdialog to gdialog.real as Zenity is the GNOME 2.4 + replacement and includes a wrapper script. + + -- Ross Burton <ross@debian.org> Thu, 29 May 2003 11:51:53 +0100 + +zenity (1.1-1) unstable; urgency=low + + * New upstream release + + -- Ross Burton <ross@debian.org> Tue, 6 May 2003 18:44:55 +0100 + +zenity (1.0-1) unstable; urgency=low + + * Initial Release. (closes: #179327) + + -- Ross Burton <ross@burtonini.com> Sat, 1 Feb 2003 15:46:03 +0000 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 00000000..b8626c4c --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +4 diff --git a/debian/control.in b/debian/control.in new file mode 100644 index 00000000..d840b6da --- /dev/null +++ b/debian/control.in @@ -0,0 +1,17 @@ +Source: zenity +Section: gnome +Priority: optional +Maintainer: Ross Burton <ross@debian.org> +Build-Depends: debhelper (>= 4.1.54), cdbs (>= 0.4.4), gnome-pkg-tools, scrollkeeper (>= 0.3.9), libgtk2.0-dev, libglade2-dev, libgconf2-dev, libgnomecanvas2-dev +Uploaders: @GNOME_TEAM@ +Standards-Version: 3.6.1.0 + +Package: zenity +Architecture: any +Depends: ${shlibs:Depends}, scrollkeeper (>= 0.3.9) +Description: Display graphical dialog boxes from shell scripts + Zenity allows you to display GTK+ dialogs from shell scripts; it is a + rewrite of the `gdialog' command from GNOME 1. + . + Zenity includes a gdialog wrapper script so that it can be used with + legacy scripts. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 00000000..d15c7a75 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,25 @@ +This package was debianized by Ross Burton <ross@debian.org> on +Sat, 1 Feb 2003 15:46:03 +0000. + +It was downloaded from ftp://ftp.gnome.org/pub/GNOME/sources/zenity/ + +Upstream Author: Glynn Foster <glynn.foster@sun.com> + +Copyright: + + This package 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; version 2 dated June, 1991. + + This package 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 package; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA + 02111-1307, USA. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. diff --git a/debian/docs b/debian/docs new file mode 100644 index 00000000..50bd824b --- /dev/null +++ b/debian/docs @@ -0,0 +1,2 @@ +NEWS +README diff --git a/debian/postrm b/debian/postrm new file mode 100644 index 00000000..88a8b796 --- /dev/null +++ b/debian/postrm @@ -0,0 +1,9 @@ +#! /bin/sh + +set -e + +if [ "$1" = remove ]; then + dpkg-divert --rename --remove /usr/bin/gdialog +fi + +#DEBHELPER# diff --git a/debian/preinst b/debian/preinst new file mode 100644 index 00000000..a9f4654d --- /dev/null +++ b/debian/preinst @@ -0,0 +1,10 @@ +#! /bin/sh + +set -e + +if [ "install" = "$1" ] || [ "upgrade" = "$1" ]; then + dpkg-divert --package zenity --add --rename \ + --divert /usr/bin/gdialog.real /usr/bin/gdialog +fi + +#DEBHELPER# diff --git a/debian/rules b/debian/rules new file mode 100755 index 00000000..efa9fe1c --- /dev/null +++ b/debian/rules @@ -0,0 +1,10 @@ +#! /usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/gnome.mk +include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk + +clean:: + rm -f intltool-{update,merge,extract} + rm -f po/.intltool-merge-cache + rm -f help/C/zenity-C.omf.out |