diff options
author | Joerg Bornkessel <hd_brummy@gentoo.org> | 2019-12-11 20:48:44 +0100 |
---|---|---|
committer | Joerg Bornkessel <hd_brummy@gentoo.org> | 2019-12-11 20:50:15 +0100 |
commit | 24b4b5f2e6e5a748ea45ac666dfbfbd27c8e7283 (patch) | |
tree | 31ca2de9b1e4724f6e91788b650256a25021c268 /media-plugins/vdr-radio/vdr-radio-0.9.1.ebuild | |
parent | app-xemacs/ebuild-mode: Version bump to 1.48. (diff) | |
download | gentoo-24b4b5f2e6e5a748ea45ac666dfbfbd27c8e7283.tar.gz gentoo-24b4b5f2e6e5a748ea45ac666dfbfbd27c8e7283.tar.bz2 gentoo-24b4b5f2e6e5a748ea45ac666dfbfbd27c8e7283.zip |
media-plugins/vdr-radio: install into paths t should be created at rntime
fixed installs into paths that should be created at runtime
now it will be created at start
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Joerg Bornkessel <hd_brummy@gentoo.org>
Diffstat (limited to 'media-plugins/vdr-radio/vdr-radio-0.9.1.ebuild')
-rw-r--r-- | media-plugins/vdr-radio/vdr-radio-0.9.1.ebuild | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/media-plugins/vdr-radio/vdr-radio-0.9.1.ebuild b/media-plugins/vdr-radio/vdr-radio-0.9.1.ebuild index 1ea94e5f574e..b91b2138f6d9 100644 --- a/media-plugins/vdr-radio/vdr-radio-0.9.1.ebuild +++ b/media-plugins/vdr-radio/vdr-radio-0.9.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -14,15 +14,15 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -RDEPEND=">=media-video/vdr-1.7.34" +RDEPEND="media-video/vdr" DEPEND="${RDEPEND}" -VDR_RCADDON_FILE="${FILESDIR}/rc-addon.sh-0.2.0" +VDR_RCADDON_FILE="${FILESDIR}/rc-addon.sh" src_install() { vdr-plugin-2_src_install - cd "${S}"/config + cd "${S}"/config || die "Can't enter source folder" insinto /usr/share/vdr/radio doins mpegstill/rtext* @@ -31,7 +31,4 @@ src_install() { exeinto /usr/share/vdr/radio doexe scripts/radioinfo* - - diropts -m 755 -o vdr -g vdr - keepdir "/var/cache/vdr-radio" } |