summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Phillip Brink (binki) <ohnobinki@ohnopublishing.net>2011-07-02 16:41:16 +0000
committerNathan Phillip Brink (binki) <ohnobinki@ohnopublishing.net>2011-07-02 16:41:16 +0000
commit8f1cc8ad08bee27a51a635fbbe5694db7682c00c (patch)
tree6b7177dbdfc111fff8e56689f0e0c1c7b0e22b71 /media-tv
parentx11-plugins/pidgin-extended-blist-sort: Add missing DEPEND on dev-util/pkgcon... (diff)
downloadsunrise-8f1cc8ad08bee27a51a635fbbe5694db7682c00c.tar.gz
sunrise-8f1cc8ad08bee27a51a635fbbe5694db7682c00c.tar.bz2
sunrise-8f1cc8ad08bee27a51a635fbbe5694db7682c00c.zip
media-tv/otrdecoder-bin: Fix KEYWORDS to include -* for binary package, quote expansion of ${S}, missing newline at end of file.
(Portage version: 2.2.0_alpha41-r1/svn/Linux x86_64) svn path=/sunrise/; revision=12191
Diffstat (limited to 'media-tv')
-rw-r--r--media-tv/otrdecoder-bin/ChangeLog5
-rw-r--r--media-tv/otrdecoder-bin/otrdecoder-bin-592.ebuild8
2 files changed, 9 insertions, 4 deletions
diff --git a/media-tv/otrdecoder-bin/ChangeLog b/media-tv/otrdecoder-bin/ChangeLog
index 0e0906761..67a57046e 100644
--- a/media-tv/otrdecoder-bin/ChangeLog
+++ b/media-tv/otrdecoder-bin/ChangeLog
@@ -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
diff --git a/media-tv/otrdecoder-bin/otrdecoder-bin-592.ebuild b/media-tv/otrdecoder-bin/otrdecoder-bin-592.ebuild
index 9b2ea666e..172b25f8d 100644
--- a/media-tv/otrdecoder-bin/otrdecoder-bin-592.ebuild
+++ b/media-tv/otrdecoder-bin/otrdecoder-bin-592.ebuild
@@ -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
+}