]> Pileus Git - ~andy/sunrise/commitdiff
media-tv/otrdecoder-bin: Fix KEYWORDS to include -* for binary package, quote expansi...
authorNathan Phillip Brink (binki) <ohnobinki@ohnopublishing.net>
Sat, 2 Jul 2011 16:41:16 +0000 (16:41 +0000)
committerNathan Phillip Brink (binki) <ohnobinki@ohnopublishing.net>
Sat, 2 Jul 2011 16:41:16 +0000 (16:41 +0000)
(Portage version: 2.2.0_alpha41-r1/svn/Linux x86_64)

svn path=/sunrise/; revision=12191

media-tv/otrdecoder-bin/ChangeLog
media-tv/otrdecoder-bin/otrdecoder-bin-592.ebuild

index 0e09067619ccee508a020c853bdf301e2beae650..67a57046e8df43580fc2d521db84829554b773d6 100644 (file)
@@ -2,6 +2,11 @@
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  02 Jul 2011; Nathan Phillip Brink <binki@gentoo.org>
+  otrdecoder-bin-592.ebuild:
+  Fix KEYWORDS to include -* for binary package, quote expansion of ${S},
+  missing newline at end of file.
+
   28 Jun 2011; Florian Schmaus (flow) <flo@freakempire.de>
   +otrdecoder-bin-592.ebuild:
   Version bump, added support for amd64. Thanks to mgorny
index 9b2ea666ea377f6d3f1bcb9acc2c25d70afe7ea9..172b25f8d4e2f9cfe72db07f411173a5f049ad0f 100644 (file)
@@ -11,7 +11,7 @@ SRC_URI="amd64? ( http://www.onlinetvrecorder.com/downloads/${PN}-linux-Ubuntu_8
 
 LICENSE="as-is"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~x86 -*"
 IUSE="X"
 
 RDEPEND="X? ( gnome-base/libglade
@@ -22,9 +22,9 @@ RESTRICT="strip"
 src_unpack() {
        default
        if use amd64; then
-               mv ${PN}-linux-Ubuntu_8.04.2-x86_64-0.4.613 ${S} || die "move failed"
+               mv ${PN}-linux-Ubuntu_8.04.2-x86_64-0.4.613 "${S}" || die "move failed"
        else
-               mv ${PN}-linux-Ubuntu_9.04-i686-0.4.${PV} ${S} || die "move failed"
+               mv ${PN}-linux-Ubuntu_9.04-i686-0.4.${PV} "${S}" || die "move failed"
        fi
 }
 
@@ -41,4 +41,4 @@ src_install() {
        fi
 
        dodoc README.OTR || die "dodoc failed"
-}
\ No newline at end of file
+}