You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-misc/hachoir-metadata/hachoir-metadata-1.3.3-r1.e...

70 lines
1.6 KiB

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Program to extract metadata using Hachoir library"
HOMEPAGE="https://bitbucket.org/haypo/hachoir/wiki/hachoir-metadata https://pypi.python.org/pypi/hachoir-metadata"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="gnome gtk kde qt4"
RDEPEND="
>=dev-python/hachoir-core-1.3[${PYTHON_USEDEP}]
>=dev-python/hachoir-parser-1.3[${PYTHON_USEDEP}]
gtk? ( >=dev-python/pygtk-2.0[${PYTHON_USEDEP}] )
gnome? ( gnome-base/nautilus gnome-extra/zenity )
kde? ( kde-apps/konqueror )
qt4? ( dev-python/PyQt4[${PYTHON_USEDEP}] )"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"
python_prepare_all() {
if ! use gtk; then
sed -i -e '/SCRIPTS/s:, "hachoir-metadata-gtk"::' setup.py || die
fi
distutils-r1_python_prepare_all
}
python_configure_all() {
mydistutilsargs=( --setuptools )
use qt4 || mydistutilsargs+=( --disable-qt )
}
python_test() {
"${PYTHON}" test_doc.py || die "Tests fail with ${EPYTHON}"
}
python_install_all() {
distutils-r1_python_install_all
if use gnome; then
exeinto /usr/share/nautilus-scripts
doexe gnome/hachoir
fi
if use kde; then
dobin kde/hachoir-metadata-kde
insinto /usr/share/apps/konqueror/servicemenus
doins kde/hachoir.desktop
fi
}
pkg_postinst() {
if use gnome; then
elog "To enable the nautilus script, symlink it with:"
elog " $ mkdir -p ~/.gnome2/nautilus-scripts"
elog " $ ln -s /usr/share/nautilus-scripts/hachoir ~/.gnome2/nautilus-script"
fi
}