diff options
Diffstat (limited to 'media-video/dvdrip/dvdrip-0.50.17.ebuild')
-rw-r--r-- | media-video/dvdrip/dvdrip-0.50.17.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/media-video/dvdrip/dvdrip-0.50.17.ebuild b/media-video/dvdrip/dvdrip-0.50.17.ebuild new file mode 100644 index 000000000000..0fa9415125b8 --- /dev/null +++ b/media-video/dvdrip/dvdrip-0.50.17.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/dvdrip/dvdrip-0.50.17.ebuild,v 1.1 2004/04/10 16:18:08 mholzer Exp $ + +inherit perl-module + +MY_P=${P/dvdr/Video-DVDR} +# Next three lines are to handle PRE versions +MY_P=${MY_P/_pre/_} +MY_URL="dist" +[ "${P/pre}" != "${P}" ] && MY_URL="dist/pre" + +S=${WORKDIR}/${MY_P} +DESCRIPTION="dvd::rip is a graphical frontend for transcode" +HOMEPAGE="http://www.exit1.org/dvdrip/" +SRC_URI="http://www.exit1.org/${PN}/${MY_URL}/${MY_P}.tar.gz" + +LICENSE="Artistic GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~amd64" +IUSE="cdr gnome" + +DEPEND=" gnome? ( gnome-extra/gtkhtml ) + cdr? ( >=media-video/vcdimager-0.7.19 + >=app-cdr/cdrdao-1.1.7 + >=app-cdr/cdrtools-2.0 ) + >=media-video/transcode-0.6.10 + >=media-gfx/imagemagick-5.5.7 + sys-apps/procps + dev-perl/gtk-perl + dev-perl/Storable + dev-perl/Event" +RDEPEND="${DEPEND} + >=net-analyzer/fping-2.3 + >=media-sound/ogmtools-0.972 + >=media-video/mjpegtools-1.6.0 + sys-apps/eject" + +src_install () { + perl-module_src_install +} + +pkg_postinst () { + einfo "If you want to use the cluster-mode, you need to SUID fping" + einfo "chmod u+s /usr/sbin/fping" + einfo + einfo "for Perl 5.8.x you have to set PERLIO to read TOC properly" + einfo "for bash: export PERLIO=stdio" + einfo "for csh: setenv PERLIO stdio" + einfo "into your /.${shell}rc" +} |