diff options
author | Alexis Ballier <aballier@gentoo.org> | 2007-06-01 19:50:34 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2007-06-01 19:50:34 +0000 |
commit | e5758007ab27dc57ae642275a398e201c5c0f6e3 (patch) | |
tree | 51c32df283a9a3475a365d21a9783d1aa8293a23 /media-video/lxdvdrip/lxdvdrip-1.70.ebuild | |
parent | Change inherit order to get right description and not from eutils.eclass, bug... (diff) | |
download | gentoo-2-e5758007ab27dc57ae642275a398e201c5c0f6e3.tar.gz gentoo-2-e5758007ab27dc57ae642275a398e201c5c0f6e3.tar.bz2 gentoo-2-e5758007ab27dc57ae642275a398e201c5c0f6e3.zip |
Version bump, bug #180396
(Portage version: 2.1.2.9)
Diffstat (limited to 'media-video/lxdvdrip/lxdvdrip-1.70.ebuild')
-rw-r--r-- | media-video/lxdvdrip/lxdvdrip-1.70.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/media-video/lxdvdrip/lxdvdrip-1.70.ebuild b/media-video/lxdvdrip/lxdvdrip-1.70.ebuild new file mode 100644 index 000000000000..1cf7f96ffda9 --- /dev/null +++ b/media-video/lxdvdrip/lxdvdrip-1.70.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/lxdvdrip/lxdvdrip-1.70.ebuild,v 1.1 2007/06/01 19:50:34 aballier Exp $ + +inherit eutils toolchain-funcs + +DESCRIPTION="command line tool to automate the process of ripping and burning DVD" +SRC_URI="http://download.berlios.de/lxdvdrip/${P}.tgz" +HOMEPAGE="http://developer.berlios.de/projects/lxdvdrip/" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64 ~ppc" +IUSE="" + +DEPEND="media-libs/libdvdread + media-libs/libdvdnav" +RDEPEND="${DEPEND} + >=media-video/dvdauthor-0.6.9 + media-video/streamdvd + media-video/mpgtx" + +S="${WORKDIR}/${PN}" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${P}-makefile.patch" + epatch "${FILESDIR}/${P}-vamps-makefile.patch" +} + +src_compile() { + CC=$(tc-getCC) emake || die "emake failed" + cd "${S}/vamps" + emake CC=$(tc-getCC) || die "emake lxdvdip vamps failed" +} + +src_install () { + dobin lxdvdrip + dobin lxac3scan + dodoc doc-pak/Changelog* doc-pak/Credits doc-pak/Debugging.* + dodoc doc-pak/lxdvdrip.conf* doc-pak/README* doc-pak/TODO + doman lxdvdrip.1 + + insinto /usr/share + doins lxdvdrip.wav + + insinto /etc + newins doc-pak/lxdvdrip.conf.EN lxdvdrip.conf + + cd "${S}/vamps" + emake PREFIX="${D}/usr" install || die "make install failed for vamps!" +} |