diff options
Diffstat (limited to 'media-video/lsdvd/lsdvd-0.9.ebuild')
-rw-r--r-- | media-video/lsdvd/lsdvd-0.9.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/media-video/lsdvd/lsdvd-0.9.ebuild b/media-video/lsdvd/lsdvd-0.9.ebuild new file mode 100644 index 000000000000..4148d4c92a65 --- /dev/null +++ b/media-video/lsdvd/lsdvd-0.9.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/lsdvd/lsdvd-0.9.ebuild,v 1.1 2003/07/30 12:36:39 mcummings Exp $ + +DESCRIPTION="Utility for getting info out of DVDs" +HOMEPAGE="http://acidrip.thirtythreeandathird.net" +SRC_URI="mirror://sourceforge/acidrip/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~ppc ~x86" +IUSE="" + +# Build-time dependencies, such as +# ssl? ( >=openssl-0.9.6b ) +# >=perl-5.6.1-r1 +# It is advisable to use the >= syntax show above, to reflect what you +# had installed on your system when you tested the package. Then +# other users hopefully won't be caught without the right version of +# a dependency. +DEPEND="=libdvdread-0.9*" + +src_compile() { + econf + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + dodoc AUTHORS NEWS README +} |