]> git.deb.at Git - pkg/beep.git/commitdiff
Imported Debian patch 1.2.2-21 debian/1.2.2-21
authorGerfried Fuchs <rhonda@debian.at>
Thu, 10 Jul 2008 13:14:18 +0000 (15:14 +0200)
committerGerfried Fuchs <rhonda@debian.at>
Thu, 10 Jun 2010 11:31:38 +0000 (13:31 +0200)
debian/README.source [new file with mode: 0644]
debian/changelog
debian/control
debian/po/gl.po [new file with mode: 0644]
debian/rules

diff --git a/debian/README.source b/debian/README.source
new file mode 100644 (file)
index 0000000..3556bbc
--- /dev/null
@@ -0,0 +1,2 @@
+This package uses quilt for its patch management, see
+/usr/share/doc/quilt/README.source if you are unfamiliar with it.
index 1a1e84c4c27756d563dec14143ccd259b5f7686e..efa5c686d58f3ebb5dd3eff9a974b34cd43fca0f 100644 (file)
@@ -1,3 +1,13 @@
+beep (1.2.2-21) unstable; urgency=low
+
+  * Don't ignore make clean errors anymore.
+  * New debconf translation: Galician by Jacobo Tarrio (closes: #481751)
+  * Updated to Standards-Version to 3.8.0, add README.source file (referencing
+    quilt's).
+  * Also strip sections .comment and .note (closes: #490163)
+
+ -- Gerfried Fuchs <rhonda@debian.at>  Thu, 10 Jul 2008 15:14:18 +0200
+
 beep (1.2.2-20) unstable; urgency=low
 
   * Added Homepage: control field.
index 694a7ff25cec958a5afb6eef47bdea0abfd99566..a4c542848d49bb73d577792a4e9189fb84def6fc 100644 (file)
@@ -3,7 +3,7 @@ Section: sound
 Priority: optional
 Maintainer: Gerfried Fuchs <rhonda@debian.at>
 Build-Depends: po-debconf, patch, quilt
-Standards-Version: 3.7.2
+Standards-Version: 3.8.0
 Homepage: http://johnath.com/beep/
 
 Package: beep
diff --git a/debian/po/gl.po b/debian/po/gl.po
new file mode 100644 (file)
index 0000000..72b99e9
--- /dev/null
@@ -0,0 +1,59 @@
+# Galician translation of beep's debconf templates
+# This file is distributed under the same license as the beep package.
+# Jacobo Tarrio <jtarrio@debian.org>, 2008.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: beep\n"
+"Report-Msgid-Bugs-To: beep@packages.debian.org\n"
+"POT-Creation-Date: 2007-02-20 23:46+0100\n"
+"PO-Revision-Date: 2008-05-18 12:37+0100\n"
+"Last-Translator: Jacobo Tarrio <jtarrio@debian.org>\n"
+"Language-Team: Galician <proxecto@trasno.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: select
+#. Choices
+#: ../templates:1001
+msgid ""
+"suid root for all, suid root with only group audio executable, not suid at "
+"all"
+msgstr ""
+"suid root para todos, suid root só executable para o grupo audio, non suid "
+"en absoluto"
+
+#. Type: select
+#. Description
+#: ../templates:1002
+msgid "Install beep as:"
+msgstr "Instalar beep coma:"
+
+#. Type: select
+#. Description
+#: ../templates:1002
+msgid ""
+"beep must be run as root since it needs to access the speaker hardware. "
+"There are several posibilities to make the program usable:  Either only for "
+"root (no suid bit at all), executable only by users of the group audio, or "
+"usable for all."
+msgstr ""
+"Débese executar \"beep\" coma administrador, xa que precisa de acceder ao "
+"hardware do altoparlante. Hai varias posibilidade para facer o programa "
+"utilizable: só para o administrador (sen bit suid en absoluto), executable "
+"só polos usuarios do grupo \"audio\", ou utilizable por todos."
+
+#. Type: select
+#. Description
+#: ../templates:1002
+msgid ""
+"Since each program set as suid root can be a security risk this is not done "
+"by default.  However, the program is quite small (~150 lines of code), so it "
+"is fairly easy to verify the safety of the code yourself, if you don't trust "
+"my judgement."
+msgstr ""
+"Xa que os programas \"suid root\" poden ser riscos de seguridade, isto non "
+"se fai por defecto. Nembargantes, o programa é bastante pequeno (unhas 150 "
+"liñas de código), así que é bastante doado verificar vostede mesmo a "
+"seguridade do código, se non confía no xuízo do mantedor do paquete."
index ba09d0a1491652dd88b6c22789b1bfa38b80491c..b21dd92dd3f53857ba5c04fe22a4c94951838612 100755 (executable)
@@ -25,6 +25,7 @@ else
 endif
 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
        INSTALL_PROGRAM += -s
+       STRIP = true
 endif
 
 
@@ -34,7 +35,7 @@ clean: unpatch
        $(checkdir)
        $(checkroot)
        -rm -rf $(TMP1) $(TMP2) debian/substvars debian/files build-stamp
-       -$(MAKE) clean
+       [ ! -f beep ] || $(MAKE) clean
 
 
 build: build-stamp
@@ -63,6 +64,9 @@ install: build
        cd $(TMP1)/usr/share/doc/$(PKG1) && gzip -9 changelog README
        $(INSTALL_DIR) $(TMP2)/usr/bin
        $(INSTALL_PROGRAM) beep $(TMP2)/usr/bin
+       test "$(STRIP)" != true || strip \
+               --remove-section=.comment --remove-section=.note \
+               $(TMP1)/usr/bin/beep $(TMP2)/usr/bin/beep
 
 
 # Build architecture-independent files here.