blob: 4f842432eac4c92eb50fbed97e77612452e6340d (
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
27
|
# 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.4.0.ebuild,v 1.3 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="x86 ~amd64"
IUSE=""
DEPEND=">=media-video/vdr-1.3.8
>=net-libs/c-client-2002e-r1"
src_unpack() {
vdr-plugin_src_unpack
cd "${S}"
epatch "${FILESDIR}/${P}_vdr-1.5.3.diff"
sed -i Makefile -e "s:^#CXXFLAGS +=:CXXFLAGS +=:"
}
|