--- acpitail-0.1.orig/debian/rules +++ acpitail-0.1/debian/rules @@ -0,0 +1,49 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + dh_testdir + + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + $(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs usr/bin + + install -m755 -p acpitail $(CURDIR)/debian/acpitail/usr/bin/ + +binary-indep: build install +# We have nothing to do by default. + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_install + dh_installman debian/acpitail.1 + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- acpitail-0.1.orig/debian/control +++ acpitail-0.1/debian/control @@ -0,0 +1,18 @@ +Source: acpitail +Section: utils +Priority: optional +Maintainer: Debian Acpi Team +Uploaders: Tobias Klauser +Build-Depends: debhelper (>= 7), libacpi-dev +Standards-Version: 3.8.3 +Homepage: http://www.vanheusden.com/acpitail/ +Vcs-Git: git://git.debian.org/git/pkg-acpi/acpitail.git +Vcs-Browser: http://git.debian.org/?p=pkg-acpi/acpitail.git + +Package: acpitail +Architecture: i386 amd64 ia64 +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Show ACPI information in a tail-like style + acpitail shows ACPI status information about battery, fan and + temperature in a tail-like way. As soon as a value changes, the new + value gets appended to the current output. --- acpitail-0.1.orig/debian/copyright +++ acpitail-0.1/debian/copyright @@ -0,0 +1,27 @@ +This package was debianized by Tobias Klauser on +Fri, 22 Jun 2007 18:59:39 +0200. + +It was downloaded from . + +Upstream Author: Folkert van Heusden + +License: + + Copyright (C) 2007 Folkert van Heusden + + 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 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General Public License +can be found in /usr/share/common-licenses/GPL file. --- acpitail-0.1.orig/debian/changelog +++ acpitail-0.1/debian/changelog @@ -0,0 +1,24 @@ +acpitail (0.1-3) unstable; urgency=low + + * Add ${misc:Depends} to Depends in control (this fixes a lintian warning). + * Bumped Standards-Version to 3.8.3, no changes necessary. + + -- Tobias Klauser Wed, 13 Jan 2010 18:22:25 +0100 + +acpitail (0.1-2) unstable; urgency=low + + * Replaced obsolete dh_clean -k with dh_prep in rules. + * Changed maintainer to Debian Acpi Team. + * Removed Homepage tag in control in favour of the new control field. + * Added Vcs-Git and Vcs-Browser fields to control. + * Bumped Standards-Version to 3.8.0, no changes necessary. + * Updated debhelper compatibility level from 5 to 7. + + -- Tobias Klauser Thu, 01 Jan 2009 15:40:49 +0100 + +acpitail (0.1-1) unstable; urgency=low + + * Initial release. (Closes: #430022) + * Added manpage + + -- Tobias Klauser Sat, 04 Aug 2007 18:59:17 +0200 --- acpitail-0.1.orig/debian/watch +++ acpitail-0.1/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://vanheusden.com/acpitail/acpitail-(.*)\.tgz --- acpitail-0.1.orig/debian/docs +++ acpitail-0.1/debian/docs @@ -0,0 +1 @@ +readme.txt --- acpitail-0.1.orig/debian/acpitail.1 +++ acpitail-0.1/debian/acpitail.1 @@ -0,0 +1,39 @@ +.TH acpitail 1 "2007-08-04" "" "" +.SH NAME +acpitail \- Show ACPI information in a tail-like style +.SH SYNOPSIS +.B acpitail +[OPTION]... +.SH DESCRIPTION +.B acpitail +shows ACPI status information about battery, fan and temperature in a tail-like +manner. As soon as a value changes, the new value gets appended to the current +output. +.SH OPTIONS +.TP +.B \-A \fIx\fR +set update interval for AC state information to \fIx\fR seconds (default: 300) +.TP +.B \-B \fIx\fR +set update interval for battery information to \fIx\fR seconds (default: 15) +.TP +.B \-F \fIx\fR +set update interval for fan information to \fIx\fR seconds (default: 5) +.TP +.B \-Z \fIx\fR +set update interval for zone information to \fIx\fR seconds (default: 5) +.TP +.B \-h +show help +.TP +.B \-V +show version information +.SH AUTHORS +.PP +acpitail is developed by Folkert van Heusden . +This manual page was written by Tobias Klauser for the Debian +system (but may be used by others). +.SH SEE ALSO +.PP +.BR libacpi(3), +.BR yacpi(1) --- acpitail-0.1.orig/debian/compat +++ acpitail-0.1/debian/compat @@ -0,0 +1 @@ +7