65 lines
1.5 KiB
Bash
65 lines
1.5 KiB
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
PYTHON_COMPAT=( python2_7 )
|
|
|
|
inherit eutils python-r1
|
|
|
|
MY_PN="Impressive"
|
|
|
|
DESCRIPTION="Stylish way of giving presentations with Python"
|
|
HOMEPAGE="http://impressive.sourceforge.net/"
|
|
SRC_URI="mirror://sourceforge/${PN}/${MY_PN}/${PV%b}/${MY_PN}-${PV}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="${PYTHON_DEPS}
|
|
app-text/pdftk
|
|
dev-python/pygame[${PYTHON_USEDEP}]
|
|
dev-python/pillow[${PYTHON_USEDEP}]
|
|
x11-apps/xrandr
|
|
|| (
|
|
app-text/mupdf
|
|
app-text/poppler
|
|
app-text/ghostscript-gpl
|
|
)
|
|
|| ( media-fonts/dejavu media-fonts/corefonts )"
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
S=${WORKDIR}/${MY_PN}-${PV}
|
|
|
|
src_prepare() {
|
|
sed \
|
|
-e 's:tostring:tobytes:g' \
|
|
-i impressive.py || die
|
|
}
|
|
|
|
src_install() {
|
|
python_foreach_impl python_doscript ${PN}.py
|
|
|
|
# compatibility symlinks
|
|
dosym impressive.py /usr/bin/impressive
|
|
dosym impressive.py /usr/bin/keyjnote
|
|
|
|
# docs
|
|
doman impressive.1
|
|
dohtml impressive.html
|
|
dodoc changelog.txt demo.pdf
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "The experience with ${PN} can be enhanced by folowing packages:"
|
|
optfeature "Starting web or e-mail hyperlinks from PDF documents" x11-misc/xdg-utils
|
|
optfeature "Sound and video playback" media-video/mplayer
|
|
optfeature "Sound and video playback" media-video/mplayer2
|
|
optfeature "Alternate PDF rendering" app-text/mupdf
|
|
optfeature "Alternate PDF rendering" app-text/poppler
|
|
optfeature "Alternate PDF rendering" app-text/ghostscript-gpl
|
|
}
|