--- bum-1.3.2.orig/debian/changelog +++ bum-1.3.2/debian/changelog @@ -0,0 +1,28 @@ +bum (1.3.2-1) unstable; urgency=low + + * Minor bugs removed + * More strict on sysv-rc standards + * Removed editing capabilities from runlevel S + + -- Fabio Marzocca Thu, 18 Jul 2005 12:22:32 +0200 + +bum (1.3.1-1) unstable; urgency=low + + * Full compliance with sysv rules + + -- Fabio Marzocca Wed, 13 Jul 2005 14:55:01 +0200 + +bum (1.3.0-1) unstable; urgency=low + + * Introduced new friendly descriptions for init scripts + * Visual feedback for running services + * Removed useless functions + * Fixed bug on rcS.d + + -- Fabio Marzocca Fri, 10 Jun 2005 15:04:06 +0200 + +bum (1.2.7-1) unstable; urgency=low + + * Bug on localization removed. + + -- Fabio Marzocca Tue, 7 Jun 2005 23:10:56 +0200 --- bum-1.3.2.orig/debian/compat +++ bum-1.3.2/debian/compat @@ -0,0 +1 @@ +4 --- bum-1.3.2.orig/debian/control +++ bum-1.3.2/debian/control @@ -0,0 +1,16 @@ +Source:bum +Section: admin +Priority: optional +Build-Depends: debhelper (>= 4.0.0) +Standards-Version: 3.6.1 +Maintainer: Fabio Marzocca + +Package: bum +Architecture: all +Depends: sysv-rc, perl, libgtk2-perl, libgnome2-perl, libglib-perl, liblocale-gettext-perl +Conflicts: file-rc, ubm +Replaces: ubm +Description: tool to manage bootup scripts + Boot-Up Manager is a graphical tool to allow easy configuration + of init services in user and system runlevels, as far as changing + Start/Stop services priority. --- bum-1.3.2.orig/debian/menu +++ bum-1.3.2/debian/menu @@ -0,0 +1,4 @@ +?package(bum):needs="X11" section="Apps/System"\ + title="Boot-Up Manager" \ + icon="/usr/share/pixmaps/bum/bum.xpm"\ + command="/usr/sbin/su-to-root -X -c /usr/bin/bum" --- bum-1.3.2.orig/debian/postinst +++ bum-1.3.2/debian/postinst @@ -0,0 +1,41 @@ +#! /bin/sh +# postinst script for bum +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package +# + +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 + --- bum-1.3.2.orig/debian/postrm +++ bum-1.3.2/debian/postrm @@ -0,0 +1,38 @@ +#! /bin/sh +# postrm script for bum +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `purge' +# * `upgrade' +# * `failed-upgrade' +# * `abort-install' +# * `abort-install' +# * `abort-upgrade' +# * `disappear' overwrit>r> +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + + + ;; + + *) + echo "postrm 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 --- bum-1.3.2.orig/debian/README.Debian +++ bum-1.3.2/debian/README.Debian @@ -0,0 +1,5 @@ +You can find more documentation about bum on +http://www.marzocca.net/linux/bumdocs.html + + + -- Fabio Marzocca , Sat, 4 Jun 2005 18:38:02 +0200 --- bum-1.3.2.orig/debian/rules +++ bum-1.3.2/debian/rules @@ -0,0 +1,99 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +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) + #docbook-to-man debian/bum.sgml > bum.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 + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/bum. + $(MAKE) install DESTDIR=$(CURDIR)/debian/bum + + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples +# dh_install + dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_perl +# dh_python +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do by default. + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- bum-1.3.2.orig/debian/copyright +++ bum-1.3.2/debian/copyright @@ -0,0 +1,13 @@ +This package was debianized by Fabio Marzocca + +It was downloaded from http://www.marzocca.net/linux/bum.html + +Copyright Holder: Fabio Marzocca + +License: + +This program is free software; you can redistribute it +and or modify it under the terms of the GNU General Public +License as published by the Free Software Foundation; +either version 2 of the License, or (at your option) +any later version.