diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-13 00:16:11 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-13 00:16:11 +0000 |
| commit | d676c11881a1df413a6b204e101a378125534920 (patch) | |
| tree | a375629261d32d91cd6be04b795e894629483686 /debian | |
| parent | 1801e11a8181a800548ca178813267a56b9c270a (diff) | |
changes to build..
Diffstat (limited to 'debian')
| -rw-r--r-- | debian/menu (renamed from debian/menu.ex) | 0 | ||||
| -rw-r--r-- | debian/openbox-default.ex | 10 | ||||
| -rw-r--r-- | debian/openbox.doc-base.EX | 22 | ||||
| -rw-r--r-- | debian/postinst (renamed from debian/postinst.ex) | 0 | ||||
| -rw-r--r-- | debian/postrm (renamed from debian/postrm.ex) | 0 | ||||
| -rw-r--r-- | debian/preinst.ex | 37 | ||||
| -rw-r--r-- | debian/prerm.ex | 40 | ||||
| -rwxr-xr-x | debian/rules | 10 | ||||
| -rw-r--r-- | debian/watch.ex | 22 |
9 files changed, 5 insertions, 136 deletions
diff --git a/debian/menu.ex b/debian/menu index 97d2d14c..97d2d14c 100644 --- a/debian/menu.ex +++ b/debian/menu diff --git a/debian/openbox-default.ex b/debian/openbox-default.ex deleted file mode 100644 index 7395c1a2..00000000 --- a/debian/openbox-default.ex +++ /dev/null @@ -1,10 +0,0 @@ -# Defaults for openbox initscript -# sourced by /etc/init.d/openbox -# installed at /etc/default/openbox by the maintainer scripts - -# -# This is a POSIX shell fragment -# - -# Additional options that are passed to the Daemon. -DAEMON_OPTS="" diff --git a/debian/openbox.doc-base.EX b/debian/openbox.doc-base.EX deleted file mode 100644 index e3e0931e..00000000 --- a/debian/openbox.doc-base.EX +++ /dev/null @@ -1,22 +0,0 @@ -Document: openbox -Title: Debian openbox Manual -Author: <insert document author here> -Abstract: This manual describes what openbox is - and how it can be used to - manage online manuals on Debian systems. -Section: unknown - -Format: debiandoc-sgml -Files: /usr/share/doc/openbox/openbox.sgml.gz - -Format: postscript -Files: /usr/share/doc/openbox/openbox.ps.gz - -Format: text -Files: /usr/share/doc/openbox/openbox.text.gz - -Format: HTML -Index: /usr/share/doc/openbox/html/index.html -Files: /usr/share/doc/openbox/html/*.html - - diff --git a/debian/postinst.ex b/debian/postinst index aa690370..aa690370 100644 --- a/debian/postinst.ex +++ b/debian/postinst diff --git a/debian/postrm.ex b/debian/postrm index 641c6b92..641c6b92 100644 --- a/debian/postrm.ex +++ b/debian/postrm diff --git a/debian/preinst.ex b/debian/preinst.ex deleted file mode 100644 index 95364624..00000000 --- a/debian/preinst.ex +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh -# preinst script for openbox -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * <new-preinst> `install' -# * <new-preinst> `install' <old-version> -# * <new-preinst> `upgrade' <old-version> -# * <old-preinst> `abort-upgrade' <new-version> -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - - -case "$1" in - install|upgrade) - ;; - - abort-upgrade) - ;; - - *) - echo "preinst 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.ex b/debian/prerm.ex deleted file mode 100644 index 11877266..00000000 --- a/debian/prerm.ex +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh -# prerm script for openbox -# -# 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 index 0d63b650..dea855b2 100755 --- a/debian/rules +++ b/debian/rules @@ -16,7 +16,7 @@ DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) -CFLAGS = -Wall -g +CFLAGS = -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 @@ -77,10 +77,10 @@ binary-arch: build install dh_testdir dh_testroot dh_installchangelogs CHANGELOG - dh_installdocs - dh_installexamples +# dh_installdocs +# dh_installexamples # dh_install -# dh_installmenu + dh_installmenu # dh_installdebconf # dh_installlogrotate # dh_installemacsen @@ -90,7 +90,7 @@ binary-arch: build install # dh_installinit # dh_installcron # dh_installinfo - dh_installman +# dh_installman dh_link dh_strip dh_compress diff --git a/debian/watch.ex b/debian/watch.ex deleted file mode 100644 index 9934d647..00000000 --- a/debian/watch.ex +++ /dev/null @@ -1,22 +0,0 @@ -# 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. -# See uscan(1) for format - -# Compulsory line, this is a version 3 file -version=3 - -# Uncomment to examine a Webpage -# <Webpage URL> <string match> -#http://www.example.com/downloads.php openbox-(.*)\.tar\.gz - -# Uncomment to examine a Webserver directory -#http://www.example.com/pub/openbox-(.*)\.tar\.gz - -# Uncommment to examine a FTP server -#ftp://ftp.example.com/pub/openbox-(.*)\.tar\.gz debian uupdate - -# Uncomment to find new files on sourceforge, for debscripts >= 2.9 -# http://sf.net/openbox/openbox-(.*)\.tar\.gz - - |
