--- hot-babe-0.2.2.orig/debian/changelog +++ hot-babe-0.2.2/debian/changelog @@ -0,0 +1,65 @@ +hot-babe (0.2.2-3medibuntu2) feisty; urgency=low + + * Debconf dialog translations update. + * debian/control: bump Standards-Version to 3.7.2, no changes. + + -- The Medibuntu Team Mon, 16 Apr 2007 22:37:11 +0200 + +hot-babe (0.2.2-3medibuntu1+build1) feisty; urgency=low + + * Rebuild against feisty. + + -- The Medibuntu Team Sat, 20 Jan 2007 16:28:07 +0100 + +hot-babe (0.2.2-3medibuntu1) dapper; urgency=low + + [Albin Tonnerre] + + * Change Maintainer. + * Change versionning system as we are no longer PLF. + + [Lionel Le Folgoc] + + * debian/control: + - set debhelper to (>= 5) + - reverse Standards-Version to 3.6.2 + - update description. + * fix debconf issues (remove debian/postrm,preinst and load debconf database + in debian/postinst). + * Add debconf dialog translations. + + -- The Medibuntu Team Fri, 24 Nov 2006 11:12:23 +0100 + +hot-babe (0.2.2-2plf6.10) edgy; urgency=low + + * Updated debconf stuff + * Changed maintainer to Penguin Liberation Front + + -- Albin Tonnerre (Penguin Liberation Front) Thu, 19 Oct 2006 15:31:42 +0200 + +hot-babe (0.2.2-1plf6.10) edgy; urgency=low + + * Rebuild against edgy. + + -- Lionel Le Folgoc (Penguin Liberation Front) Sat, 23 Sep 2006 12:12:09 +0200 + +hot-babe (0.2.2-1plf6.06) dapper; urgency=low + + * Add preinst warning (Closes Malone #59897). + * debian/control: update to match plf-policy. + * debian/rules: add missing dh_desktop rule. + + -- Lionel Le Folgoc (Penguin Liberation Front) Sat, 23 Sep 2006 11:56:42 +0200 + +hot-babe (0.2.2-0plf2) dapper; urgency=low + + * Add missing desktop file. + + -- Maxence DUNNEWIND Wed, 30 Aug 2006 19:38:12 +0200 + +hot-babe (0.2.2-0plf1) dapper; urgency=low + + * Initial release. + + -- Maxence DUNNEWIND Wed, 30 Aug 2006 17:45:58 +0200 + --- hot-babe-0.2.2.orig/debian/rules +++ hot-babe-0.2.2/debian/rules @@ -0,0 +1,91 @@ +#!/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) PREFIX=/usr + #docbook-to-man debian/hot-babe.sgml > hot-babe.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/hot-babe. + $(MAKE) install DESTDIR=$(CURDIR)/debian/hot-babe PREFIX=/usr + #rm debian/hot-babe/usr/share/doc/hot-babe/LICENSE.gz + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_installman + dh_installdebconf + mkdir -p debian/hot-babe/usr/share/applications/ + install -m 644 debian/hot-babe.desktop debian/hot-babe/usr/share/applications + dh_desktop + dh_link + dh_strip + dh_compress + dh_fixperms + rm debian/hot-babe/usr/share/doc/hot-babe/LICENSE.gz + rm debian/hot-babe/usr/share/doc/hot-babe/ChangeLog + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- hot-babe-0.2.2.orig/debian/hot-babe.desktop +++ hot-babe-0.2.2/debian/hot-babe.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +X-MultipleArgs=false +Type=Application +Version=0.2.0 +Encoding=UTF-8 +Name=hot-babe +GenericName=Displays the system activity +Comment=Hot-babe is a small graphical utility which displays the system activity in a very special way +TryExec=hot-babe +Exec=hot-babe +Categories=Application;Utils; +Icon=hot-babe --- hot-babe-0.2.2.orig/debian/postinst +++ hot-babe-0.2.2/debian/postinst @@ -0,0 +1,6 @@ +#!/bin/sh -e + +# Source debconf library. +. /usr/share/debconf/confmodule + +#DEBHELPER# --- hot-babe-0.2.2.orig/debian/copyright +++ hot-babe-0.2.2/debian/copyright @@ -0,0 +1,18 @@ +This package was debianized by Maxence DUNNEWIND on +Wed, 30 Aug 2006 17:45:58 +0200. + +It was downloaded from http://dindinx.net/hotbabe/ + +Copyright 2002-2004 David Odin and Cyprien Laplace + +License: + This program is free software; you can redistribute it and/or modify + it under the terms of the Artistic license. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + On Debian GNU/Linux systems, the complete text of the Artistic License + in `/usr/share/common-licenses/Artistic'. --- hot-babe-0.2.2.orig/debian/compat +++ hot-babe-0.2.2/debian/compat @@ -0,0 +1 @@ +4 --- hot-babe-0.2.2.orig/debian/config +++ hot-babe-0.2.2/debian/config @@ -0,0 +1,72 @@ +#!/bin/sh -e + +. /usr/share/debconf/confmodule +db_version 2.0 +db_capb backup + +license=hot-babe-nudity-warning + +errmsg() +{ + echo >&2 '' + echo >&2 "$@" + echo >&2 "try 'dpkg-reconfigure debconf' to select a frontend other than noninteractive" + echo >&2 '' +} + +db_get shared/accepted-$license +if [ "$RET" = "true" ]; then + echo "$license has already been accepted" >&2 + exit 0 +fi + +# facilitate backup capability per debconf-devel(7) +STATE=1 +while true; do + case "$STATE" in + 0) # ensure going back from license presentment is harmless + STATE=1 + continue + ;; + 1) # present license + db_fset shared/present-$license seen false + if ! db_input critical shared/present-$license ; then + errmsg "$license could not be presented" + exit 2 + fi + db_fset shared/accepted-$license seen false + if ! db_input critical shared/accepted-$license ; then + errmsg "$license agree question could not be asked" + exit 2 + fi + ;; + 2) # determine users' choice + db_get shared/accepted-$license + if [ "$RET" = "true" ]; then + # license accepted + exit 0 + fi + # error on decline license (give user chance to back up) + db_input critical shared/error-$license + ;; + 3) # user has confirmed declining license + echo "user did not accept the $license" >&2 + exit 1 + ;; + *) # unknown state + echo "$license state unknown: $STATE" >&2 + exit 2 + ;; + esac + if db_go; then + STATE=$(($STATE + 1)) + else + STATE=$(($STATE - 1)) + fi +done + + + +# proper exit (0 or 1) above +errmsg "$license could not be presented / was not accepted" +exit 2 --- hot-babe-0.2.2.orig/debian/docs +++ hot-babe-0.2.2/debian/docs @@ -0,0 +1,3 @@ +NEWS +TODO +ChangeLog --- hot-babe-0.2.2.orig/debian/control +++ hot-babe-0.2.2/debian/control @@ -0,0 +1,21 @@ +Source: hot-babe +Section: utils +Priority: optional +Maintainer: The Medibuntu Team +Build-Depends: debhelper (>= 5), libgtk2.0-dev, po-debconf +Standards-Version: 3.7.2 + +Package: hot-babe +Architecture: any +Pre-Depends: debconf (>= 0.5) | debconf-2.0 +Depends: ${shlibs:Depends} +Description: A GTK-based monitoring app + Hot-babe is a small graphical utility which display the system activity + in a very special way. When the CPU is idle, it displays a dressed girl, + and when the activity goes up, as the temperature increases, the girl + begins to undress, to finish totally naked when the system activity + reaches 100%. Of course, if you can be shocked by nudity, don't use it! + . + Homepage: http://dindinx.net/hotbabe + . + This package is in Medibuntu because of its explicit content. --- hot-babe-0.2.2.orig/debian/templates +++ hot-babe-0.2.2/debian/templates @@ -0,0 +1,19 @@ +Template: shared/present-hot-babe-nudity-warning +Type: note +_Description: Warning + This package contains explicit content. + . + Therefore, if you can be shocked by nudity, answer 'No' at the + next question and installation will be aborted. + . + +Template: shared/accepted-hot-babe-nudity-warning +Type: boolean +Default: false +_Description: Do you still want to proceed with the installation? + Not accepting will cancel the installation. + +Template: shared/error-hot-babe-nudity-warning +Type: error +_Description: Declined installation after reading the warning + The installation of this package will be canceled. --- hot-babe-0.2.2.orig/debian/po/fr.po +++ hot-babe-0.2.2/debian/po/fr.po @@ -0,0 +1,64 @@ +# French translation for medibuntu +# Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 +# This file is distributed under the same license as the medibuntu package. +# FIRST AUTHOR , 2007. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: medibuntu\n" +"Report-Msgid-Bugs-To: medibuntu@sos-sts.com\n" +"POT-Creation-Date: 2007-04-16 22:44+0200\n" +"PO-Revision-Date: 2007-03-22 18:30+0000\n" +"Last-Translator: Lionel Le Folgoc \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Rosetta-Export-Date: 2007-03-22 18:48+0000\n" + +#. Type: note +#. Description +#: ../templates:1001 +msgid "Warning" +msgstr "Avertissement" + +#. Type: note +#. Description +#: ../templates:1001 +msgid "This package contains explicit content." +msgstr "Ce paquet contient du contenu explicite." + +#. Type: note +#. Description +#: ../templates:1001 +msgid "" +"Therefore, if you can be shocked by nudity, answer 'No' at the next question " +"and installation will be aborted." +msgstr "" +"Par conséquent, si vous êtes susceptible d'être choqué par de la nudité, " +"répondez 'No' à la question suivante et l'installation sera interrompue." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Do you still want to proceed with the installation?" +msgstr "Souhaitez-vous toujours procéder à l'installation ?" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Not accepting will cancel the installation." +msgstr "Un refus entraînera l'annulation de l'installation." + +#. Type: error +#. Description +#: ../templates:3001 +msgid "Declined installation after reading the warning" +msgstr "Installation déclinée après lecture de l'avertissement" + +#. Type: error +#. Description +#: ../templates:3001 +msgid "The installation of this package will be canceled." +msgstr "L'installation de ce paquet va être annulée." --- hot-babe-0.2.2.orig/debian/po/templates.pot +++ hot-babe-0.2.2/debian/po/templates.pot @@ -0,0 +1,61 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: medibuntu@sos-sts.com\n" +"POT-Creation-Date: 2007-04-16 22:44+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: note +#. Description +#: ../templates:1001 +msgid "Warning" +msgstr "" + +#. Type: note +#. Description +#: ../templates:1001 +msgid "This package contains explicit content." +msgstr "" + +#. Type: note +#. Description +#: ../templates:1001 +msgid "" +"Therefore, if you can be shocked by nudity, answer 'No' at the next question " +"and installation will be aborted." +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Do you still want to proceed with the installation?" +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Not accepting will cancel the installation." +msgstr "" + +#. Type: error +#. Description +#: ../templates:3001 +msgid "Declined installation after reading the warning" +msgstr "" + +#. Type: error +#. Description +#: ../templates:3001 +msgid "The installation of this package will be canceled." +msgstr "" --- hot-babe-0.2.2.orig/debian/po/en_AU.po +++ hot-babe-0.2.2/debian/po/en_AU.po @@ -0,0 +1,64 @@ +# English (Australia) translation for medibuntu +# Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 +# This file is distributed under the same license as the medibuntu package. +# FIRST AUTHOR , 2007. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: medibuntu\n" +"Report-Msgid-Bugs-To: medibuntu@sos-sts.com\n" +"POT-Creation-Date: 2007-04-16 22:44+0200\n" +"PO-Revision-Date: 2007-04-15 05:38+0000\n" +"Last-Translator: harrisony \n" +"Language-Team: English (Australia) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Rosetta-Export-Date: 2007-04-16 20:28:11+0000\n" + +#. Type: note +#. Description +#: ../templates:1001 +msgid "Warning" +msgstr "Warning" + +#. Type: note +#. Description +#: ../templates:1001 +msgid "This package contains explicit content." +msgstr "This package contains explicit content." + +#. Type: note +#. Description +#: ../templates:1001 +msgid "" +"Therefore, if you can be shocked by nudity, answer 'No' at the next question " +"and installation will be aborted." +msgstr "" +"Therefore, if you can be shocked by nudity, answer 'No' at the next question " +"and installation will be aborted." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Do you still want to proceed with the installation?" +msgstr "Do you still want to proceed with the installation?" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Not accepting will cancel the installation." +msgstr "Not accepting will cancel the installation." + +#. Type: error +#. Description +#: ../templates:3001 +msgid "Declined installation after reading the warning" +msgstr "Declined installation after reading the warning" + +#. Type: error +#. Description +#: ../templates:3001 +msgid "The installation of this package will be canceled." +msgstr "The installation of this package will be cancelled." --- hot-babe-0.2.2.orig/debian/po/POTFILES.in +++ hot-babe-0.2.2/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] templates --- hot-babe-0.2.2.orig/debian/po/en_GB.po +++ hot-babe-0.2.2/debian/po/en_GB.po @@ -0,0 +1,64 @@ +# English (United Kingdom) translation for medibuntu +# Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 +# This file is distributed under the same license as the medibuntu package. +# FIRST AUTHOR , 2007. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: medibuntu\n" +"Report-Msgid-Bugs-To: medibuntu@sos-sts.com\n" +"POT-Creation-Date: 2007-04-16 22:44+0200\n" +"PO-Revision-Date: 2007-04-15 06:04+0000\n" +"Last-Translator: harrisony \n" +"Language-Team: English (United Kingdom) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Rosetta-Export-Date: 2007-04-16 20:28:11+0000\n" + +#. Type: note +#. Description +#: ../templates:1001 +msgid "Warning" +msgstr "Warning" + +#. Type: note +#. Description +#: ../templates:1001 +msgid "This package contains explicit content." +msgstr "This package contains explicit content." + +#. Type: note +#. Description +#: ../templates:1001 +msgid "" +"Therefore, if you can be shocked by nudity, answer 'No' at the next question " +"and installation will be aborted." +msgstr "" +"Therefore, if you are shocked by nudity, answer 'No' at the next question " +"and installation will be aborted." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Do you still want to proceed with the installation?" +msgstr "Do you still want to proceed with the installation?" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Not accepting will cancel the installation." +msgstr "Not accepting will cancel the installation." + +#. Type: error +#. Description +#: ../templates:3001 +msgid "Declined installation after reading the warning" +msgstr "Declined installation after reading the warning" + +#. Type: error +#. Description +#: ../templates:3001 +msgid "The installation of this package will be canceled." +msgstr "The installation of this package will be cancelled." --- hot-babe-0.2.2.orig/debian/po/it.po +++ hot-babe-0.2.2/debian/po/it.po @@ -0,0 +1,65 @@ +# Italian translation for medibuntu +# Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 +# This file is distributed under the same license as the medibuntu package. +# FIRST AUTHOR , 2007. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: medibuntu\n" +"Report-Msgid-Bugs-To: medibuntu@sos-sts.com\n" +"POT-Creation-Date: 2007-04-16 22:44+0200\n" +"PO-Revision-Date: 2007-04-14 08:47+0000\n" +"Last-Translator: Matteo Piotto \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Rosetta-Export-Date: 2007-04-15 05:18:08+0000\n" + +#. Type: note +#. Description +#: ../templates:1001 +msgid "Warning" +msgstr "Attenzione" + +#. Type: note +#. Description +#: ../templates:1001 +msgid "This package contains explicit content." +msgstr "Questo pacchetto contiene materiale con contenuto esplicito" + +#. Type: note +#. Description +#: ../templates:1001 +msgid "" +"Therefore, if you can be shocked by nudity, answer 'No' at the next question " +"and installation will be aborted." +msgstr "" +"Prima di tutto, se puoi essere turbato da scene di nudo, rispondi 'No' alla " +"prossima domanda e l'installazione sarà annullata" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Do you still want to proceed with the installation?" +msgstr "Sei sicuro di continuare l'installazione?" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Not accepting will cancel the installation." +msgstr "Non accettare annullerà l'installazione" + +#. Type: error +#. Description +#: ../templates:3001 +msgid "Declined installation after reading the warning" +msgstr "" +"Installazione annullata in seguito alla lettura del messaggio di attenzione" + +#. Type: error +#. Description +#: ../templates:3001 +msgid "The installation of this package will be canceled." +msgstr "L'installazione di questo pacchetto sarà annullata" --- hot-babe-0.2.2.orig/debian/po/tr.po +++ hot-babe-0.2.2/debian/po/tr.po @@ -0,0 +1,64 @@ +# Turkish translation for medibuntu +# Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 +# This file is distributed under the same license as the medibuntu package. +# FIRST AUTHOR , 2007. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: medibuntu\n" +"Report-Msgid-Bugs-To: medibuntu@sos-sts.com\n" +"POT-Creation-Date: 2007-04-16 22:44+0200\n" +"PO-Revision-Date: 2007-04-09 22:08+0000\n" +"Last-Translator: Tutku Dalmaz \n" +"Language-Team: Turkish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Rosetta-Export-Date: 2007-04-15 05:18:08+0000\n" + +#. Type: note +#. Description +#: ../templates:1001 +msgid "Warning" +msgstr "Uyarı" + +#. Type: note +#. Description +#: ../templates:1001 +msgid "This package contains explicit content." +msgstr "Bu paket belirgin içeriğe sahiptir." + +#. Type: note +#. Description +#: ../templates:1001 +msgid "" +"Therefore, if you can be shocked by nudity, answer 'No' at the next question " +"and installation will be aborted." +msgstr "" +"Bundan dolayı, eğer çıplaklık yüzünden şok olacaksanız, gelecek soruya " +"\"Hayır\" olarak cevap verin ve kurulum sonlandırılsın." + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Do you still want to proceed with the installation?" +msgstr "Hala kuruluma geçmek istiyor musunuz?" + +#. Type: boolean +#. Description +#: ../templates:2001 +msgid "Not accepting will cancel the installation." +msgstr "Kabul etmemek kurulumu iptal edecektir." + +#. Type: error +#. Description +#: ../templates:3001 +msgid "Declined installation after reading the warning" +msgstr "Uyarı okunduktan sonra kurulum reddedildi" + +#. Type: error +#. Description +#: ../templates:3001 +msgid "The installation of this package will be canceled." +msgstr "Paketin kurulumu iptal edilecek."