Gentoo Archives: gentoo-commits

From: Agostino Sarubbo <ago@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/ago:master commit in: www-client/ryouko/
Date: Sun, 28 Oct 2012 19:51:02
Message-Id: 1351453837.7d87c933cd5f5f387a6799ed7fbbfbe2ccca418f.ago@gentoo
1 commit: 7d87c933cd5f5f387a6799ed7fbbfbe2ccca418f
2 Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 28 19:50:37 2012 +0000
4 Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 28 19:50:37 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/ago.git;a=commit;h=7d87c933
7
8 add live ebuild
9
10 ---
11 www-client/ryouko/ryouko-9999.ebuild | 29 +++++++++++++++++++++++++++++
12 1 files changed, 29 insertions(+), 0 deletions(-)
13
14 diff --git a/www-client/ryouko/ryouko-9999.ebuild b/www-client/ryouko/ryouko-9999.ebuild
15 new file mode 100644
16 index 0000000..6de1f0a
17 --- /dev/null
18 +++ b/www-client/ryouko/ryouko-9999.ebuild
19 @@ -0,0 +1,29 @@
20 +# Copyright 1999-2012 Gentoo Foundation
21 +# Distributed under the terms of the GNU General Public License v2
22 +# $Header: $
23 +
24 +EAPI=4
25 +
26 +PYTHON_COMPAT=( python{2_5,2_6,2_7} )
27 +PYTHON_REQ_USE="tk"
28 +
29 +inherit distutils-r1 git-2
30 +
31 +DESCRIPTION="PyQt4 web browser"
32 +HOMEPAGE="https://github.com/foxhead128/ryouko"
33 +EGIT_REPO_URI="git://github.com/foxhead128/${PN}.git"
34 +SLOT="0"
35 +LICENSE="MIT"
36 +KEYWORDS=""
37 +IUSE=""
38 +
39 +DEPEND=""
40 +RDEPEND=">=dev-python/PyQt4-4.8.0"
41 +
42 +PATCHES=( "${FILESDIR}"/setup.py.patch )
43 +
44 +src_install() {
45 + distutils-r1_src_install
46 + doicon "${FILESDIR}"/${PN}.png
47 + domenu "${FILESDIR}"/${PN}.desktop
48 +}