From abdbf7ef1668198068d10a43af20ced90a6f7abd Mon Sep 17 00:00:00 2001 From: etienne Date: Wed, 7 May 2003 15:02:33 +0000 Subject: *** empty log message *** --- debian/changelog | 18 ++++++++++++++++++ debian/control | 13 +++++++++++++ debian/copyright | 8 ++++++++ debian/dirs | 2 ++ debian/files | 1 + debian/rules | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 95 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/dirs create mode 100644 debian/files create mode 100755 debian/rules (limited to 'debian') 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 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 +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 + +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 -- cgit v1.1