summaryrefslogtreecommitdiff
blob: f78296ed7156d1fd37936e748e498d473ae4d9f7 (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-2003 Gentoo Technologies, Inc. 
# Distributed under the terms of the GNU General Public License v2 

inherit eutils 

MY_PV="$(echo ${PV} | cut -d. -f1,2)" 
S="${WORKDIR}/${PN}" 
DESCRIPTION="Basic DVD ripper written in Python and PyQT." 
SRC_URI="http://www.tomchance.uklinux.net/projects/${P}.tar.gz"
HOMEPAGE="http://www.tomchance.uklinux.net/projects/quickrip.shtml" 

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

DEPEND="virtual/glibc 
	>=dev-lang/python-2.2 
	>=x11-libs/qt-3.1 
	>=dev-python/PyQt-3.5 
	media-video/mplayer 
	media-video/transcode" 

src_install() { 
	exeinto /usr/share/quickrip 
	doexe *.py *.ui

	dodoc README LICENSE
	dodir /usr/bin
	dosym /usr/share/quickrip/quickrip.py /usr/bin/quickrip 
}