diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /media-plugins/vdr-radio | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'media-plugins/vdr-radio')
-rw-r--r-- | media-plugins/vdr-radio/Manifest | 2 | ||||
-rw-r--r-- | media-plugins/vdr-radio/files/rc-addon.sh | 14 | ||||
-rw-r--r-- | media-plugins/vdr-radio/files/rc-addon.sh-0.2.0 | 16 | ||||
-rw-r--r-- | media-plugins/vdr-radio/metadata.xml | 13 | ||||
-rw-r--r-- | media-plugins/vdr-radio/vdr-radio-0.9.0.ebuild | 38 | ||||
-rw-r--r-- | media-plugins/vdr-radio/vdr-radio-0.9.1.ebuild | 38 |
6 files changed, 121 insertions, 0 deletions
diff --git a/media-plugins/vdr-radio/Manifest b/media-plugins/vdr-radio/Manifest new file mode 100644 index 000000000000..e44aca1bb92d --- /dev/null +++ b/media-plugins/vdr-radio/Manifest @@ -0,0 +1,2 @@ +DIST vdr-radio-0.9.0.tgz 354038 SHA256 05cb1c16b4aa24e2958680889ac5c38caa71f2a2c878fa447b65953252bf5ca8 +DIST vdr-radio-0.9.1.tgz 353414 SHA256 9b446ac3b3004749bc2e3e4d502c049c285215909aff5cf575773c1eb41395bb SHA512 81ab0d92ee390eecbbce73bc035714dda6157dc1f0781b6f8765603f65707e1711af64a48168923e2a78b77e0d869471fa313656d517cba27a3104e483085f43 WHIRLPOOL ce7a2369b54435d5c7f4ba7420b871acd36780974bd0d3aaf3ceba82dbda9065b9cd10959b6bdd90acef64c71a375a2fea771af81f0d82457a9272938ea11667 diff --git a/media-plugins/vdr-radio/files/rc-addon.sh b/media-plugins/vdr-radio/files/rc-addon.sh new file mode 100644 index 000000000000..30e76f8b93c4 --- /dev/null +++ b/media-plugins/vdr-radio/files/rc-addon.sh @@ -0,0 +1,14 @@ +# $Id$ +# +# rc-addon plugin-startup-skript for vdr-radio +# +# This sript is called by gentoo-vdr-scripts on start of VDR + +# Set default DIR to the background picture +RADIO_BACKGROUND_DIR=/usr/share/vdr/radio + +plugin_pre_vdr_start() { + + add_plugin_param "-f ${RADIO_BACKGROUND_DIR}" + +} diff --git a/media-plugins/vdr-radio/files/rc-addon.sh-0.2.0 b/media-plugins/vdr-radio/files/rc-addon.sh-0.2.0 new file mode 100644 index 000000000000..bf45b0319a5e --- /dev/null +++ b/media-plugins/vdr-radio/files/rc-addon.sh-0.2.0 @@ -0,0 +1,16 @@ +# $Id$ +# +# rc-addon plugin-startup-skript for vdr-radio +# +# This sript is called by gentoo-vdr-scripts on start of VDR + +# Set default DIR to the background picture +RADIO_BACKGROUND_DIR=/usr/share/vdr/radio +RADIO_TMP_DIR=/var/cache/vdr-radio + +plugin_pre_vdr_start() { + + add_plugin_param "-f ${RADIO_BACKGROUND_DIR}" + add_plugin_param "-d ${RADIO_TMP_DIR}" + +} diff --git a/media-plugins/vdr-radio/metadata.xml b/media-plugins/vdr-radio/metadata.xml new file mode 100644 index 000000000000..c6c589a5443d --- /dev/null +++ b/media-plugins/vdr-radio/metadata.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>media-tv</herd> + <maintainer> + <email>vdr@gentoo.org</email> + <name>Gentoo VDR Project</name> + </maintainer> + <longdescription> + This Plugin display a background image while the vdr is switcht to radio channels. + Also it supports RDS on radio channels. + </longdescription> +</pkgmetadata> diff --git a/media-plugins/vdr-radio/vdr-radio-0.9.0.ebuild b/media-plugins/vdr-radio/vdr-radio-0.9.0.ebuild new file mode 100644 index 000000000000..ae670355e091 --- /dev/null +++ b/media-plugins/vdr-radio/vdr-radio-0.9.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="4" + +inherit vdr-plugin-2 + +DESCRIPTION="VDR plugin: show background image for radio and decode RDS Text" +HOMEPAGE="http://www.vdr-portal.de/board/thread.php?threadid=58795" +SRC_URI="http://www.egal-vdr.de/plugins/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=media-video/vdr-1.6.0" +DEPEND="${RDEPEND}" + +VDR_RCADDON_FILE="${FILESDIR}/rc-addon.sh-0.2.0" + +src_install() { + vdr-plugin-2_src_install + + cd "${S}"/config + + insinto /usr/share/vdr/radio + doins mpegstill/rtext* + dosym rtextOben-kleo2-live.mpg /usr/share/vdr/radio/radio.mpg + dosym rtextOben-kleo2-replay.mpg /usr/share/vdr/radio/replay.mpg + + exeinto /usr/share/vdr/radio + doexe scripts/radioinfo* + + diropts -m 755 -o vdr -g vdr + keepdir "/var/cache/vdr-radio" +} diff --git a/media-plugins/vdr-radio/vdr-radio-0.9.1.ebuild b/media-plugins/vdr-radio/vdr-radio-0.9.1.ebuild new file mode 100644 index 000000000000..20aac821b0d0 --- /dev/null +++ b/media-plugins/vdr-radio/vdr-radio-0.9.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="4" + +inherit vdr-plugin-2 + +DESCRIPTION="VDR plugin: show background image for radio and decode RDS Text" +HOMEPAGE="http://www.vdr-portal.de/board/thread.php?threadid=58795" +SRC_URI="http://www.egal-vdr.de/plugins/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=media-video/vdr-1.7.34" +DEPEND="${RDEPEND}" + +VDR_RCADDON_FILE="${FILESDIR}/rc-addon.sh-0.2.0" + +src_install() { + vdr-plugin-2_src_install + + cd "${S}"/config + + insinto /usr/share/vdr/radio + doins mpegstill/rtext* + dosym rtextOben-kleo2-live.mpg /usr/share/vdr/radio/radio.mpg + dosym rtextOben-kleo2-replay.mpg /usr/share/vdr/radio/replay.mpg + + exeinto /usr/share/vdr/radio + doexe scripts/radioinfo* + + diropts -m 755 -o vdr -g vdr + keepdir "/var/cache/vdr-radio" +} |