blob: 5045fcbbfe438b5435b241d0f30c8baee9371d8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-mailbox/vdr-mailbox-0.5.0.ebuild,v 1.2 2007/10/22 12:30:58 zzam Exp $
inherit vdr-plugin
DESCRIPTION="VDR plugin: MailBox"
HOMEPAGE="http://sites.inka.de/seca/vdr"
SRC_URI="http://sites.inka.de/seca/vdr/download/${P}.tgz
mirror://vdrfiles/${PN}/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=media-video/vdr-1.3.8
>=net-libs/c-client-2002e-r1"
src_unpack() {
vdr-plugin_src_unpack
cd "${S}"
# enable additional flags needed for c-client
sed -i Makefile -e "s:^#CXXFLAGS +=:CXXFLAGS +=:"
}
|