blob: cbb5777ddc2c6ce02e7685cd24b9af47a503ae39 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/subtitleripper/subtitleripper-0.3.4.ebuild,v 1.2 2005/04/08 16:18:07 trapni Exp $
DESCRIPTION="DVD Subtitle Ripper for Linux"
HOMEPAGE="http://subtitleripper.sourceforge.net/"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64"
SRC_URI="mirror://sourceforge/subtitleripper/subtitleripper-0.3-4.tgz"
SLOT="0"
IUSE=""
DEPEND="media-libs/netpbm
media-libs/libpng
sys-libs/zlib"
S="${WORKDIR}/subtitleripper"
src_compile() {
sed -i -e "s:ppm:netpbm:g" Makefile
emake || die
}
src_install () {
exeinto /usr/bin
doexe pgm2txt srttool subtitle2pgm subtitle2vobsub vobsub2pgm
dodoc ChangeLog README*
}
|