Initial import

This commit is contained in:
2022-08-30 15:46:53 -04:00
commit e712bb5dc2
274 changed files with 27716 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
DIST Impressive-0.13.0-beta1a.tar.gz 213098 SHA256 a7f01d7d65b8ad595d8241216e95193c3584af897561c95990116060bd5bbc86 SHA512 5484f9764848129150d03233a9b270d2c31ec5f5083100662dd3cca85d3c7ead0000bd23b7d531ad45667410e1a1ea5d97ca1a2f4e8a2449dc730273144e56e8 WHIRLPOOL f9a5e4179e948163d897b0818c3bc4eed3acb654657068228fc560bb02cc306c3eee60f21b0ef4b512b84762adad22b7f2133ecac6f8af25ca23a8552d4e2f40
EBUILD impressive-0.13.0_beta1-r1.ebuild 1293 SHA256 294827a705aca799cb03f84ad52c27f584f8ff64d835b085a1229814a9046565 SHA512 fb8ebe80716efd24280e9f79fe6067f1370ea1d883c5e8d6fdd9974e3eef82cc1bcbf352f33f95ebcee9fa5513e9cc20b3944d0783102e13c7bf8b5e09a97483 WHIRLPOOL 9632e74c5cc56974702561afedb2262b3e263435cfe7e76016f37ed644bb7ca3c1f7f577736f7e100940d91b08c38905b3349960610e9425b66576018b2296aa

View File

@@ -0,0 +1,55 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{6,7,8} )
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/_/-}/${MY_PN}-${PV/_/-}a.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE=""
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
DEPEND=""
RDEPEND="${PYTHON_DEPS}
dev-python/pygame[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP}]
x11-apps/xrandr
app-text/mupdf
|| ( media-fonts/dejavu media-fonts/corefonts )
"
DOCS=(
changelog.txt
demo.pdf
)
HTML_DOCS=(
impressive.html
)
S="${WORKDIR}/${MY_PN}-${PV/_/-}a"
src_install() {
default
python_foreach_impl python_doscript ${PN}.py
doman impressive.1
}
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/ffmpeg
optfeature "sound and video playback" media-video/mplayer
optfeature "sound and video playback" media-video/mplayer2
optfeature "extraction of PDF page titles" app-text/pdftk
}