--- bottlerocket-0.05b3.orig/br.c +++ bottlerocket-0.05b3/br.c @@ -288,6 +288,15 @@ */ int fd; +/* + * A slightly paranoid hack to make sure we are not outputting on stdout + * over a serial port accidentally. We prevent this by not opening + * file descriptors 0, 1 or 2. + * added by Kevin Coyner, original code by A. Clark 15 Feb 2000 + */ + while ((fd = open("/dev/null", 0, 0)) < 3) + if (fd < 0) _exit(errno); + close(fd); if (Verbose >= 2) printf("%s: Opening serial port %s.\n", MyName, port); @@ -305,11 +314,15 @@ * If we end up with a reserved fd, don't mess with it. Just to make sure. */ - if (!SAFE_FILENO(fd)) { - close(fd); - errno = EBADF; - return -1; - } +/* + * Commented out by Kevin Coyner per patch from A.Clark 15 Feb 2000 + * + * if (!SAFE_FILENO(fd)) { + * close(fd); + * errno = EBADF; + * return -1; + * } +*/ return fd; } --- bottlerocket-0.05b3.orig/rocket_launcher +++ bottlerocket-0.05b3/rocket_launcher @@ -0,0 +1,178 @@ +#!/usr/bin/wish + +# Some variables to store desired states +set bottleRocket "/usr/bin/br" +set currentHouse "A" +set currentButton 1 +set currentRange 0 + +# This is a tk/tcl front end for the bottlerocket program written by +#Tymm ( tymm@acm.org ) It currently is set up just like the X-10 Powerhouse +#remote. (with radio buttons instead of a dial for the house, and radio +#buttons instead of a switch for chosing devices 1-8 or 9-16. +# +# (Version 0.1 Initial release) (6/7/1999) +# Chris Kuster (ckuster@hrair.physics.ncsu.edu) +# +# (Version 0.1.1 1st bugfix release) (6/8/1999) +# Chris Kuster (ckuster@hrair.physics.ncsu.edu) +# Changes since Version 0.1 +# 1) Dimmer functions actually exist +# 2) There is now a variable to store the name of the bottle_rocket function +# +# Things to do for future versions: +# 1) A dial interface for the house selection (to be like the remote) +# 2) A little light (like on the remote) +# 3) A switch interface for the range selection (to be like the remote) +# 4) A labeling scheme (so you can tell what's what) +# 5) Better looking in general (may not be possible with tk/tcl) +# 6) A more flexible method of calling the executable (paths not hard wired) +# Most of these are based on the assumption that it is better to have an +# interface like the remote. This may not be a good assumption. +# +# (c) 1999 Chris Kuster (ckuster@hrair.physics.ncsu.edu). +# Free Software. GPL applies. +# No warranties expressed or implied. + +# A procedure to turn on a given device in a given house +proc fire_ignite {House Device Range BottleRocket} { + set currentDevice [expr {$Device + 8 * $Range}] + exec $BottleRocket $House$currentDevice on +} + +# A procedure to turn off a given device in a given house +proc fire_dowse {House Device Range BottleRocket} { + set currentDevice [expr {$Device + 8 * $Range}] + exec $BottleRocket $House$currentDevice off +} + +# A procedure to dim the dimmer for a given house +proc fire_dimmer {House BottleRocket} { + exec $BottleRocket $House dim +} + +# A procedure to brighten the dimmer for a given house +proc fire_brighter {House BottleRocket} { + exec $BottleRocket $House bright +} + +# This procedure creates all of the widgets and associates them with the +# desired commands. +proc fire_create_menu {} { + +# Create a method of choosing the letter of the house containing +# the desired device. + frame .house -borderwidth 2 + pack .house -side left -fill y + +# Title "House" + label .house.title -text "House" + pack .house.title + +# Radio buttons for each house (would really like a dial) + foreach h {"A" "B" "C" "D" "E" "F" "G" "H" "I" "J" "K" "L" "M" "N" "O" "P"} { + radiobutton .house.h$h -text $h -variable currentHouse -value $h + + pack .house.h$h + } + +# Titles "On" "Off" + frame .titles -borderwidth 2 + pack .titles -side top -fill x + label .titles.on -text "On" + label .titles.off -text "Off" + pack .titles.on -side left + pack .titles.off -side right + +# The following lines create the on/off buttons for the devices. +# I consider the fact that I wasn't able to accomplish this with +# a loop to be a personal failing. If I used plain buttons +# and a loop, there were temporal scope problems with variables. +# I was able to create a working loop if I used radiobuttons, but +# that didn't look right at all. (Ob) + +# Device 1 on/off buttons + frame .a1 -borderwidth 2 + pack .a1 -side top -fill x + button .a1.on -text "1" -command {fire_ignite $currentHouse 1 $currentRange $bottleRocket} + button .a1.off -text "1" -command {fire_dowse $currentHouse 1 $currentRange $bottleRocket} + pack .a1.on .a1.off -side left + +# Device 2 on/off buttons + frame .a2 -borderwidth 2 + pack .a2 -side top -fill x + button .a2.on -text "2" -command {fire_ignite $currentHouse 2 $currentRange $bottleRocket} + button .a2.off -text "2" -command {fire_dowse $currentHouse 2 $currentRange $bottleRocket} + pack .a2.on .a2.off -side left + +# Device 3 on/off buttons + frame .a3 -borderwidth 2 + pack .a3 -side top -fill x + button .a3.on -text "3" -command {fire_ignite $currentHouse 3 $currentRange $bottleRocket} + button .a3.off -text "3" -command {fire_dowse $currentHouse 3 $currentRange $bottleRocket} + pack .a3.on .a3.off -side left + +# Device 4 on/off buttons + frame .a4 -borderwidth 2 + pack .a4 -side top -fill x + button .a4.on -text "4" -command {fire_ignite $currentHouse 4 $currentRange $bottleRocket} + button .a4.off -text "4" -command {fire_dowse $currentHouse 4 $currentRange $bottleRocket} + pack .a4.on .a4.off -side left + +# Device 5 on/off buttons + frame .a5 -borderwidth 2 + pack .a5 -side top -fill x + button .a5.on -text "5" -command {fire_ignite $currentHouse 5 $currentRange $bottleRocket} + button .a5.off -text "5" -command {fire_dowse $currentHouse 5 $currentRange $bottleRocket} + pack .a5.on .a5.off -side left + +# Device 6 on/off buttons + frame .a6 -borderwidth 2 + pack .a6 -side top -fill x + button .a6.on -text "6" -command {fire_ignite $currentHouse 6 $currentRange $bottleRocket} + button .a6.off -text "6" -command {fire_dowse $currentHouse 6 $currentRange $bottleRocket} + pack .a6.on .a6.off -side left + +# Device 7 on/off buttons + frame .a7 -borderwidth 2 + pack .a7 -side top -fill x + button .a7.on -text "7" -command {fire_ignite $currentHouse 7 $currentRange $bottleRocket} + button .a7.off -text "7" -command {fire_dowse $currentHouse 7 $currentRange $bottleRocket} + pack .a7.on .a7.off -side left + +# Device 8 on/off buttons + frame .a8 -borderwidth 2 + pack .a8 -side top -fill x + button .a8.on -text "8" -command {fire_ignite $currentHouse 8 $currentRange $bottleRocket} + button .a8.off -text "8" -command {fire_dowse $currentHouse 8 $currentRange $bottleRocket} + pack .a8.on .a8.off -side left + +# All right. Now that that's over, we need buttons for the dimmer + + frame .dimmer -borderwidth 2 + pack .dimmer -side top -fill x + button .dimmer.brite -text "+" -command {fire_brighter $currentHouse $bottleRocket} + button .dimmer.dim -text "-" -command {fire_dimmer $currentHouse $bottleRocket} + pack .dimmer.brite .dimmer.dim -side left + +# And finally, there needs to be a way to switch between devices 1-8 and 9-16 + + frame .rangeSwitch -borderwidth 5 + pack .rangeSwitch -side top -fill x + radiobutton .rangeSwitch.low -text "1-8" -variable currentRange -value 0 + radiobutton .rangeSwitch.high -text "9-16" -variable currentRange -value 1 + pack .rangeSwitch.low .rangeSwitch.high -side top +} + +# A procedure to actually show the window +proc fire_show_menu {} { + if {[winfo exists .fire]} { + wm deiconify .fire + raise .fire + } +} + + +# Actual start of the script. +fire_create_menu +fire_show_menu --- bottlerocket-0.05b3.orig/debian/compat +++ bottlerocket-0.05b3/debian/compat @@ -0,0 +1 @@ +5 --- bottlerocket-0.05b3.orig/debian/changelog +++ bottlerocket-0.05b3/debian/changelog @@ -0,0 +1,199 @@ +bottlerocket (0.05b3-14.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix pending l10n issues. Debconf translations: + - Danish (Joe Hansen). Closes: #627718 + - Polish (Michał Kułach). Closes: #660095 + - Slovak (Ivan Masár). Closes: #661131 + - Italian (Beatrice Torracca). Closes: #661170 + - Brazilian Portuguese (Adriano Rafael Gomes). Closes: #661178 + + -- Christian Perrier Sun, 26 Feb 2012 10:06:40 +0100 + +bottlerocket (0.05b3-14) unstable; urgency=low + + * Added new Japanese translation (ja.po). Closes: #553032 + * Added new Swedish translation (sv.po). Closes: #503599 + * Remove unneeded line in debian/bottlerocket that creates empty directory + in /usr/share/bottlerocket/doc. Add command in debian/postint to test and + remove that empty directory if found. + * Fixed copyright symbols in debian/copyright. + * Bumped Standards-Version to 3.8.3. No changes. + + -- Kevin Coyner Wed, 16 Dec 2009 08:48:28 -0500 + +bottlerocket (0.05b3-13) unstable; urgency=low + + * Added new Dutch translation (nl.po). Closes: #449408 + * debian/control: + + Moved Homepage out of extended description. + + Bumped Standards-Version to 3.7.3. No changes. + + -- Kevin Coyner Sun, 24 Feb 2008 21:56:16 -0500 + +bottlerocket (0.05b3-12) unstable; urgency=low + + * Added new Portuguese translation (pt.po). Closes: #436956 + + -- Kevin Coyner Tue, 14 Aug 2007 13:42:28 -0400 + +bottlerocket (0.05b3-11) unstable; urgency=low + + * New e-mail address for maintainer. Changed in debian/control and + debian/copyright. + * debian/rules - Changed a couple clean rules. Cleaned up some cruft. + * Removed debian/postrm, which violates Policy 10.6 by removing a device + file when a user purges the package. + + -- Kevin Coyner Wed, 08 Aug 2007 21:19:02 -0400 + +bottlerocket (0.05b3-10) unstable; urgency=low + + * Update Spanish translation (es.po). Closes: #419210 + + -- Kevin Coyner Sun, 15 Apr 2007 19:05:05 -0400 + +bottlerocket (0.05b3-9) unstable; urgency=low + + * Update Russian translation (ru.po). Closes: #404431 + + -- Kevin Coyner Sun, 24 Dec 2006 21:22:23 -0500 + +bottlerocket (0.05b3-8) unstable; urgency=low + + * Add German, Czech and French translations (de.po, cs.po and fr.po). + Closes: #396434, #393534, #382583 + * Add call to debconf-updatepo in debian/rules clean target to automatically + regenerate templates.pot and translation files. + * Update to Standards-Version 3.7.2.2. + * Add build-dependency of po-debconf to debian/control. + * Small change in clean target in debian/rules. + + -- Kevin Coyner Wed, 6 Dec 2006 08:40:53 -0500 + +bottlerocket (0.05b3-7) unstable; urgency=low + + * New maintainer. Closes: #357503 + * Standards Version: 3.7.2 + * debian/control: Improved description and references to wish. Closes: #265850 + * debian/control: Added autotools-dev to Build-Depends + * debhelper compat level increased to 5 + * Switched to gettext-based debconf templates. + Thanks to Christian Perrier. Closes: #205769 + * Added French translation for debconf. Closes: #206736 + * debian/rules: Complete new version of rules used. + * Incorporated old patch from Feb 2000 into source code (br.c) since + upstream has not released anything in a long time. + * debian/README.Debian: spelling correction. + * Old bugs fixed by NMU. Closes: #322817, #331766 + + -- Kevin Coyner Sat, 29 Jul 2006 07:37:44 -0400 + +bottlerocket (0.05b3-6.1) unstable; urgency=low + + * Non-maintainer upload. + * Rebuilt with current debhelper to finish /usr/doc transition. + Closes: #322817 + * Replace debconf dependency with ${misc:Depends}. Closes: #331766 + + -- Joey Hess Tue, 10 Jan 2006 21:37:44 -0500 + +bottlerocket (0.05b3-6) unstable; urgency=low + + * Added German template. Closes: #126051 + * Added Spanish template. Closes: #136363 + * Added Russian template. Closes: #136583 + + -- Ashley Clark Tue, 23 Apr 2002 11:54:47 -0500 + +bottlerocket (0.05b3-5) unstable; urgency=low + + * Added missing Build-Depends line. Closes: #70354 + * Changed email address references to @debian.org. + + -- Ashley Clark Fri, 1 Sep 2000 00:33:38 -0500 + +bottlerocket (0.05b3-4) unstable; urgency=low + + * patch #01: loosens up on restrictions about std{in,out,err} file + descriptors. Closes: #56679 + * Debconf support added + * Standards Version: 3.1.1.1 + + -- Ashley Clark Tue, 15 Feb 2000 02:38:38 -0600 + +bottlerocket (0.05b3-3) unstable; urgency=low + + * Added statement to README.Debian about dialout group for access to + firecracker port + + -- Ashley Clark Sat, 30 Oct 1999 08:35:42 -0500 + +bottlerocket (0.05b3-2) unstable; urgency=low + + * Oops, forgot to re-add brconfig on version upgrade, closes bug#48126 + + -- Ashley Clark Sat, 23 Oct 1999 16:10:23 -0500 + +bottlerocket (0.05b3-1) unstable; urgency=low + + * New upstream version + * Changed to suggest wish, since rocket_launcher is not required to run + bottlerocket it doesn't make sense to require tk be installed. + * Thanks Joey for all the help, duly noted :) + + -- Ashley Clark Wed, 25 Aug 1999 23:09:17 -0500 + +bottlerocket (0.05b3-0.1) unstable; urgency=low + + * Added the rocket_launcher tk gui program. This isn't part of bottle + rocket, but it's a single standalone file, so it seems sort of silly to + make a whole package just for it alone. + * Man page and menu entry for same. + * Renamed README.debian to .Debian, and made a tiny change to it. + * Modified copyright file to contain the copyright of bottlerocket + 0.05b3. + * Upgraded to that version of bottlerocket. While this is a beta release + of bottlerocket, it has a clear copyright, which previous versions did + not. + * Converted to debhelper (from debstd). + * Corrected man page to have a proper NAME section. + * Corrected priority to extra, since this needs special hardware. + * Added the rocket_launcher tk gui program. This isn't part of bottle + rocket, but it's a single standalone file, so it seems sort of silly to + make a whole package just for it alone. + + -- Joey Hess Wed, 25 Aug 1999 20:26:28 -0700 + +bottlerocket (0.04c-4) unstable; urgency=low + + * reverted changes to Makefile, implemented in rules file. + * fixed postinst, postrm and brconfig to conform to policy + * changed maintainer back to aclark@ghoti.org + * Raphaël Hertzo is acting as a sponsor for + the upload of this package to the Debian archive. + + -- Ashley Clark Sun, 8 Aug 1999 15:08:24 -0500 + +bottlerocket (0.04c-3) unstable; urgency=low + + * added brconfig for choosing what to symlink firecracker to + * changed maintainer to debian-qa@lists.debian.org in order to get it + uploaded since I'm currently not a developer + + -- Ashley Clark Wed, 4 Aug 1999 17:46:50 -0500 + +bottlerocket (0.04c-2) unstable; urgency=low + + * fixed lack of section/priority + + -- Ashley Clark Sat, 31 Jul 1999 12:24:59 -0500 + +bottlerocket (0.04c-1) unstable; urgency=low + + * Initial release. + * Added a manpage, fixed permissions problems and cleaned up the + Makefile + + -- Ashley Clark Sat, 31 Jul 1999 01:59:58 -0500 + --- bottlerocket-0.05b3.orig/debian/menu +++ bottlerocket-0.05b3/debian/menu @@ -0,0 +1,3 @@ +?package(bottlerocket):needs="x11" section="Applications/System/Hardware" \ + title="Rocket Launcher" longtitle="Rocket Launcher" \ + command="rocket_launcher" --- bottlerocket-0.05b3.orig/debian/rocket_launcher.1 +++ bottlerocket-0.05b3/debian/rocket_launcher.1 @@ -0,0 +1,9 @@ +.TH "rocket_launcher" "1" "Joey Hess" "" "" +.SH "NAME" +rocket_launcher \- graphical front end for bottlerocket +.SH "SYNOPSIS" +.B rocket_launcher +.SH "DESCRIPTION" +rocket_launcher is a graphical front end for the bottlerocket utility. When run it displays an interface that mimics the physical remote control that comes with the bottlerocket equipment. +.SH "AUTHOR" +This manual page was written by Joey Hess. --- bottlerocket-0.05b3.orig/debian/br.1 +++ bottlerocket-0.05b3/debian/br.1 @@ -0,0 +1,57 @@ +.TH "br" "1" "Ashley Clark" +.SH "NAME" +br \- utility to interact with Firecracker device +.SH SYNOPSIS +.B br +.I "[options] [housecode[list]] [native command] ..." +.SH "DESCRIPTION" +This manual page documents briefly the +.BR br +command. +.B br +is a program that interacts with X10's Firecracker device allowing the user +to manipulate X10 devices throughout their house/office. +.SH OPTIONS +The programs follow the usual GNU command line syntax, with long +options starting with two dashes (`-'). +A summary of options are included below. +.TP +.B \-h, \-\-help +Show summary of options. +.TP +.B \-v, \-\-verbose +Each \-v will increase the verbosity. +.TP +.B \-x, \-\-port=PORT +Set port to communicate with (should be the port the Firecracker module is +plugged into) +.TP +.B \-c, \-\-house=[A-P] +Use alternate house code for operations, default is A +.TP +.B \-n, \-\-on=LIST +Turn on all devices in LIST +.TP +.B \-f, \-\-off=LIST +Turn off all devices in LIST +.TP +.B \-N, \-\-ON +Turn on all devices in housecode +.TP +.B \-F, \-\-OFF +Turn off all devices in housecode +.TP +.B \-d, \-\-dim=LEVEL[,LIST] +Dim devices in housecode [or LIST] to relative LEVEL +.TP +.B \-B, \-\-lamps_on +Turn on all lamps in housecode +.TP +.B \-D, \-\-lamps_off +Turn off all lamps in housecode +.TP +.B \-r, \-\-repeat=NUM +Repeat commands NUM times (0 = ~forever) +.SH "AUTHOR" +This manual page was written by Ashley Clark , +for the Debian GNU/Linux system (but may be used by others). --- bottlerocket-0.05b3.orig/debian/control +++ bottlerocket-0.05b3/debian/control @@ -0,0 +1,21 @@ +Source: bottlerocket +Section: electronics +Priority: extra +Maintainer: Kevin Coyner +Build-Depends: debhelper (>= 5), po-debconf +Standards-Version: 3.8.3 +Homepage: http://www.linuxha.com/bottlerocket/ + +Package: bottlerocket +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, debconf (>= 0.5) +Suggests: wish +Description: Utility to control X10 Firecracker devices for home automation + A command-line utility to interact with the Firecracker version of + X10's home control devices (wireless home automation to control lights, + cameras, appliances via a small transmitter that plugs into the standard + RS-232 serial port of a computer). + . + Also included is rocket launcher, a graphical frontend to bottlerocket. + If you want this functionality you should have wish (tk8.3 or tk8.4 - the + Tcl/Tk interpreter) installed. --- bottlerocket-0.05b3.orig/debian/copyright +++ bottlerocket-0.05b3/debian/copyright @@ -0,0 +1,52 @@ +This package was debianized by Ashley Clark on +Sat, 31 Jul 1999 00:24:39 -0500. + +It is now maintained for Debian by Kevin Coyner . + +BottleRocket was originally downloaded from . +It can now be found at http://www.linuxha.com/bottlerocket/. + +Authors: + Tymm Twillman + Ashley Clark + +Copyright: + 1999 Ashley Clark (aclark@ghoti.org) and Tymm Twillman (tymm@acm.org) + +This package is now distributed partially under the GPL license and partially +under the LGPL license. The library is LGPL'd (see LICENCE.lgpl for details); +this includes br_cmd.c, br_cmd.h, br_cmd_engine.c, br_cmd_engine.h, +br_translate.h. + +The br program itself is distributed under the GPL license; this is a change +from 0.04 and previous versions. This covers br.c and br.h. This part of the +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 with the +Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL; if not, +write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General Public +License, version 2, can be found in /usr/share/common-licenses/GPL-2. + +rocket_launcher was downloaded from +http://www.crl.com/~wrigley/chris/pages/RocketLauncher.html, and has the +following copyright: + +# © 1999 Chris Kuster (ckuster@hrair.physics.ncsu.edu). +# Free Software. GPL applies. +# No warranties expressed or implied. + +On Debian systems, the complete text of the GNU Lesser General Public +License, can be found in /usr/share/common-licenses/LGPL. + +The Debian packaging is © 2006, Kevin Coyner and +is licensed under the GPL, see above. --- bottlerocket-0.05b3.orig/debian/templates +++ bottlerocket-0.05b3/debian/templates @@ -0,0 +1,6 @@ +Template: bottlerocket/x10_port +Type: string +Default: ttyS0 +_Description: Serial device for bottlerocket to access: + BottleRocket requires the use of a serial device to access the X10 + FireCracker interface. --- bottlerocket-0.05b3.orig/debian/bottlerocket.manpages +++ bottlerocket-0.05b3/debian/bottlerocket.manpages @@ -0,0 +1,2 @@ +debian/br.1 +debian/rocket_launcher.1 --- bottlerocket-0.05b3.orig/debian/config +++ bottlerocket-0.05b3/debian/config @@ -0,0 +1,7 @@ +#!/bin/sh -e + +# Source debconf library +. /usr/share/debconf/confmodule + +db_input medium bottlerocket/x10_port || true +db_go --- bottlerocket-0.05b3.orig/debian/rules +++ bottlerocket-0.05b3/debian/rules @@ -0,0 +1,84 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +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 + +config.status: configure + dh_testdir + ln -sf /usr/share/misc/config.sub config.sub + ln -sf /usr/share/misc/config.guess config.guess + rm -f config.cache + + # Add here commands to configure the package. + ./configure CFLAGS="$(CFLAGS)" --prefix=/usr --mandir=\$${prefix}/share/man --with-x10port=/dev/firecracker \ + --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + # Add here commands to clean up after the build process. + [ ! -f Makefile ] || $(MAKE) clean + [ ! -f Makefile ] || $(MAKE) really_clean + find \( -name config.sub -o -name config.guess \) -print0 | xargs -0 -r rm -f \; + dh_clean + debconf-updatepo + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/bottlerocket. + $(MAKE) install prefix=$(CURDIR)/debian/bottlerocket/usr + +# 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 README + dh_install rocket_launcher usr/bin + dh_installmenu + dh_installdebconf + dh_installman + 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 --- bottlerocket-0.05b3.orig/debian/bottlerocket.dirs +++ bottlerocket-0.05b3/debian/bottlerocket.dirs @@ -0,0 +1 @@ +usr/bin --- bottlerocket-0.05b3.orig/debian/postinst +++ bottlerocket-0.05b3/debian/postinst @@ -0,0 +1,21 @@ +#! /bin/sh -e + +# Source debconf library +. /usr/share/debconf/confmodule + +if [ "$1" = "configure" ]; then + db_get bottlerocket/x10_port + + if [ "x$RET" = "x" ]; then + device="ttyS0" + fi + device=${RET##/dev/} + + ln -sf $device /dev/firecracker + + if [ -d /usr/share/bottlerocket/doc ]; then + find /usr/share/bottlerocket/doc -type d -empty -delete + fi +fi + +#DEBHELPER# --- bottlerocket-0.05b3.orig/debian/README.Debian +++ bottlerocket-0.05b3/debian/README.Debian @@ -0,0 +1,22 @@ +bottlerocket for Debian +---------------------- + +This package uses debconf to configure the /dev/firecracker symlink, +should you need to change the symlink in the future run this command: + + dpkg-reconfigure -pmedium bottlerocket + +That will then prompt you for your new serial port and modify the +symlink. This is required for proper use of bottlerocket. + +----- +The INSTALL file talks about the group "tty" for controlling access +to the ttySx ports, however in Debian it is the group "dialout" +that has this privilege. + +Using "usermod -G dialout[,current groups] username" gives username +the ability to use br. And that's not running /usr/bin/br as setgid +or setuid. +----- Jerritt Collord + +Ashley Clark , Tue, 15 Feb 2000 03:38:11 -0600 --- bottlerocket-0.05b3.orig/debian/po/fr.po +++ bottlerocket-0.05b3/debian/po/fr.po @@ -0,0 +1,44 @@ +# translation of fr.po to French +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# Christian Perrier , 2006. +msgid "" +msgstr "" +"Project-Id-Version: fr\n" +"Report-Msgid-Bugs-To: kevin@rustybear.com\n" +"POT-Creation-Date: 2006-07-30 08:02-0400\n" +"PO-Revision-Date: 2006-08-11 17:13-0500\n" +"Last-Translator: Christian Perrier \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.2\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Serial device for bottlerocket to access:" +msgstr "Nom du priphrique srie qu'utilisera BottleRocket:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"BottleRocket requires the use of a serial device to access the X10 " +"FireCracker interface." +msgstr "" +"BottleRocket doit pouvoir utiliser un priphrique srie pour accder " +"l'interface X10 FireCracker." --- bottlerocket-0.05b3.orig/debian/po/sk.po +++ bottlerocket-0.05b3/debian/po/sk.po @@ -0,0 +1,34 @@ +# Slovak translation for bottlerocket debconf template. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the bottlerocket package. +# +# Ivan Masár , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: bottlerocket\n" +"Report-Msgid-Bugs-To: kevin@rustybear.com\n" +"POT-Creation-Date: 2006-07-30 08:02-0400\n" +"PO-Revision-Date: 2012-02-24 12:35+0100\n" +"Last-Translator: Ivan Masár \n" +"Language-Team: Slovak \n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Serial device for bottlerocket to access:" +msgstr "Seériové zariadenie, ktoré má bottlerocket použiť na prístup:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"BottleRocket requires the use of a serial device to access the X10 " +"FireCracker interface." +msgstr "" +"BottleRocket vyžaduje použitie sériového zariadenia na prístup k rozhraniu " +"X10 FireCracker." --- bottlerocket-0.05b3.orig/debian/po/it.po +++ bottlerocket-0.05b3/debian/po/it.po @@ -0,0 +1,34 @@ +# Italian translation of bottlerocket debconf messages. +# Copyright (C) 2012, bottlerocket package copyright holder +# This file is distributed under the same license as the bottlerocket package. +# Beatrice Torracca , 2012. +msgid "" +msgstr "" +"Project-Id-Version: bottlerocket\n" +"Report-Msgid-Bugs-To: kevin@rustybear.com\n" +"POT-Creation-Date: 2006-07-30 08:02-0400\n" +"PO-Revision-Date: 2012-02-17 17:36+0200\n" +"Last-Translator: Beatrice Torracca \n" +"Language-Team: Italian \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Virtaal 0.7.1\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Serial device for bottlerocket to access:" +msgstr "Device seriale a cui bottlerocket deve accedere:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"BottleRocket requires the use of a serial device to access the X10 " +"FireCracker interface." +msgstr "" +"BottleRocket necessita dell'uso di un device seriale per accedere " +"all'interfaccia X10 FireCracker." --- bottlerocket-0.05b3.orig/debian/po/pt_BR.po +++ bottlerocket-0.05b3/debian/po/pt_BR.po @@ -0,0 +1,34 @@ +# Debconf translations for bottlerocket. +# Copyright (C) 2012 THE bottlerocket'S COPYRIGHT HOLDER +# This file is distributed under the same license as the bottlerocket package. +# Adriano Rafael Gomes , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: bottlerocket 0.05b3-14\n" +"Report-Msgid-Bugs-To: kevin@rustybear.com\n" +"POT-Creation-Date: 2006-07-30 08:02-0400\n" +"PO-Revision-Date: 2012-02-23 10:55-0200\n" +"Last-Translator: Adriano Rafael Gomes \n" +"Language-Team: Brazilian Portuguese \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Serial device for bottlerocket to access:" +msgstr "Dispositivo serial para o bottlerocket acessar:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"BottleRocket requires the use of a serial device to access the X10 " +"FireCracker interface." +msgstr "" +"O BottleRocket requer o uso de um dispositivo serial para acessar a " +"interface X10 FireCracker." --- bottlerocket-0.05b3.orig/debian/po/templates.pot +++ bottlerocket-0.05b3/debian/po/templates.pot @@ -0,0 +1,31 @@ +# 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: kevin@rustybear.com\n" +"POT-Creation-Date: 2006-07-30 08:02-0400\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: string +#. Description +#: ../templates:1001 +msgid "Serial device for bottlerocket to access:" +msgstr "" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"BottleRocket requires the use of a serial device to access the X10 " +"FireCracker interface." +msgstr "" --- bottlerocket-0.05b3.orig/debian/po/pl.po +++ bottlerocket-0.05b3/debian/po/pl.po @@ -0,0 +1,36 @@ +# Translation of bottlerocket debconf templates to Polish. +# Copyright (C) 2006 +# This file is distributed under the same license as the bottlerocket package. +# +# Michał Kułach , 2012. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: kevin@rustybear.com\n" +"POT-Creation-Date: 2006-07-30 08:02-0400\n" +"PO-Revision-Date: 2012-02-16 12:47+0100\n" +"Last-Translator: Michał Kułach \n" +"Language-Team: Polish \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.2\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Serial device for bottlerocket to access:" +msgstr "Urządzenie szeregowe do dostępu do bottlerocket:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"BottleRocket requires the use of a serial device to access the X10 " +"FireCracker interface." +msgstr "" +"BottleRocket wymaga użycia urządzenia szeregowego do dostępu do interfejsu " +"X10 FireCracker." --- bottlerocket-0.05b3.orig/debian/po/ru.po +++ bottlerocket-0.05b3/debian/po/ru.po @@ -0,0 +1,44 @@ +# translation of bottlerocket_0.05b3-8_ru.po to Russian +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# Yuri Kozlov , 2006. +msgid "" +msgstr "" +"Project-Id-Version: 0.05b3-8\n" +"Report-Msgid-Bugs-To: kevin@rustybear.com\n" +"POT-Creation-Date: 2006-07-30 08:02-0400\n" +"PO-Revision-Date: 2006-12-24 21:31+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Serial device for bottlerocket to access:" +msgstr "Последовательное устройство для доступа к bottlerocket:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"BottleRocket requires the use of a serial device to access the X10 " +"FireCracker interface." +msgstr "" +"Для BottleRocket требуется использовать последовательное устройство для " +"получения доступа к интерфейсу X10 FireCracker." --- bottlerocket-0.05b3.orig/debian/po/ja.po +++ bottlerocket-0.05b3/debian/po/ja.po @@ -0,0 +1,32 @@ +# Copyright (C) 2009 Kevin Coyner +# This file is distributed under the same license as bottlerocket package. +# Hideki Yamane , 2009 +# +msgid "" +msgstr "" +"Project-Id-Version: bottlerocket 0.05b3-13\n" +"Report-Msgid-Bugs-To: kevin@rustybear.com\n" +"POT-Creation-Date: 2006-07-30 08:02-0400\n" +"PO-Revision-Date: 2009-10-25 06:52+0900\n" +"Last-Translator: Hideki Yamane (Debian-JP) \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Serial device for bottlerocket to access:" +msgstr "bottlerocket がアクセスするシリアルデバイス:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"BottleRocket requires the use of a serial device to access the X10 " +"FireCracker interface." +msgstr "" +"BottleBocket は X10 FireCracker インターフェイスにアクセスするのに使うシリア" +"ルデバイスが必要です。" --- bottlerocket-0.05b3.orig/debian/po/sv.po +++ bottlerocket-0.05b3/debian/po/sv.po @@ -0,0 +1,34 @@ +# translation of bottlerocket.po to swedish +# Copyright (C) 2009 Kevin Coyner +# This file is distributed under the same license as the bottlerocket package. +# +# Martin Bagge , 2008. +msgid "" +msgstr "" +"Project-Id-Version: bottlerocket\n" +"Report-Msgid-Bugs-To: kevin@rustybear.com\n" +"POT-Creation-Date: 2006-07-30 08:02-0400\n" +"PO-Revision-Date: 2008-10-27 00:00+0100\n" +"Last-Translator: Martin Bagge \n" +"Language-Team: swedish \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Serial device for bottlerocket to access:" +msgstr "Seriellenhet som bottlerocket ska använda:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"BottleRocket requires the use of a serial device to access the X10 " +"FireCracker interface." +msgstr "" +"BottleRocket kräver en seriellenhet för att kunna komma åt X10 FireCracker-" +"gränssnittet." --- bottlerocket-0.05b3.orig/debian/po/POTFILES.in +++ bottlerocket-0.05b3/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] templates --- bottlerocket-0.05b3.orig/debian/po/pt.po +++ bottlerocket-0.05b3/debian/po/pt.po @@ -0,0 +1,34 @@ +# translation of bottlerocket debconf to Portuguese +# Copyright (C) 2007 Américo Monteiro +# This file is distributed under the same license as the bottlerocket package. +# +# Américo Monteiro , 2007. +msgid "" +msgstr "" +"Project-Id-Version: bottlerocket 0.05b3-10\n" +"Report-Msgid-Bugs-To: kevin@rustybear.com\n" +"POT-Creation-Date: 2006-07-30 08:02-0400\n" +"PO-Revision-Date: 2007-08-09 01:50+0100\n" +"Last-Translator: Américo Monteiro \n" +"Language-Team: Portuguese \n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Serial device for bottlerocket to access:" +msgstr "Dispositivo série para o bottlerocket aceder:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"BottleRocket requires the use of a serial device to access the X10 " +"FireCracker interface." +msgstr "" +"O BottleRocket precisa utilizar um dispositivo série para aceder à interface " +"do X10 FireCracker." --- bottlerocket-0.05b3.orig/debian/po/de.po +++ bottlerocket-0.05b3/debian/po/de.po @@ -0,0 +1,41 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: kevin@rustybear.com\n" +"POT-Creation-Date: 2006-07-30 08:02-0400\n" +"PO-Revision-Date: 2006-10-31 18:52+0100\n" +"Last-Translator: Helge Kreutzmann \n" +"Language-Team: de \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Serial device for bottlerocket to access:" +msgstr "Serielles Gert auf das Bottlerocket zugreifen soll:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"BottleRocket requires the use of a serial device to access the X10 " +"FireCracker interface." +msgstr "" +"BottleRocket bentigt ein serielles Gert, um auf die X10 FireCracker-" +"Schnittstelle zugreifen zu knnen." --- bottlerocket-0.05b3.orig/debian/po/da.po +++ bottlerocket-0.05b3/debian/po/da.po @@ -0,0 +1,33 @@ +# Danish translation bottlerocket. +# Copyright (C) bottlerocket & nedenstående oversættere. +# This file is distributed under the same license as the bottlerocket package. +# Joe Hansen (joedalton2@yahoo.dk), 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: bottlerocket\n" +"Report-Msgid-Bugs-To: kevin@rustybear.com\n" +"POT-Creation-Date: 2006-07-30 08:02-0400\n" +"PO-Revision-Date: 2011-05-23 18:30+01:00\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Serial device for bottlerocket to access:" +msgstr "Seriel enhed for bottlerocket at tilgå:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"BottleRocket requires the use of a serial device to access the X10 " +"FireCracker interface." +msgstr "" +"BottleRocket kræver brugen af en seriel enhed for at tilgå X10 FireCracker-" +"grænsefladen." --- bottlerocket-0.05b3.orig/debian/po/nl.po +++ bottlerocket-0.05b3/debian/po/nl.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE 'S COPYRIGHT HOLDER +# This file is distributed under the same license as the package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: bottlerocket\n" +"Report-Msgid-Bugs-To: kevin@rustybear.com\n" +"POT-Creation-Date: 2006-07-30 08:02-0400\n" +"PO-Revision-Date: 2007-10-25 19:27+0100\n" +"Last-Translator: Bart Cornelis \n" +"Language-Team: debian-l10n-dutch \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Dutch\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Serial device for bottlerocket to access:" +msgstr "Door bottlerocket te gebruiken seriële poort:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"BottleRocket requires the use of a serial device to access the X10 " +"FireCracker interface." +msgstr "" +"BottleRocket maakt gebruike van een seriële poort om de X10 FireCraker-" +"interface te benaderen." --- bottlerocket-0.05b3.orig/debian/po/cs.po +++ bottlerocket-0.05b3/debian/po/cs.po @@ -0,0 +1,34 @@ +# translation of bottlerocket_0.05b3-7_cs-utf8.po to czech +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Jakub Kasparec , 2006. +msgid "" +msgstr "" +"Project-Id-Version: bottlerocket_0.05b3-7_cs-utf8\n" +"Report-Msgid-Bugs-To: kevin@rustybear.com\n" +"POT-Creation-Date: 2006-07-30 08:02-0400\n" +"PO-Revision-Date: 2006-10-16 20:48+0200\n" +"Last-Translator: Jakub Kasparec \n" +"Language-Team: czech \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Serial device for bottlerocket to access:" +msgstr "Sériové zařízení, které bude BottleRocket používat k přístupu:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"BottleRocket requires the use of a serial device to access the X10 " +"FireCracker interface." +msgstr "" +"BottleRocket vyžaduje použití sériového zařízení pro přístup k X10 rozhraní " +"FireCrackeru." --- bottlerocket-0.05b3.orig/debian/po/es.po +++ bottlerocket-0.05b3/debian/po/es.po @@ -0,0 +1,56 @@ +# Translation of bottlerocket_0.05b3-9.po to Spanish +# Copyright (C) 2007 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the bottlerocket package. +# +# Traductores, si no conocen el formato PO, merece la pena leer la +# documentación de gettext, especialmente las secciones dedicadas a este +# formato, por ejemplo ejecutando: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Equipo de traducción al español, por favor lean antes de traducir +# los siguientes documentos: +# +# - El proyecto de traducción de Debian al español +# http://www.debian.org/intl/spanish/ +# especialmente las notas y normas de traducción en +# http://www.debian.org/intl/spanish/notas +# +# - La guía de traducción de po's de debconf: +# /usr/share/doc/po-debconf/README-trans +# o http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Si tiene dudas o consultas sobre esta traducción consulte con el último +# traductor (campo Last-Translator) y ponga en copia a la lista de +# traducción de Debian al español () +# +# Enrique Matias Sanchez (aka Quique) , 2007. +msgid "" +msgstr "" +"Project-Id-Version: bottlerocket_0.05b3-9_es\n" +"Report-Msgid-Bugs-To: kevin@rustybear.com\n" +"POT-Creation-Date: 2006-07-30 08:02-0400\n" +"PO-Revision-Date: 2007-03-19 18:55+0100\n" +"Last-Translator: Enrique Matias Sanchez (aka Quique) \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "Serial device for bottlerocket to access:" +msgstr "Dispositivo serie al que accederá bottlerocket:" + +#. Type: string +#. Description +#: ../templates:1001 +msgid "" +"BottleRocket requires the use of a serial device to access the X10 " +"FireCracker interface." +msgstr "" +"BottleRocket necesita usar un dispositivo serie para acceder a la interfaz " +"de los X10 FireCracker."