You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
788 B
38 lines
788 B
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="5"
|
|
|
|
inherit vdr-plugin-2
|
|
|
|
DESCRIPTION="VDR Plugin: presents a favourites channels menu"
|
|
HOMEPAGE="http://www.olivierjacques.com/vdr/prefermenu/"
|
|
SRC_URI="http://famillejacques.free.fr/vdr/prefermenu/vdr-${VDRPLUGIN}-${PV}.tgz"
|
|
|
|
SLOT="0"
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND=">=media-video/vdr-2.0"
|
|
|
|
PATCHES=("${FILESDIR}/${P}-no-static-getfont.diff")
|
|
|
|
src_prepare() {
|
|
cp "${FILESDIR}/${VDRPLUGIN}.mk" Makefile
|
|
|
|
vdr-plugin-2_src_prepare
|
|
|
|
sed -e "s:RegisterI18n://RegisterI18n:" -i prefermenu.c
|
|
}
|
|
|
|
src_install() {
|
|
vdr-plugin-2_src_install
|
|
|
|
touch prefermenu.conf
|
|
|
|
insopts -m0644 -gvdr -ovdr
|
|
insinto /etc/vdr/plugins/prefermenu
|
|
doins prefermenu.conf
|
|
}
|