diff options
author | Jörg Bornkessel <hd_brummy@gentoo.org> | 2011-01-17 21:50:01 +0000 |
---|---|---|
committer | Jörg Bornkessel <hd_brummy@gentoo.org> | 2011-01-17 21:50:01 +0000 |
commit | 94fcef4ba493aa3347de72689a9f1e446a3153e4 (patch) | |
tree | 145e3b6ef011741d6f5d65c6ac1e5a93c3155298 /media-plugins/vdr-remote | |
parent | cleanup, eapi=2, minor ebuild fixes, description fixed, stable x86 amd64 (diff) | |
download | gentoo-2-94fcef4ba493aa3347de72689a9f1e446a3153e4.tar.gz gentoo-2-94fcef4ba493aa3347de72689a9f1e446a3153e4.tar.bz2 gentoo-2-94fcef4ba493aa3347de72689a9f1e446a3153e4.zip |
cleanup, minor ebuild fixes, stable amd64
(Portage version: 2.1.9.24/cvs/Linux i686)
Diffstat (limited to 'media-plugins/vdr-remote')
-rw-r--r-- | media-plugins/vdr-remote/ChangeLog | 10 | ||||
-rw-r--r-- | media-plugins/vdr-remote/files/vdr-remote-0.3.8-uint64.diff | 207 | ||||
-rw-r--r-- | media-plugins/vdr-remote/vdr-remote-0.3.8.ebuild | 18 | ||||
-rw-r--r-- | media-plugins/vdr-remote/vdr-remote-0.3.9.ebuild | 16 | ||||
-rw-r--r-- | media-plugins/vdr-remote/vdr-remote-0.4.0-r2.ebuild | 7 | ||||
-rw-r--r-- | media-plugins/vdr-remote/vdr-remote-0.4.0.ebuild | 16 |
6 files changed, 12 insertions, 262 deletions
diff --git a/media-plugins/vdr-remote/ChangeLog b/media-plugins/vdr-remote/ChangeLog index 3e676dcb316b..20760b75728c 100644 --- a/media-plugins/vdr-remote/ChangeLog +++ b/media-plugins/vdr-remote/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-plugins/vdr-remote -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-remote/ChangeLog,v 1.23 2010/11/06 20:32:08 hd_brummy Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-remote/ChangeLog,v 1.24 2011/01/17 21:50:00 hd_brummy Exp $ + + 17 Jan 2011; Joerg Bornkessel <hd_brummy@gentoo.org> + -vdr-remote-0.3.8.ebuild, -files/vdr-remote-0.3.8-uint64.diff, + -vdr-remote-0.3.9.ebuild, -vdr-remote-0.4.0.ebuild, + vdr-remote-0.4.0-r2.ebuild: + cleanup, minor ebuild fixes, stable amd64 06 Nov 2010; Joerg Bornkessel <hd_brummy@gentoo.org> vdr-remote-0.4.0-r2.ebuild: diff --git a/media-plugins/vdr-remote/files/vdr-remote-0.3.8-uint64.diff b/media-plugins/vdr-remote/files/vdr-remote-0.3.8-uint64.diff deleted file mode 100644 index 2ccbc06040ea..000000000000 --- a/media-plugins/vdr-remote/files/vdr-remote-0.3.8-uint64.diff +++ /dev/null @@ -1,207 +0,0 @@ -diff -ru remote-0.3.8-orig/remote.c remote-0.3.8/remote.c ---- remote-0.3.8-orig/remote.c 2006-12-03 16:24:36.438027599 +0100 -+++ remote-0.3.8/remote.c 2006-12-03 16:26:19.222559030 +0100 -@@ -56,7 +56,7 @@ - - - // --------------------------------------------------------------------------- --bool cRemoteGeneric::Put(uint64 Code, bool Repeat, bool Release) -+bool cRemoteGeneric::Put(uint64_t Code, bool Repeat, bool Release) - // --------------------------------------------------------------------------- - { - return cRemote::Put(Code, Repeat, Release); -@@ -72,7 +72,7 @@ - #else - cTimeMs first, rate, timeout; - #endif -- uint64 code, lastcode = INVALID_KEY; -+ uint64_t code, lastcode = INVALID_KEY; - bool repeat = false; - - for (;;) -@@ -412,12 +412,12 @@ - - - // --------------------------------------------------------------------------- --uint64 cRemoteDevInput::getKey(void) -+uint64_t cRemoteDevInput::getKey(void) - // --------------------------------------------------------------------------- - { - struct input_event ev; - int n; -- uint64 code; -+ uint64_t code; - - do - n = read(fh, &ev, sizeof ev); -@@ -427,7 +427,7 @@ - { - if (ev.value) - ev.value = 1; -- code = ((uint64)ev.value << 32) | ((uint64)ev.type << 16) | (uint64)ev.code; -+ code = ((uint64_t)ev.value << 32) | ((uint64_t)ev.type << 16) | (uint64_t)ev.code; - } - else - code = INVALID_KEY; -@@ -443,7 +443,7 @@ - - - // --------------------------------------------------------------------------- --bool cRemoteDevInput::keyPressed(uint64 code) -+bool cRemoteDevInput::keyPressed(uint64_t code) - // --------------------------------------------------------------------------- - { - return (code & 0xFFFF00000000ULL); -@@ -455,7 +455,7 @@ - - #ifdef REMOTE_FEATURE_LIRCOLD - // --------------------------------------------------------------------------- --uint64 cRemoteDevLirc::getKey(void) -+uint64_t cRemoteDevLirc::getKey(void) - // --------------------------------------------------------------------------- - { - unsigned long code; -@@ -465,12 +465,12 @@ - if (n != sizeof code) - return INVALID_KEY; - else -- return (uint64)code; -+ return (uint64_t)code; - } - - - // --------------------------------------------------------------------------- --bool cRemoteDevLirc::keyPressed(uint64 code) -+bool cRemoteDevLirc::keyPressed(uint64_t code) - // --------------------------------------------------------------------------- - { - return (code & 0x80); -@@ -510,11 +510,11 @@ - - - // --------------------------------------------------------------------------- --uint64 cRemoteDevTty::getKey(void) -+uint64_t cRemoteDevTty::getKey(void) - // --------------------------------------------------------------------------- - { - int n; -- uint64 code = 0; -+ uint64_t code = 0; - - n = read(fh, &code, sizeof code); - return (n > 0) ? code : INVALID_KEY; -@@ -522,7 +522,7 @@ - - - // --------------------------------------------------------------------------- --bool cRemoteDevTty::keyPressed(uint64 code) -+bool cRemoteDevTty::keyPressed(uint64_t code) - // --------------------------------------------------------------------------- - { - return true; -@@ -530,7 +530,7 @@ - - - // --------------------------------------------------------------------------- --bool cRemoteDevTty::Put(uint64 Code, bool Repeat, bool Release) -+bool cRemoteDevTty::Put(uint64_t Code, bool Repeat, bool Release) - // --------------------------------------------------------------------------- - { - bool rc = cRemote::Put(Code, Repeat, Release); -diff -ru remote-0.3.8-orig/remote.h remote-0.3.8/remote.h ---- remote-0.3.8-orig/remote.h 2006-12-03 16:24:36.438027599 +0100 -+++ remote-0.3.8/remote.h 2006-12-03 16:27:08.510333521 +0100 -@@ -43,7 +43,7 @@ - /*****************************************************************************/ - { - protected: -- static const uint64 INVALID_KEY = (uint64) -1; -+ static const uint64_t INVALID_KEY = (uint64_t) -1; - int fh; - char *device; - int polldelay; -@@ -52,9 +52,9 @@ - int repeattimeout; - cRemoteGeneric(const char *name, int f, char *d); - virtual ~cRemoteGeneric(); -- virtual uint64 getKey(void) = 0; -- virtual bool keyPressed(uint64 code) = 0; -- virtual bool Put(uint64 Code, bool Repeat = false, bool Release = false); -+ virtual uint64_t getKey(void) = 0; -+ virtual bool keyPressed(uint64_t code) = 0; -+ virtual bool Put(uint64_t Code, bool Repeat = false, bool Release = false); - virtual void Action(void); - }; - -@@ -66,11 +66,11 @@ - { - private: - bool testMode; -- uint64 testKey; -+ uint64_t testKey; - bool loadKeymap(const char *devname, uint32_t options); - protected: -- virtual uint64 getKey(void); -- virtual bool keyPressed(uint64 code); -+ virtual uint64_t getKey(void); -+ virtual bool keyPressed(uint64_t code); - public: - cRemoteDevInput(const char *name, int f, char *d); - virtual bool Initialize(void); -@@ -84,8 +84,8 @@ - /*****************************************************************************/ - { - protected: -- virtual uint64 getKey(void); -- virtual bool keyPressed(uint64 code); -+ virtual uint64_t getKey(void); -+ virtual bool keyPressed(uint64_t code); - public: - cRemoteDevLirc(const char *name, int f, char *d) - :cRemoteGeneric(name, f, d) { Start(); } -@@ -101,9 +101,9 @@ - private: - struct termios tm; - protected: -- virtual uint64 getKey(void); -- virtual bool keyPressed(uint64 code); -- virtual bool Put(uint64 Code, bool Repeat = false, bool Release = false); -+ virtual uint64_t getKey(void); -+ virtual bool keyPressed(uint64_t code); -+ virtual bool Put(uint64_t Code, bool Repeat = false, bool Release = false); - public: - cRemoteDevTty(const char *name, int f, char *d); - virtual ~cRemoteDevTty(); -diff -ru remote-0.3.8-orig/remotetcp.c remote-0.3.8/remotetcp.c ---- remote-0.3.8-orig/remotetcp.c 2006-12-03 16:24:36.438027599 +0100 -+++ remote-0.3.8/remotetcp.c 2006-12-03 16:25:09.357882797 +0100 -@@ -36,7 +36,7 @@ - } - - --uint64 cTcpRemote::getKey(void) -+uint64_t cTcpRemote::getKey(void) - { - if (csock == NULL) - { -@@ -80,7 +80,7 @@ - } - - -- uint64 key = cRemoteDevTty::getKey(); -+ uint64_t key = cRemoteDevTty::getKey(); - - if (key == INVALID_KEY) - { -diff -ru remote-0.3.8-orig/remotetcp.h remote-0.3.8/remotetcp.h ---- remote-0.3.8-orig/remotetcp.h 2006-12-03 16:24:36.438027599 +0100 -+++ remote-0.3.8/remotetcp.h 2006-12-03 16:24:52.237797789 +0100 -@@ -25,7 +25,7 @@ - cSocket *csock; - - protected: -- virtual uint64 getKey(void); -+ virtual uint64_t getKey(void); - - public: - cTcpRemote(const char *name, int f, char *d); diff --git a/media-plugins/vdr-remote/vdr-remote-0.3.8.ebuild b/media-plugins/vdr-remote/vdr-remote-0.3.8.ebuild deleted file mode 100644 index e6e22a949c29..000000000000 --- a/media-plugins/vdr-remote/vdr-remote-0.3.8.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 2003-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-remote/vdr-remote-0.3.8.ebuild,v 1.6 2008/04/28 09:10:24 zzam Exp $ - -inherit vdr-plugin eutils - -DESCRIPTION="VDR Plugin: use various devices for controlling vdr (keyboards, lirc, remotes bundled with tv-cards)" -HOMEPAGE="http://www.escape-edv.de/endriss/vdr/" -SRC_URI="http://www.escape-edv.de/endriss/vdr/${P}.tgz" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~amd64 x86" -IUSE="" - -DEPEND=">=media-video/vdr-1.2.6" - -PATCHES=("${FILESDIR}/${P}-uint64.diff") diff --git a/media-plugins/vdr-remote/vdr-remote-0.3.9.ebuild b/media-plugins/vdr-remote/vdr-remote-0.3.9.ebuild deleted file mode 100644 index b32a656312fd..000000000000 --- a/media-plugins/vdr-remote/vdr-remote-0.3.9.ebuild +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright 2003-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-remote/vdr-remote-0.3.9.ebuild,v 1.3 2007/07/10 23:08:59 mr_bones_ Exp $ - -inherit vdr-plugin eutils - -DESCRIPTION="VDR Plugin: use various devices for controlling vdr (keyboards, lirc, remotes bundled with tv-cards)" -HOMEPAGE="http://www.escape-edv.de/endriss/vdr/" -SRC_URI="http://www.escape-edv.de/endriss/vdr/${P}.tgz" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~amd64 x86" -IUSE="" - -DEPEND=">=media-video/vdr-1.2.6" diff --git a/media-plugins/vdr-remote/vdr-remote-0.4.0-r2.ebuild b/media-plugins/vdr-remote/vdr-remote-0.4.0-r2.ebuild index 360cdd3f876f..4ca23975e2ae 100644 --- a/media-plugins/vdr-remote/vdr-remote-0.4.0-r2.ebuild +++ b/media-plugins/vdr-remote/vdr-remote-0.4.0-r2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-remote/vdr-remote-0.4.0-r2.ebuild,v 1.3 2010/11/06 20:32:08 hd_brummy Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-remote/vdr-remote-0.4.0-r2.ebuild,v 1.4 2011/01/17 21:50:00 hd_brummy Exp $ EAPI="2" @@ -12,10 +12,11 @@ SRC_URI="http://www.escape-edv.de/endriss/vdr/${P}.tgz" SLOT="0" LICENSE="GPL-2" -KEYWORDS="~amd64 x86" +KEYWORDS="amd64 x86" IUSE="" DEPEND=">=media-video/vdr-1.2.6" +RDEPEND="${DEPEND}" src_prepare() { diff --git a/media-plugins/vdr-remote/vdr-remote-0.4.0.ebuild b/media-plugins/vdr-remote/vdr-remote-0.4.0.ebuild deleted file mode 100644 index 78380f4f6bd5..000000000000 --- a/media-plugins/vdr-remote/vdr-remote-0.4.0.ebuild +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright 2003-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-remote/vdr-remote-0.4.0.ebuild,v 1.2 2008/04/28 11:03:23 zzam Exp $ - -inherit vdr-plugin eutils - -DESCRIPTION="VDR Plugin: use various devices for controlling vdr (keyboards, lirc, remotes bundled with tv-cards)" -HOMEPAGE="http://www.escape-edv.de/endriss/vdr/" -SRC_URI="http://www.escape-edv.de/endriss/vdr/${P}.tgz" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~amd64 x86" -IUSE="" - -DEPEND=">=media-video/vdr-1.2.6" |