summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoretienne2003-05-07 15:02:33 +0000
committeretienne2003-05-07 15:02:33 +0000
commitabdbf7ef1668198068d10a43af20ced90a6f7abd (patch)
tree2d745ed36754d70415c88ec036ed3cf380a460a0
parentb473010093f494a65cbcd64fcc4b1c5b9a0b4256 (diff)
downloadivybanner-abdbf7ef1668198068d10a43af20ced90a6f7abd.zip
ivybanner-abdbf7ef1668198068d10a43af20ced90a6f7abd.tar.gz
ivybanner-abdbf7ef1668198068d10a43af20ced90a6f7abd.tar.bz2
ivybanner-abdbf7ef1668198068d10a43af20ced90a6f7abd.tar.xz
*** empty log message ***
-rw-r--r--debian/changelog18
-rw-r--r--debian/control13
-rw-r--r--debian/copyright8
-rw-r--r--debian/dirs2
-rw-r--r--debian/files1
-rwxr-xr-xdebian/rules53
6 files changed, 95 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..6434cb7
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,18 @@
+ivybanner (1.0) unstable; urgency=low
+
+ * Initial release.
+ * ivybanner remplace toccata-banner
+ * Toutes les références au projet Toccata sont supprimées
+ * Reconception IHM : le widget Canvas est abandonné au profit de
+ widgets mieux adaptés.
+ * Reconception graphique.
+ * Possibilité de visualiser les logs des demos passées.
+ * Configurable par fichier de conf et/ou options : -nocursor
+ -override -conf configfile -dir fugueconfdir -testdir testsdir
+ * Mise à jour du man.
+
+ -- Daniel Etienne <etienne@cena.fr> Wed, 7 May 2003 16:38:15 +0200
+
+Local variables:
+mode: debian-changelog
+End:
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..14c9ae3
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,13 @@
+Source: ivybanner
+Section: unknown
+Priority: optional
+Maintainer: Daniel Etienne <etienne@cena.fr>
+Standards-Version: 3.2.1
+
+Package: ivybanner
+Architecture: all
+Depends: ivylaunch, perl-tk
+Description: ivybanner, an interface for ivy launcher
+ ivybanner provides an interface for selecting ivy parameters
+ (domain and port number) and selecting the configuration file
+ with the applications to be launched on ivy.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..9133641
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,8 @@
+This package was debianized by Daniel Etienne etienne@cena.fr on
+Wed, 7 May 2003 16:38:15 +0200.
+
+It was downloaded from <fill in ftp site>
+
+Copyright:
+
+GPL
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..ca882bb
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1,2 @@
+usr/bin
+usr/sbin
diff --git a/debian/files b/debian/files
new file mode 100644
index 0000000..295fa03
--- /dev/null
+++ b/debian/files
@@ -0,0 +1 @@
+ivybanner_1.0_all.deb unknown optional
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..38bd099
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,53 @@
+#!/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=ivybanner
+
+build:
+ $(checkdir)
+ 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
+ $(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
+ cd debian/tmp && install -d `cat ../dirs`
+ install -d debian/tmp/usr/share/$(package)
+ install -d debian/tmp/etc
+ install -m755 $(package) debian/tmp/usr/bin/$(package)
+ install -m644 $(package).conf debian/tmp/etc
+ install -m644 *.gif 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
+ pod2man $(package) > $(package).1
+ debstd
+ dpkg-gencontrol
+ chown -R root.root debian/tmp
+ chmod -R go=rX debian/tmp
+ dpkg --build debian/tmp ..
+
+define checkdir
+ test -f debian/rules
+endef
+
+binary: binary-indep binary-arch
+
+checkroot:
+ $(checkdir)
+ test root = "`whoami`"
+
+.PHONY: binary binary-arch binary-indep clean checkroot