blob: d666c39d60823d4e8cb24f7ecf8b613dbd4bdec4 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/vdrtools-genindex/vdrtools-genindex-0.1.3-r1.ebuild,v 1.2 2011/11/27 18:44:27 hd_brummy Exp $
EAPI="4"
inherit eutils
SCRIPT="genindex"
DESCRIPTION="VDR: genindex Script"
HOMEPAGE="http://www.cadsoft.de/vdr/"
SRC_URI="http://www.muempf.de/down/${SCRIPT}-${PV}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=""
S=${WORKDIR}/${SCRIPT}-${PV}
src_prepare() {
epatch "${FILESDIR}"/ldflags.diff
}
src_install() {
dodoc README
dobin genindex
}
|