diff options
Diffstat (limited to 'media-video/griffith/griffith-0.9_rc1.ebuild')
-rw-r--r-- | media-video/griffith/griffith-0.9_rc1.ebuild | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/media-video/griffith/griffith-0.9_rc1.ebuild b/media-video/griffith/griffith-0.9_rc1.ebuild new file mode 100644 index 000000000000..f4645ed35fa6 --- /dev/null +++ b/media-video/griffith/griffith-0.9_rc1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/griffith/griffith-0.9_rc1.ebuild,v 1.1 2006/12/29 20:55:49 dev-zero Exp $ + +inherit python + +ARTWORK_PV=0.6.2 + +DESCRIPTION="Movie collection manager" +HOMEPAGE="http://griffith.vasconunes.net/" +SRC_URI="http://download.berlios.de/griffith/${P/_/-}.tar.gz + http://download.berlios.de/griffith/${PN}-extra-artwork-${ARTWORK_PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="doc spell" + +RDEPEND="dev-python/imaging + >=dev-python/pygtk-2.6.1 + >=dev-python/pysqlite-2.0 + >=dev-python/sqlalchemy-0.3 + >=dev-python/reportlab-1.19 + spell? ( >=dev-python/gnome-python-extras-2.0 )" +DEPEND="${RDEPEND} + doc? ( app-text/docbook2X )" + +# No, this is not a joke! they really name the directory "griffith-0.9~rc1" +S="${WORKDIR}/${P/_/~}" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i \ + -e 's/docbook2x-man/docbook2man.pl/' \ + -e 's#/pl/#/pl.UTF-8/#' \ + docs/*/Makefile || die "sed failed" + sed -i \ + -e 's/latin1/iso-8859-1/' \ + docs/en/*.xml || die "sed failed" +} + +src_compile() { + # Nothing to compile and default `emake` spews an error message + true +} + +src_install() { + use doc || sed -i -e '/docs/d' Makefile + + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog README TODO NEWS TRANSLATORS + + cd "${WORKDIR}/${PN}-extra-artwork-${ARTWORK_PV}/" + emake DESTDIR="${D}" install || die "emake install artwork failed" +} + +pkg_postinst() { + python_mod_optimize ${ROOT}usr/share/${PN}/lib +} + +pkg_postrm() { + python_mod_cleanup ${ROOT}usr/share/${PN}/lib +} |