diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 94 | ||||
-rw-r--r-- | debian/control | 16 | ||||
-rw-r--r-- | debian/copyright | 22 | ||||
-rwxr-xr-x | debian/rules | 62 |
4 files changed, 194 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..b3a89c5 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,94 @@ +ivycontrolpanel (1.9) unstable; urgency=low + + * passage à zinc-perl 3.2.6a1 ou >= 3.2.6h + + -- Christophe Mertz <mertz@tls.cena.fr> Thu, 27 Feb 2003 16:06:24 +0100 + +ivycontrolpanel (1.8) unstable; urgency=low + + * le menu de sélection des hosts pour (re-)lancer une appli possède une valeur + par défaut qui dépend du fichier de configuration. Les hosts possibles sont + calculés à partir du fichier de config. + * l'échelle de changement de vitesse fonctionne correctement + * quand on quitte, un clignotement du bouton stop confirme la prise en compte de l'appui + * regroupement dans un seul rectangle des applis "locales" + * on ne se connecte qu'une seule fois à ivy!!! + * ivycontrolpanel et ivylaunch ne sont plus affichés bien qu'ils soient connectés + * qqs simplifications du code (qui reste malpropre!) + * amélioration du traitement graphique de l'IHM + + -- Christophe MERTZ <mertz@tls.cena.fr> Wed, 19 Jun 2002 13:51:42 +0200 + +ivycontrolpanel (1.7) unstable; urgency=low + + * suppression du "répertoire d'exécution", 4eme argument du fichier + de configuration. ATTENTION, cela entraine une incompatibilité avec + les anciens fichiers de configuration. + * le fichier de configuration est pré-processé à l'aide de "cpp -traditional" + * amélioration du traitement de messages de connexion/deconnexion sur Ivy + * cette appli ainsi que ivylaunch et toccata-banner restent mal ficelées + + -- Christophe MERTZ <mertz@tls.cena.fr> Fri, 30 Nov 2001 19:01:59 +0100 + +ivycontrolpanel (1.6) unstable; urgency=low + + * Added compatibility with rejeu messages + + -- Gwenael BOTHOREL <bothorel@brive.tls.cena.fr> Tue, 27 Nov 2001 15:21:22 +0100 + +ivycontrolpanel (1.5) unstable; urgency=low + + * French comments removed - binding for rate scale modified + + -- Michelle Jacomi <jacomi@cena.fr> Fri, 15 Feb 2001 15:47:09 +0100 + +ivycontrolpanel (1.4) unstable; urgency=low + + * Bug in clock time display should now really be fixed + + -- Michelle Jacomi <jacomi@cena.fr> Fri, 15 Feb 2001 15:41:53 +0100 + +ivycontrolpanel (1.3) unstable; urgency=low + + * Bug in clock time display should be fixed + + -- Michelle Jacomi <jacomi@cena.fr> Tue, 13 Feb 2001 10:44:08 +0100 + +ivycontrolpanel (1.2) unstable; urgency=low + + * Initial release for debian package - should be merged with Duophone 2 version + + -- Michelle Jacomi <jacomi@cena.fr> Fri, 26 Jan 2001 9:45:14 +0100 + +ivycontrolpanel (1.1-2) unstable; urgency=low + + * Test on single start for playing traffic removed + + -- Michelle Jacomi <jacomi@cena.fr> Thu, 27 July 2000 15:53:09 +0100 + + +ivycontrolpanel (1.1-1) unstable; urgency=low + + * Wrong offset when using the traffic speed scale with the mouse + + -- Michelle Jacomi <jacomi@cena.fr> Thu, 27 July 2000 14:32:03 +0100 + +ivycontrolpanel (1.1-0) unstable; urgency=low + + * Play/Pause/Stop buttons behaviour changed from toggle to radio, hours + digits selection frozen during simulation playing, new scale for + setting simulation speed (0.5 added) + + -- Michelle Jacomi <jacomi@cena.fr> Thu, 27 July 2000 11:17:52 +0100 + +ivycontrolpanel (1.0-2) unstable; urgency=low + + * Misc.bugs correction : digits feedback, traffic buttons... + + -- Michelle Jacomi <jacomi@cena.fr> Fri, 7 July 2000 11:17:52 +0100 + +ivycontrolpanel (1.0-1) unstable; urgency=low + + * Initial release + + -- Michelle Jacomi <jacomi@cena.fr> Mon, 26 June 2000 10:37:52 +0100 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..c7fbfb9 --- /dev/null +++ b/debian/control @@ -0,0 +1,16 @@ +Source: ivycontrolpanel +Section: devel +Priority: extra +Maintainer: Christophe Mertz <mertz@cena.fr> +Standards-Version: 2.3.0.0 + +Package: ivycontrolpanel +Architecture: all +Depends: perl5, ivy-perl (>= 4.11b), perl-tk, zinc-perl (= 3.2.6a1) | zinc-perl (>= 3.2.6h) +Description: Monitoring of ivy based applications + Monitoring of ivy agent (ie ivy based applications). + It monitors applications launched on a given ivy port number. + (Specific use for Toccata demos). + It allows restarting agents described in a configuration file. + It also offers some simulation start, stop and pause. + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..a9f84ba --- /dev/null +++ b/debian/copyright @@ -0,0 +1,22 @@ +This package was debianized by Michelle JACOMI jacomi@cena.fr on +Wed, 2 Jun 1999 15:15:17 +0200. + +Copyright: + +C.E.N.A (Centre d'Etudes de la Navigation Aerienne) + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU GPL General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + On Debian systems GPL can be found in the file /usr/share/common-licenses/GPL + Or look at http://www.gnu.org/copyleft/gpl.html + + 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. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..0204846 --- /dev/null +++ b/debian/rules @@ -0,0 +1,62 @@ +#!/usr/bin/make -f +# Made with the aid of debmake, by Christoph Lameter, +# based on the sample debian/rules file for GNU hello by Ian Jackson. + +package=ivycontrolpanel + +build: + $(checkdir) + pod2man src/$(package) > doc/$(package).1 + touch build + +clean: + $(checkdir) + -rm -f build + -rm -f `find . -name "*~"` + -rm -rf debian/tmp debian/files* core debian/substvars + +binary-indep: checkroot build + $(checkdir) + -rm -rf debian/tmp + install -d debian/tmp/usr/bin + install -d debian/tmp/usr/ + install -d debian/tmp/usr/lib/$(package) + install -d debian/tmp/usr/share/$(package) + install -d debian/tmp/usr/share/man/man1 + + pod2man src/$(package) > debian/tmp/usr/share/man/man1/$(package).1 + install -m755 src/ivycontrolpanel debian/tmp/usr/bin/$(package) + for f in src/*.pm; do \ + install -m644 $$f debian/tmp/usr/lib/$(package); \ + done + for f in images/*; do \ + install -m644 $$f debian/tmp/usr/share/$(package); \ + done +# Must have debmake installed for this to work. Otherwise please copy +# /usr/bin/debstd into the debian directory and change debstd to debian/debstd + debstd debian/copyright debian/changelog doc/*.1 doc/ivycontrolpanel.gif + dpkg-gencontrol -isp + chown -R root.root debian/tmp + chmod -R go=rX debian/tmp + dpkg --build debian/tmp .. + +binary-arch: checkroot build + $(checkdir) +# There are no architecture-independent files to be uploaded +# generated by this package. If there were any they would be +# made here. + +define checkdir + test -f debian/rules +endef + +# Below here is fairly generic really + +binary: binary-indep binary-arch + +checkroot: + $(checkdir) + test root = "`whoami`" + +.PHONY: binary binary-arch binary-indep clean checkroot + |