# Copyright 1999-2005 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="Data-protection and recovery tool for DVDs" HOMEPAGE="http://dvdisaster.berlios.de/" LICENSE="GPL-2" DEPEND=">=dev-libs/glib-2 nls? ( sys-devel/gettext )" IUSE="nls" SLOT="0" KEYWORDS="x86 ~amd64" SRC_URI="http://download.berlios.de/dvdisaster/${P}.tar.bz2" RESTRICT="nomirror" src_unpack() { unpack ${A} # This patch let dvdisaster work with DVD-ROM booktype discs cd ${S} epatch ${FILESDIR}/dvd-rom-${PV}.patch } src_compile() { local myconf use nls && myconf="${myconf} --with-nls=yes --localedir=/usr/share/locale --docdir=/usr/share/doc" econf ${myconf} || die emake || die } src_install() { make install \ BINDIR=${D}/usr/bin \ DOCSUBDIR=${D}/usr/share/doc/${P} \ MANDIR=${D}/usr/share/man \ LOCALEDIR=${D}/usr/share/locale \ || die dodoc DRIVE-NOTES README TRANSLATION.HOWTO }