summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2009-07-02 23:05:38 +0300
committerMarkos Chandras <hwoarang@gentoo.org>2009-07-02 23:05:38 +0300
commitee8eb179e6c2274fab8cabda663069134b3e4c2a (patch)
tree0c72f12ec1ecfe2596ba204ddfd32924a183d482
parentlastfmlib: Disable tests, gejngel: Initial commit bug 275927, create (diff)
downloadhwoarang-ee8eb179e6c2274fab8cabda663069134b3e4c2a.tar.gz
hwoarang-ee8eb179e6c2274fab8cabda663069134b3e4c2a.tar.bz2
hwoarang-ee8eb179e6c2274fab8cabda663069134b3e4c2a.zip
On tree
-rw-r--r--media-video/griffith/griffith-0.10_beta3.ebuild68
1 files changed, 0 insertions, 68 deletions
diff --git a/media-video/griffith/griffith-0.10_beta3.ebuild b/media-video/griffith/griffith-0.10_beta3.ebuild
deleted file mode 100644
index 090707d..0000000
--- a/media-video/griffith/griffith-0.10_beta3.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/griffith/griffith-0.9.10.ebuild,v 1.1 2009/06/08 13:46:02 hwoarang Exp $
-
-EAPI="2"
-
-inherit eutils python multilib
-
-ARTWORK_PV="0.9.4"
-
-DESCRIPTION="Movie collection manager"
-HOMEPAGE="http://griffith.berlios.de/"
-SRC_URI="mirror://berlios/griffith/${P/_/-}.tar.gz
- mirror://berlios/griffith/${PN}-extra-artwork-${ARTWORK_PV}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-fbsd"
-IUSE="csv doc spell"
-
-RDEPEND="dev-python/imaging
- dev-util/glade:3
- dev-python/pyxml
- >=dev-python/pygtk-2.6.1
- dev-python/pysqlite:2
- >=dev-python/sqlalchemy-0.5.2
- >=dev-python/reportlab-1.19
- csv? ( dev-python/chardet )
- spell? ( >=dev-python/gnome-python-extras-2.0 )"
-DEPEND="${RDEPEND}
- doc? ( app-text/docbook2X )"
-
-S="${WORKDIR}"/"${P/_/-}"
-src_prepare() {
- sed -i \
- -e 's#/pl/#/pl.UTF-8/#' \
- "${S}"/docs/pl/Makefile || die "sed failed"
-
- sed -i \
- -e 's/ISO-8859-1/UTF-8/' \
- "${S}"/lib/gconsole.py || die "sed failed"
- epatch "${FILESDIR}"/fix_lib_path.patch
-}
-
-src_compile() {
- # Nothing to compile and default `emake` spews an error message
- true
-}
-
-src_install() {
- use doc || sed -i -e '/docs/d' Makefile
-
- python_version
- emake \
- LIBDIR="${D}/usr/$(get_libdir)/griffith" \
- DESTDIR="${D}" DOC2MAN=docbook2man.pl install || die "emake install failed"
- dodoc AUTHORS ChangeLog README THANKS TODO NEWS TRANSLATORS
-
- cd "${WORKDIR}/${PN}-extra-artwork-${ARTWORK_PV}/"
- emake DESTDIR="${D}" install || die "emake install artwork failed"
-}
-
-pkg_postinst() {
- python_mod_optimize /usr/$(get_libdir)/${PN}
-}
-
-pkg_postrm() {
- python_mod_cleanup /usr/$(get_libdir)/${PN}
-}