Gentoo Archives: gentoo-commits

From: "Jim Ramsay (lack)" <lack@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/screenlets: metadata.xml ChangeLog screenlets-0.1.2.ebuild
Date: Sat, 22 Aug 2009 19:39:01
Message-Id: E1MewQV-0000xe-Fv@stork.gentoo.org
1 lack 09/08/22 19:38:59
2
3 Added: metadata.xml ChangeLog screenlets-0.1.2.ebuild
4 Log:
5 New package: Screenlets-0.1.2 (Bug #212448)
6 (Portage version: 2.1.6.13/cvs/Linux i686)
7
8 Revision Changes Path
9 1.1 x11-plugins/screenlets/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/screenlets/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/screenlets/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>desktop</herd>
20 <maintainer>
21 <email>lack@g.o</email>
22 <name>Jim Ramsay</name>
23 </maintainer>
24 <longdescription lang="en">
25 Screenlets are small owner-drawn applications (written in Python) that
26 can be described as "the virtual representation of things lying/standing
27 around on your desk". Sticknotes, clocks, rulers, ... the possibilities
28 are endless.
29
30 The goal of the Screenlets base-classes is to simplify the creation of
31 fully themeable mini-apps that each solve basic desktop-work-related
32 needs and generally improve the usability and eye-candy of the modern
33 composited Linux-desktop.
34 </longdescription>
35 <use>
36 <flag name="svg">Highly Recommended: Enable SVG graphics via
37 <pkg>dev-python/librsvg-python</pkg></flag>
38 </use>
39 </pkgmetadata>
40
41
42
43
44 1.1 x11-plugins/screenlets/ChangeLog
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/screenlets/ChangeLog?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/screenlets/ChangeLog?rev=1.1&content-type=text/plain
48
49 Index: ChangeLog
50 ===================================================================
51 # ChangeLog for x11-plugins/screenlets
52 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
53 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/screenlets/ChangeLog,v 1.1 2009/08/22 19:38:59 lack Exp $
54
55 *screenlets-0.1.2 (22 Aug 2009)
56
57 22 Aug 2009; Jim Ramsay <lack@g.o> +screenlets-0.1.2.ebuild,
58 +metadata.xml:
59 New package: Screenlets is another desktop applet thing, like desklets...
60 only newer ;) Bug #212448
61
62
63
64
65 1.1 x11-plugins/screenlets/screenlets-0.1.2.ebuild
66
67 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/screenlets/screenlets-0.1.2.ebuild?rev=1.1&view=markup
68 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/screenlets/screenlets-0.1.2.ebuild?rev=1.1&content-type=text/plain
69
70 Index: screenlets-0.1.2.ebuild
71 ===================================================================
72 # Copyright 1999-2009 Gentoo Foundation
73 # Distributed under the terms of the GNU General Public License v2
74 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/screenlets/screenlets-0.1.2.ebuild,v 1.1 2009/08/22 19:38:59 lack Exp $
75
76 EAPI=2
77 inherit eutils distutils
78
79 DESCRIPTION="Screenlets are small owner-drawn applications"
80 HOMEPAGE="http://www.screenlets.org"
81 SRC_URI="http://code.launchpad.net/screenlets/trunk/${PV}/+download/screenlets-${PV}.tar.bz2"
82
83 LICENSE="GPL-3"
84 SLOT="0"
85 KEYWORDS="~amd64 ~x86"
86 IUSE="+svg"
87
88 RDEPEND="dev-python/dbus-python
89 svg? ( dev-python/librsvg-python )
90 dev-python/libwnck-python
91 dev-python/gnome-keyring-python
92 dev-python/pyxdg
93 x11-libs/libnotify
94 x11-misc/xdg-utils"
95
96 S="${WORKDIR}/${PN}"
97
98 src_install() {
99 distutils_src_install
100
101 insinto /usr/share/desktop-directories
102 doins "${S}"/desktop-menu/desktop-directories/Screenlets.directory
103
104 insinto /usr/share/icons
105 doins "${S}"/desktop-menu/screenlets.svg
106
107 # Insert .desktop files
108 for x in $(find "${S}"/desktop-menu -name "*.desktop"); do
109 domenu ${x}
110 done
111 }