summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authoretienne2003-05-07 16:22:58 +0000
committeretienne2003-05-07 16:22:58 +0000
commit7dc4b968acec0ec88ae6bd3c1b9c6ba6e0ab1858 (patch)
tree8ebb7936eaf5068d9464f769fc3a3e3fb934420f /debian
parentb668e7873d9ffcecbbd848c5a388dba0bf2e77ac (diff)
downloadivycontrolpanel-7dc4b968acec0ec88ae6bd3c1b9c6ba6e0ab1858.zip
ivycontrolpanel-7dc4b968acec0ec88ae6bd3c1b9c6ba6e0ab1858.tar.gz
ivycontrolpanel-7dc4b968acec0ec88ae6bd3c1b9c6ba6e0ab1858.tar.bz2
ivycontrolpanel-7dc4b968acec0ec88ae6bd3c1b9c6ba6e0ab1858.tar.xz
*** empty log message ***
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog8
-rw-r--r--debian/control10
-rwxr-xr-xdebian/rules41
3 files changed, 29 insertions, 30 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
-