blob: 6a10c08224e61e1dab8fc40cca945c06ec7eb9bd (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="4"
inherit eutils
DESCRIPTION="eHD PCI card: headers svn r${PN}"
HOMEPAGE="http://www.reel-multimedia.com"
SRC_URI="http://vdr.websitec.de/download/${PN}/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}
>=media-video/vdr-1.7.12"
S=${WORKDIR}
src_prepare() {
sed -e "s:\#include \"../driver/:\#include \":" \
-i "${S}"/bspshm/include/bspshmlib.h \
-i "${S}"/hdshm3/src/include/hdshmlib.h
}
src_install() {
insinto /usr/include
doins "${S}"/bspshm/include/*.h
doins "${S}"/bspshm/driver/*.h
doins "${S}"/hdshm3/src/include/*.h
doins "${S}"/hdshm3/src/driver/*.h
doins "${S}"/vdr-reelbox-3/*.h
insinto /usr/include/vdr
doins "${WORKDIR}"/vdr-1.4/*
doins "${FILESDIR}"/Make.common
}
|