Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/traydevice: metadata.xml ChangeLog traydevice-1.5.ebuild
Date: Sat, 21 Aug 2010 07:11:28
Message-Id: 20100821071124.BDA3F2004C@flycatcher.gentoo.org
1 ssuominen 10/08/21 07:11:24
2
3 Added: metadata.xml ChangeLog traydevice-1.5.ebuild
4 Log:
5 Initial commit.
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 sys-fs/traydevice/metadata.xml
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/traydevice/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/traydevice/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>no-herd</herd>
20 <maintainer>
21 <email>ssuominen@g.o</email>
22 <name>Samuli Suominen</name>
23 </maintainer>
24 </pkgmetadata>
25
26
27
28 1.1 sys-fs/traydevice/ChangeLog
29
30 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/traydevice/ChangeLog?rev=1.1&view=markup
31 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/traydevice/ChangeLog?rev=1.1&content-type=text/plain
32
33 Index: ChangeLog
34 ===================================================================
35 # ChangeLog for sys-fs/traydevice
36 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
37 # $Header: /var/cvsroot/gentoo-x86/sys-fs/traydevice/ChangeLog,v 1.1 2010/08/21 07:11:24 ssuominen Exp $
38
39 *traydevice-1.5 (21 Aug 2010)
40
41 21 Aug 2010; Samuli Suominen <ssuominen@g.o>
42 +traydevice-1.5.ebuild:
43 Initial commit.
44
45
46
47
48 1.1 sys-fs/traydevice/traydevice-1.5.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/traydevice/traydevice-1.5.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/traydevice/traydevice-1.5.ebuild?rev=1.1&content-type=text/plain
52
53 Index: traydevice-1.5.ebuild
54 ===================================================================
55 # Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/sys-fs/traydevice/traydevice-1.5.ebuild,v 1.1 2010/08/21 07:11:24 ssuominen Exp $
58
59 EAPI=3
60
61 PYTHON_DEPEND="2"
62 SUPPORT_PYTHON_ABIS="1"
63 RESTRICT_PYTHON_ABIS="3.*"
64
65 inherit distutils
66
67 DESCRIPTION="A little desktop application displaying systray icon for UDisks"
68 HOMEPAGE="http://savannah.nongnu.org/projects/traydevice/"
69 SRC_URI="mirror://nongnu/traydevice/traydevice-1.5.tar.gz"
70
71 LICENSE="GPL-3"
72 SLOT="0"
73 KEYWORDS="~amd64 ~x86"
74 IUSE=""
75
76 RDEPEND="dev-python/dbus-python
77 dev-python/lxml
78 dev-python/pyxdg
79 sys-fs/udisks"
80 DEPEND="app-text/docbook2X"
81
82 src_prepare() {
83 sed -i \
84 -e 's:docbook2man:docbook2man.pl:' \
85 setup.py || die
86
87 distutils_src_prepare
88 }
89
90 src_compile() { :; }
91
92 src_install() {
93 distutils_src_install \
94 --root="${D}" \
95 --prefix=/usr \
96 --install-data=/usr/share/traydevice \
97 --install-man=/usr/share/man
98
99 rm -f "${D}"/usr/share/traydevice/*.txt
100 }