diff options
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | debian/control | 10 | ||||
-rwxr-xr-x | debian/rules | 41 | ||||
-rwxr-xr-x | src/ivycontrolpanel | 8 |
4 files changed, 32 insertions, 35 deletions
diff --git a/debian/changelog b/debian/changelog index b3a89c5..c149975 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +ivycontrolpanel (2.0) unstable; urgency=low + + * Reconception IHM : le widget Zinc est abandonné au profit de widgets + plus adaptés. + * Reconception graphique + + -- Daniel Etienne <etienne@cena.fr> Wed, 7 May 2003 17:47:18 +0200 + ivycontrolpanel (1.9) unstable; urgency=low * passage à zinc-perl 3.2.6a1 ou >= 3.2.6h diff --git a/debian/control b/debian/control index c7fbfb9..68f5696 100644 --- a/debian/control +++ b/debian/control @@ -1,16 +1,16 @@ Source: ivycontrolpanel Section: devel Priority: extra -Maintainer: Christophe Mertz <mertz@cena.fr> -Standards-Version: 2.3.0.0 +Maintainer: Daniel Etienne <etienne@cena.fr> +Standards-Version: 3.2.1 Package: ivycontrolpanel Architecture: all -Depends: perl5, ivy-perl (>= 4.11b), perl-tk, zinc-perl (= 3.2.6a1) | zinc-perl (>= 3.2.6h) +Depends: perl5, ivy-perl (>= 4.11b), perl-tk, ivylaunch 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. + It also offers some simulation start, stop and pause (specific + use for Toccata trafic generator) diff --git a/debian/rules b/debian/rules index 0204846..74aba0a 100755 --- a/debian/rules +++ b/debian/rules @@ -6,57 +6,48 @@ package=ivycontrolpanel build: $(checkdir) - pod2man src/$(package) > doc/$(package).1 touch build clean: $(checkdir) -rm -f build + -$(MAKE) clean -rm -f `find . -name "*~"` -rm -rf debian/tmp debian/files* core debian/substvars -binary-indep: checkroot build +binary-indep: 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. + +binary-arch: checkroot build $(checkdir) -rm -rf debian/tmp + install -d 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 + install -m755 src/$(package) debian/tmp/usr/bin/$(package) + install -m644 src/*.pm debian/tmp/usr/lib/$(package) + install -m644 images/*.bmp debian/tmp/usr/share/$(package) # 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 + pod2man src/$(package) > $(package).1 + debstd + dpkg-gencontrol 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 +binary: binary-indep binary-arch checkroot: $(checkdir) test root = "`whoami`" .PHONY: binary binary-arch binary-indep clean checkroot - diff --git a/src/ivycontrolpanel b/src/ivycontrolpanel index e0214bd..f46aedb 100755 --- a/src/ivycontrolpanel +++ b/src/ivycontrolpanel @@ -770,12 +770,10 @@ ivycontrolpanel [-help] [-b bus] [-nocursor] [fugueconfigfile] =head1 DESCRIPTION -ivycontrolpanel blabla. - -description des interactions de controle (vitesse, réglage de l'heure, -play/pause, sortie) +ivycontrolpanel displays agents detected on a given ivy bus. For each agent, a led indicates its status. By clicking on an active agent (or its led), you kill it (an ivy die message is sent to it). When ivycontrolpanel is associated with a Fugue configuration file, the agents referenced in this file can be restarted by the same way. These agents are recognizable by their larger led's border. + +At bottom of window, two areas are dedicated to a specific agent, the air traffic simulator Rejeu. At bottom left, you can adjust the traffic speed. At bottom center, you have a clock; when you click on one of time fields, two scrolling arrows appears which let you adjust time; validation is done by clicking on the last selected field. Near, play/pause buttons let you start or stop the traffic simulator. Then, at bottom right, the cross button will be used to kill all agents and quit. -description du panneau agents. =head1 OPTIONS |