# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="DVD Video Creator" HOMEPAGE="http://www.rastersoft.com/programas/devede.html" SRC_URI="http://www.rastersoft.com/descargas/${PN}${PV/\.}.tar.bz2" LICENSE="GPL" SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="nls doc" RDEPEND=">=x11-libs/gtk+-2.4 >=dev-lang/python-2.4 dev-util/glade dev-python/pygtk media-video/mplayer media-video/dvdauthor media-video/vcdimager app-cdr/cdrtools" DEPEND="${RDEPEND}" S=${WORKDIR}/${PN} src_install() { newbin ${S}/devede.py devede if use nls; then insinto /usr/share/locale/es/LC_MESSAGES newins ${S}/po/es.mo devede.mo insinto /usr/share/locale/gl/LC_MESSAGES newins ${S}/po/gl.mo devede.mo fi insinto /usr/share/applications doins ${S}/${PN}.desktop insinto /usr/share/pixmaps doins ${S}/${PN}.png insinto /usr/share/${PN} doins ${S}/${PN}.glade insinto /usr/share/${PN} doins ${S}/pixmaps/* if use doc; then insinto /usr/share/doc/${P}/html dohtml ${S}/docs/* fi }