Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pysfml: metadata.xml ChangeLog pysfml-1.6.ebuild
Date: Mon, 07 Feb 2011 11:44:18
Message-Id: 20110207114408.63A4E20054@flycatcher.gentoo.org
1 radhermit 11/02/07 11:44:08
2
3 Added: metadata.xml ChangeLog pysfml-1.6.ebuild
4 Log:
5 Initial import. Split from media-libs/libsfml.
6
7 (Portage version: 2.2.0_alpha20/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-python/pysfml/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysfml/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysfml/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version = '1.0' encoding = 'UTF-8'?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>python</herd>
21 <maintainer>
22 <email>radhermit@g.o</email>
23 <name>Tim Harder</name>
24 </maintainer>
25 </pkgmetadata>
26
27
28
29 1.1 dev-python/pysfml/ChangeLog
30
31 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysfml/ChangeLog?rev=1.1&view=markup
32 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysfml/ChangeLog?rev=1.1&content-type=text/plain
33
34 Index: ChangeLog
35 ===================================================================
36 # ChangeLog for dev-python/pysfml
37 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
38 # $Header: /var/cvsroot/gentoo-x86/dev-python/pysfml/ChangeLog,v 1.1 2011/02/07 11:44:08 radhermit Exp $
39
40 *pysfml-1.6 (07 Feb 2011)
41
42 07 Feb 2011; Tim Harder <radhermit@g.o> +pysfml-1.6.ebuild,
43 +metadata.xml:
44 Initial import. Split from media-libs/libsfml.
45
46
47
48
49 1.1 dev-python/pysfml/pysfml-1.6.ebuild
50
51 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysfml/pysfml-1.6.ebuild?rev=1.1&view=markup
52 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pysfml/pysfml-1.6.ebuild?rev=1.1&content-type=text/plain
53
54 Index: pysfml-1.6.ebuild
55 ===================================================================
56 # Copyright 1999-2011 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 # $Header: /var/cvsroot/gentoo-x86/dev-python/pysfml/pysfml-1.6.ebuild,v 1.1 2011/02/07 11:44:08 radhermit Exp $
59
60 EAPI=3
61 PYTHON_DEPEND="2:2.6 3"
62 PYTHON_MODNAME="PySFML"
63
64 inherit distutils
65
66 DESCRIPTION="Python library for the Simple and Fast Multimedia Library (SFML)"
67 HOMEPAGE="http://sfml.sourceforge.net/"
68 SRC_URI="mirror://sourceforge/sfml/SFML-${PV}-python-sdk.zip"
69
70 LICENSE="as-is"
71 SLOT="0"
72 KEYWORDS="~amd64 ~x86"
73 IUSE="doc examples"
74
75 DEPEND="media-libs/libsfml"
76 RDEPEND="${DEPEND}"
77
78 S="${WORKDIR}/SFML-${PV}/python"
79
80 src_install() {
81 distutils_src_install
82 use doc && dohtml doc/*
83
84 if use examples ; then
85 insinto /usr/share/doc/${PF}/examples
86 doins -r samples/* || die "doins failed"
87 fi
88 }