--- libgtk2-ex-volumebutton-perl-0.07.orig/debian/compat +++ libgtk2-ex-volumebutton-perl-0.07/debian/compat @@ -0,0 +1 @@ +4 --- libgtk2-ex-volumebutton-perl-0.07.orig/debian/changelog +++ libgtk2-ex-volumebutton-perl-0.07/debian/changelog @@ -0,0 +1,19 @@ +libgtk2-ex-volumebutton-perl (0.07-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix FTBFS with Perl 5.10. Closes: #468029. + + -- Mark Hymers Sat, 05 Apr 2008 14:36:54 +0100 + +libgtk2-ex-volumebutton-perl (0.07-1) unstable; urgency=low + + * New upstream release. + + -- Florian Ragwitz Sat, 18 Dec 2004 22:00:59 +0100 + +libgtk2-ex-volumebutton-perl (0.05-1) unstable; urgency=low + + * Initial Release. + + -- Florian Ragwitz Tue, 14 Sep 2004 20:00:24 +0200 + --- libgtk2-ex-volumebutton-perl-0.07.orig/debian/copyright +++ libgtk2-ex-volumebutton-perl-0.07/debian/copyright @@ -0,0 +1,27 @@ +This package was debianized by Florian Ragwitz on +Tue, 14 Sep 2004 20:00:24 +0200. + +It was downloaded from http://search.cpan.org/~flora/Gtk2-Ex-VolumeButton/ + +Upstream Author: Florian Ragwitz + +Copyright: + + Copyright (C) 2004 by Florian Ragwitz + + 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. + + 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 Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. --- libgtk2-ex-volumebutton-perl-0.07.orig/debian/control +++ libgtk2-ex-volumebutton-perl-0.07/debian/control @@ -0,0 +1,23 @@ +Source: libgtk2-ex-volumebutton-perl +Section: perl +Priority: optional +Maintainer: Florian Ragwitz +Build-Depends: debhelper (>= 4.0.0) +Build-Depends-Indep: perl, libglib-perl, libgtk2-perl +Standards-Version: 3.6.1 + +Package: libgtk2-ex-volumebutton-perl +Architecture: all +Depends: ${perl:Depends}, libglib-perl, libgtk2-perl +Description: Gtk2 widget to control volume and similar values + Gtk2::Ex::VolumeButton is a simple Gtk2 widget based on + Gtk2::ToggleButton to control the volume and similar values. It + consists of a Gtk2::ToggleButton widget displaying an image + representing the current volume. When the button is clicked a popup + window containing a Gtk2::VScale widget shows up and allows you to + change the widgets volume value. It's also possible to change the + volume using the scroll wheel over the toggle button even if the popup + window isn't shown. + . + This widget is modeled after the widgets use in gnome-panel, muine and + rhythmbox. Much code is stolen from the muine volume-button widget. --- libgtk2-ex-volumebutton-perl-0.07.orig/debian/rules +++ libgtk2-ex-volumebutton-perl-0.07/debian/rules @@ -0,0 +1,69 @@ +#!/usr/bin/make -f + +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + -$(MAKE) distclean + dh_clean build-stamp install-stamp + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + + $(MAKE) test + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + + #As this is a architecture independent package, we are not supposed to install + #stuff to /usr/lib. MakeMaker creates the dirs, we delete them from the deb: + [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5 + + touch install-stamp + +binary-arch: +# We have nothing to do by default. + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs README +# dh_installexamples + dh_perl + dh_installchangelogs Changes + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary