summaryrefslogtreecommitdiff
blob: f26f24bf5dae352b3884803f58e55cf8f6d7b7c0 (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
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI="4"

inherit autotools

MY_PN=dvdrtools
DESCRIPTION="Tool to generate files VIDEO_TS/VIDEO_TS.{BUP,IFO} where missing"
HOMEPAGE="https://savannah.nongnu.org/projects/dvdrtools/"
SRC_URI="http://web.cvs.savannah.gnu.org/viewvc/*checkout*/${MY_PN}/files/${MY_PN}_${PV}.tar.gz?root=${MY_PN} -> ${MY_PN}_${PV}.tar.gz
	http://www.hartwork.org/public/${MY_PN}_${PV}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND=""
RDEPEND="!<media-video/dvdrtools-0.1.5"

S="${WORKDIR}"/${MY_PN}

src_prepare() {
	eautoreconf
}

src_compile() {
	emake -C video tocgen || die
}

src_install() {
	dobin video/tocgen || die
}