r1831: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 28 Apr 2002 15:04:49 +0000 (15:04 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 28 Apr 2002 15:04:49 +0000 (15:04 +0000)
debian/README.Debian [new file with mode: 0644]
debian/changelog [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/ctsim.doc-base [new file with mode: 0644]
debian/docs [new file with mode: 0644]
debian/postinst [new file with mode: 0644]
debian/prerm [new file with mode: 0644]
debian/rules [new file with mode: 0755]
debian/watch [new file with mode: 0644]

diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644 (file)
index 0000000..c16ec56
--- /dev/null
@@ -0,0 +1,6 @@
+This is the CTSim system packaged for Debian.
+
+Anonymous CVS for this code is available at:
+:pserver:anoncvs@cvs.ctsim.org:/pubcvs ctsim
+
+Kevin Rosenberg <kevin@rosenberg.net>, Thu, 25 Apr 2002 19:13:41 -0600
diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..721a3fd
--- /dev/null
@@ -0,0 +1,6 @@
+ctsim (3.5.0-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Kevin Rosenberg <kevin@rosenberg.net>  Thu, 25 Apr 2002 19:13:41 -0600
+
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..ec462e1
--- /dev/null
@@ -0,0 +1,12 @@
+Source: ctsim
+Section: devel
+Priority: optional
+Maintainer: Kevin Rosenberg <kevin@rosenberg.net>
+Build-Depends-Indep: wxwin2.2-headers, fftw-dev
+Standards-Version: 3.5.2
+
+Package: ctsim
+Architecture: all
+Depends: fftw2, wxwin2.2       
+Description: Computed Tomograpy Simulator
+ CTSim provides an interactive computed tomography simulator.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644 (file)
index 0000000..8a9afbd
--- /dev/null
@@ -0,0 +1,9 @@
+The home site for CTSim is http://www.ctsim.org. The package
+may be downloaded from that site.
+
+CTSim has been packaged by Kevin M. Rosenberg who is also the
+upstream author.
+
+Copyright:
+
+CTSim is governed by the GNU GPL License.
diff --git a/debian/ctsim.doc-base b/debian/ctsim.doc-base
new file mode 100644 (file)
index 0000000..802117b
--- /dev/null
@@ -0,0 +1,15 @@
+Document: ctsim
+Title: CTSim
+Author: Kevin M. Rosenberg
+Abstract: Describes the
+ use the CTSim Computed Tomography Simulator
+Section: math
+
+Format: postscript
+Files: /usr/share/doc/ctsim/ctsim.ps.gz
+
+Format: HTML
+Index: /usr/share/doc/ctsim/html/index.html
+Files: /usr/share/doc/ctsim/html/*.html
+
+  
diff --git a/debian/docs b/debian/docs
new file mode 100644 (file)
index 0000000..5502ed8
--- /dev/null
@@ -0,0 +1,3 @@
+NEWS
+README
+TODO
diff --git a/debian/postinst b/debian/postinst
new file mode 100644 (file)
index 0000000..a3c0b07
--- /dev/null
@@ -0,0 +1,47 @@
+#! /bin/sh
+# postinst script for uffi
+#
+# see: dh_installdeb(1)
+
+set -e
+
+# summary of how this script can be called:
+#        * <postinst> `configure' <most-recently-configured-version>
+#        * <old-postinst> `abort-upgrade' <new version>
+#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
+#          <new-version>
+#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
+#          <failed-install-package> <version> `removing'
+#          <conflicting-package> <version>
+# for details, see http://www.debian.org/doc/debian-policy/ or
+# the debian-policy package
+#
+# quoting from the policy:
+#     Any necessary prompting should almost always be confined to the
+#     post-installation script, and should be protected with a conditional
+#     so that unnecessary prompting doesn't happen if a package's
+#     installation fails and the `postinst' is called with `abort-upgrade',
+#     `abort-remove' or `abort-deconfigure'.
+
+case "$1" in
+    configure)
+    ;;
+
+    abort-upgrade|abort-remove|abort-deconfigure)
+
+    ;;
+
+    *)
+        echo "postinst called with unknown argument \`$1'" >&2
+        exit 1
+    ;;
+esac
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0
+
+
diff --git a/debian/prerm b/debian/prerm
new file mode 100644 (file)
index 0000000..65b7160
--- /dev/null
@@ -0,0 +1,38 @@
+#! /bin/sh
+# prerm script for uffi
+#
+# see: dh_installdeb(1)
+
+set -e
+
+# summary of how this script can be called:
+#        * <prerm> `remove'
+#        * <old-prerm> `upgrade' <new-version>
+#        * <new-prerm> `failed-upgrade' <old-version>
+#        * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
+#        * <deconfigured's-prerm> `deconfigure' `in-favour'
+#          <package-being-installed> <version> `removing'
+#          <conflicting-package> <version>
+# for details, see http://www.debian.org/doc/debian-policy/ or
+# the debian-policy package
+
+
+case "$1" in
+    remove|upgrade|deconfigure)
+        ;;
+    failed-upgrade)
+        ;;
+    *)
+        echo "prerm called with unknown argument \`$1'" >&2
+        exit 1
+    ;;
+esac
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0
+
+
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..79fd212
--- /dev/null
@@ -0,0 +1,99 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+export DH_VERBOSE=1
+
+# This is the debhelper compatibility version to use.
+export DH_COMPAT=3
+
+pkg    := ctsim
+prefix := debian/$(pkg)
+
+INSTALL        := install
+INSTALLFLAGS   := -g root -o root -m 0644
+INSTALLDIRFLAGS        := -d -g root -o root -m 0755
+
+SOURCEDIR      := $(prefix)/usr/share/common-lisp/source
+REPOSITORYDIR  := $(prefix)/usr/share/common-lisp/repositories/uffi
+SYSDIR         := $(prefix)/usr/share/common-lisp/systems
+DOCDIR         := $(prefix)/usr/share/doc/cl-uffi
+
+
+configure: configure-stamp
+configure-stamp:
+       dh_testdir
+       # Add here commands to configure the package.
+
+       touch configure-stamp
+
+
+build: build-stamp
+
+build-stamp: configure-stamp 
+       dh_testdir
+
+       # Add here commands to compile the package.
+       $(MAKE) doc
+       #/usr/bin/docbook-to-man debian/uffi.sgml > uffi.1
+
+       touch build-stamp
+
+clean:
+       dh_testdir
+       dh_testroot
+       rm -f build-stamp configure-stamp
+
+       # Add here commands to clean up after the build process.
+       -$(MAKE) clean
+       rm -f debian/cl-uffi.postinst.* debian/cl-uffi.prerm.*
+
+       dh_clean
+
+install: build
+       dh_testdir
+       dh_testroot
+       dh_clean -k
+       dh_installdirs
+
+       # Add here commands to install the package into debian/ctsim.
+
+# Build architecture-independent files here.
+binary-indep: build install
+
+
+
+# Build architecture-dependent files here.
+binary-arch: build install
+       dh_testdir
+       dh_testroot
+#      dh_installdebconf       
+       dh_installdocs
+       dh_installexamples examples/*.cl
+#      dh_installmenu
+#      dh_installlogrotate
+#      dh_installemacsen
+#      dh_installpam
+#      dh_installmime
+#      dh_installinit
+#      dh_installcron
+#      dh_installman
+#      dh_installinfo
+#      dh_undocumented
+       dh_installchangelogs ChangeLog
+       dh_link
+       dh_strip
+       dh_compress
+       dh_fixperms
+#      dh_makeshlibs
+       dh_installdeb
+#      dh_perl
+#      dh_shlibdeps
+       dh_gencontrol
+       dh_md5sums
+       dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
+
diff --git a/debian/watch b/debian/watch
new file mode 100644 (file)
index 0000000..89333ab
--- /dev/null
@@ -0,0 +1,5 @@
+# Example watch control file for uscan
+# Rename this file to "watch" and then you can run the "uscan" command
+# to check for upstream updates and more.
+# Site         Directory               Pattern                 Version Script
+ftp.ctsim.org  /pub/ctsim      ctsim-(.*)\.tar\.gz     debian  uupdate