--- bum-2.1.1.orig/debian/changelog +++ bum-2.1.1/debian/changelog @@ -0,0 +1,82 @@ +bum (2.1.1-1~breezy1) breezy-backports; urgency=low + + * Automated backport upload; no source changes. + + -- Ubuntu Archive Auto-Backport Fri, 18 Nov 2005 17:14:16 +0000 + +bum (2.1.1-1) unstable; urgency=low + + * New upstream version + - Dropped sys/ioctl.ph requirement (implicit) + - fixed minor bugs on PPC + - Added hebrew translation + + -- Fabio Marzocca Wed, 2 Nov 2005 10:22:32 +0200 + + +bum (2.1.0-1) unstable; urgency=low + + * Closes:#336109 + * New upstream version + - Added full sort capability over every column in any view + + -- Fabio Marzocca Fri, 27 Oct 2005 10:22:32 +0200 + + +bum (2.0.0-1) unstable; urgency=low + + * New upstream version + - Full code & GUI re-styling + - Introduced new Advanced mode to distinguish normal user from expert + + -- Fabio Marzocca Tue, 25 Oct 2005 10:22:32 +0200 + +bum (1.3.4-2) unstable; urgency=low + + * Fixed dependencies in debian/control + + -- Fabio Marzocca Thu, 29 Sep 2005 10:22:32 +0200 + + +bum (1.3.4-1) unstable; urgency=low + + * New upstream version + - using Gtk2::AboutDialog so removing need for lib Gnome2 + + -- Fabio Marzocca Tue, 27 Sep 2005 12:22:32 +0200 + +bum (1.3.3-1) unstable; urgency=low + + * Closes bugs: (Closes:#321266, Closes:#324364) + * Added polish translation + + -- Fabio Marzocca Mon, 5 Sep 2005 12:22:32 +0200 + +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-2.1.1.orig/debian/compat +++ bum-2.1.1/debian/compat @@ -0,0 +1 @@ +4 --- bum-2.1.1.orig/debian/control +++ bum-2.1.1/debian/control @@ -0,0 +1,18 @@ +Source:bum +Section: admin +Priority: optional +Build-Depends: debhelper (>= 4.0.0), libxml-parser-perl, libgtk2-perl (>=1.100-1) +Standards-Version: 3.6.2 +Maintainer: Fabio Marzocca + +Package: bum +Architecture: all +Depends: gksu, sysv-rc, perl, libgtk2-perl (>=1.100-1), libglib-perl (>= 1.100-1), liblocale-gettext-perl, libgtk2-gladexml-perl +Provides: sysv-rc-conf +Conflicts: file-rc +Description: graphical runlevel editor + 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. + Homepage: http://www.marzocca.net/linux/bum.html + --- bum-2.1.1.orig/debian/menu +++ bum-2.1.1/debian/menu @@ -0,0 +1,4 @@ +?package(bum):needs="X11" section="Apps/System"\ + title="Boot-Up Manager" \ + icon="/usr/share/pixmaps/bum.xpm"\ + command="/usr/sbin/su-to-root -X -c /usr/bin/bum" --- bum-2.1.1.orig/debian/README.Debian +++ bum-2.1.1/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-2.1.1.orig/debian/rules +++ bum-2.1.1/debian/rules @@ -0,0 +1,82 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +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 + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + CFLAGS="$(CFLAGS)" \ + ./configure \ + --host=$(DEB_HOST_GNU_TYPE) \ + --build=$(DEB_BUILD_GNU_TYPE) \ + --prefix=/usr \ + --mandir=\$${prefix}/share/man \ + --infodir=\$${prefix}/share/info + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + -$(MAKE) clean + rm -f config.log config.status + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(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_installmenu + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_perl + 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-2.1.1.orig/debian/copyright +++ bum-2.1.1/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 (2005) : 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.