blob: bad3d47c10c489afec4e9daa7e2cc81e0c3c9ba2 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
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="~x86 ~amd64"
IUSE=""
DEPEND=""
RDEPEND=${DEPEND}
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
}
|