blob: 9c560f3817ee077e19b9bca2e8f800fe2e1e50f2 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/drip/drip-0.9.0.ebuild,v 1.8 2005/10/30 19:05:30 flameeyes Exp $
inherit eutils libtool flag-o-matic autotools
DESCRIPTION="A DVD to DIVX convertor frontend"
HOMEPAGE="http://drip.sourceforge.net/"
SRC_URI="http://drip.sourceforge.net/files/${P}.tar.gz
mirror://debian/pool/main/d/drip/drip_0.8.3.2+0.9.0-rc3-5.diff.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="nls"
RDEPEND="gnome-base/gnome-libs
!ppc? ( >=media-video/avifile-0.7.34 )
>=media-libs/a52dec-0.7.3
>=media-libs/libdvdcss-1.2.2
>=media-libs/libdvdread-0.9.3
>=media-libs/libmpeg2-0.4.0
>=media-libs/xvid-0.9.2
media-gfx/imagemagick
media-libs/gdk-pixbuf
dev-libs/libxml2
virtual/eject
>=sys-devel/gcc-3"
DEPEND="${RDEPEND}
!ppc? ( dev-lang/nasm )
>=sys-devel/automake-1.5-r1"
src_unpack() {
unpack ${A}
cd ${S}
# Many thanks to the Debian devs. Fixes libmpeg2-0.4.0 support.
epatch ${WORKDIR}/drip_0.8.3.2+0.9.0-rc3-5.diff
epatch ${S}/drip-0.8.3.2+0.9.0-rc3/debian/patches/magickfilter_ftbfs.diff
epatch ${S}/drip-0.8.3.2+0.9.0-rc3/debian/patches/mpeg2_api.diff
epatch ${S}/drip-0.8.3.2+0.9.0-rc3/debian/patches/noopt.diff
# Fix the problem that if the /dev/dvd symlink is not absolute,
# drip fails to start. We do this by tring to figure what the
# absolute path to the block device of a dvd drive is with help
# from the dripgetdvd.sh script.
# <azarah@gentoo.org>
epatch ${FILESDIR}/${PN}-0.8.1-fix-dvd-symlink.patch
# Honor user CFLAGS
epatch ${FILESDIR}/${P}-cflags.patch
# enable gcc3.4.x compilation
epatch ${FILESDIR}/${P}-gcc34.patch
# Remove stale script ... "automake --add-missing" will add it again
export WANT_AUTOMAKE=1.5
AT_M4DIR="macros" eautoreconf
}
src_compile() {
use x86 && append-flags "-DARCH_X86"
econf $(use_enable nls) || die
emake || die
}
src_install() {
einstall \
drip_helpdir=${D}/usr/share/gnome/help/drip/C \
drip_pixmapdir=${D}/usr/share/pixmaps \
pixdir=${D}/usr/share/pixmaps/drip \
|| die
# Custom script for drip to get the *real* dvd device
# It is a bit rough around the edges, but hopefully will do the trick.
dobin ${FILESDIR}/dripgetdvd.sh
insinto /usr/share/pixmaps
newins ${S}/pixmaps/drip_logo.jpg drip.jpg
insinto /usr/share/applications
doins ${FILESDIR}/drip.desktop
dodoc AUTHORS BUG-REPORT.TXT ChangeLog NEWS README TODO
}
|