blob: 2dd4435dbff92698c2cdc74c6d662fae732c24b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
inherit python-r1
MY_PN=pdfPres
DESCRIPTION="Dual head PDF presenter"
HOMEPAGE="http://www.uninformativ.de/projects/?q=pdfpres"
SRC_URI="https://github.com/vain/${PN}/tarball/${PN}-${PV} -> ${PV}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}"
DEPEND="${RDEPEND}"
S=${WORKDIR}/vain-${MY_PN}-e01efb1
src_install() {
dodoc README
python_parallel_foreach_impl python_newscript legacy-notes-converter.py ${PN}-legacy-notes-converter
python_parallel_foreach_impl python_doscript ${PN}
doman man1/${PN}.1
}
|