30 lines
859 B
Bash
30 lines
859 B
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-devstatus/vdr-devstatus-0.4.1.ebuild,v 1.5 2014/08/10 21:06:13 slyfox Exp $
|
|
|
|
EAPI="5"
|
|
|
|
inherit vdr-plugin-2
|
|
|
|
DESCRIPTION="VDR plugin: display the usa status of the available DVB devices"
|
|
HOMEPAGE="http://www.u32.de/vdr.html"
|
|
SRC_URI="http://www.u32.de/download/${P}.tgz"
|
|
|
|
SLOT="0"
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="~x86 ~amd64"
|
|
IUSE=""
|
|
|
|
DEPEND=">=media-video/vdr-1.6.0"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_prepare() {
|
|
# remove untranslated .po files
|
|
rm "${S}"/po/{ca_ES,cs_CZ,da_DK,el_GR,et_EE,hr_HR,hu_HU,nl_NL,nn_NO,pl_PL,pt_PT,ro_RO,sl_SI,sv_SE,tr_TR}.po
|
|
|
|
vdr-plugin-2_src_prepare
|
|
|
|
if has_version ">=media-video/vdr-1.7.28"; then
|
|
sed -i "s:SetRecording(\([^,]*\),[^)]*)):SetRecording(\1\):" devstatus.c
|
|
fi
|
|
}
|