Gentoo Archives: gentoo-commits

From: Jory Pratt <anarchy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/anarchy:master commit in: app-text/openlp/
Date: Fri, 03 Jan 2014 05:39:54
Message-Id: 1388727548.e07a5234a62210b409f2610f75e6cc42dfd9746e.anarchy@gentoo
1 commit: e07a5234a62210b409f2610f75e6cc42dfd9746e
2 Author: Jory A. Pratt <anarchy <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 3 05:39:08 2014 +0000
4 Commit: Jory Pratt <anarchy <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 3 05:39:08 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/anarchy.git;a=commit;h=e07a5234
7
8 Initial ebuild, thanks floppym for assistance
9
10 ---
11 app-text/openlp/Manifest | 2 ++
12 app-text/openlp/openlp-2.0.3.ebuild | 42 +++++++++++++++++++++++++++++++++++++
13 2 files changed, 44 insertions(+)
14
15 diff --git a/app-text/openlp/Manifest b/app-text/openlp/Manifest
16 new file mode 100644
17 index 0000000..541a991
18 --- /dev/null
19 +++ b/app-text/openlp/Manifest
20 @@ -0,0 +1,2 @@
21 +DIST OpenLP-2.0.3.tar.gz 5799669 SHA256 c92bb227753066c87650b042f4a33bf253c3d2d4ca07c693477af9158f5436f7 SHA512 c4552a79d35e02064ba6d93f8f7aa7235dd21e02d5192952849114aeb67b9bd3c746115fea6906718474cf1c5a61b537ab4a6e7c9e0e0008117f442397fff3af WHIRLPOOL 4481eced42c914d591e6c1af4a23845a34edfff3ba99238807bbad73bea851a6feacad99adc6b041eeff5b8eb33856facdcbf32bbb6b6a1fa076a4defcb4aab1
22 +EBUILD openlp-2.0.3.ebuild 1062 SHA256 14b40664e211348e9e5c949122e0327b8e08fb1e413a408eb49f4489af045fb5 SHA512 2ce120d3ec996d7b7c0fb76d98e3b13ce9bcd283d394524cfb0833d8e527b54ddcc9f49be36712eec324c7e3c096c9c921b58060d3da8545350fdbf3ecb73961 WHIRLPOOL 9638048158286999b582b5d9d7bf47fe84182eec6aa178f051fd2b4ba1ae0c9555f6f88679909963e25cf483762b055a6d56db3f3a2c3e30d69ffa4118f63949
23
24 diff --git a/app-text/openlp/openlp-2.0.3.ebuild b/app-text/openlp/openlp-2.0.3.ebuild
25 new file mode 100644
26 index 0000000..7285862
27 --- /dev/null
28 +++ b/app-text/openlp/openlp-2.0.3.ebuild
29 @@ -0,0 +1,42 @@
30 +# Copyright 1999-2013 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Header: $
33 +
34 +EAPI=5
35 +
36 +PYTHON_COMPAT=( python2_7 )
37 +PYTHON_REQ_USE='sqlite'
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Free church presentation software"
42 +HOMEPAGE="http://openlp.org/"
43 +SRC_URI="mirror://sourceforge/${PN}/${PV}/OpenLP-${PV}.tar.gz"
44 +
45 +LICENSE="GPL-2"
46 +SLOT="0"
47 +KEYWORDS="~amd64"
48 +
49 +RDEPEND="
50 + dev-python/beautifulsoup:python-2[${PYTHON_USEDEP}]
51 + dev-python/chardet[${PYTHON_USEDEP}]
52 + dev-python/lxml[${PYTHON_USEDEP}]
53 + dev-python/mako[${PYTHON_USEDEP}]
54 + dev-python/pyenchant[${PYTHON_USEDEP}]
55 + dev-python/pyodbc
56 + dev-python/PyQt4[X,multimedia,phonon,webkit,${PYTHON_USEDEP}]
57 + dev-python/setuptools[${PYTHON_USEDEP}]
58 + dev-python/sip[${PYTHON_USEDEP}]
59 + dev-python/sqlalchemy[${PYTHON_USEDEP}]
60 + dev-python/sqlalchemy-migrate[${PYTHON_USEDEP}]"
61 +DEPEND="${RDEPEND}"
62 +
63 +S=${WORKDIR}/OpenLP-${PV}
64 +
65 +python_install_all() {
66 + distutils-r1_python_install_all
67 + domenu resources/openlp.desktop
68 + dosym openlp.pyw /usr/bin/openlp
69 + doicon resources/images/openlp.svg
70 +}
71 +