blob: b14e84a629c553b8011b15878b83bdb6628080db (
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
87
88
89
90
91
92
93
94
95
96
97
98
99
|
# 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.5 2005/05/28 01:14:07 flameeyes Exp $
inherit eutils libtool flag-o-matic
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="~x86 ~amd64"
IUSE="nls"
#>=media-libs/divx4linux-20020418
RDEPEND="gnome-base/gnome-libs
>=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}
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
einfo "Rerunnig autoconf/automake..."
cd ${S} ; rm -f ${S}/missing
export WANT_AUTOMAKE=1.5
aclocal -I macros
automake --add-missing
autoconf
libtoolize --copy --force
}
src_compile() {
local myconf=
use nls || myconf="${myconf} --disable-nls"
use x86 && append-flags "-DARCH_X86"
econf ${myconf} || die
make || 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
insinto /usr/share/applnk/Multimedia
doins ${FILESDIR}/drip.desktop
dodoc AUTHORS BUG-REPORT.TXT COPYING ChangeLog NEWS README TODO
}
|