blob: 236299c2acd179a725aa0484d6ff5b51cead34d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyosd/pyosd-0.2.12.ebuild,v 1.3 2005/04/24 13:09:39 hansmi Exp $
inherit distutils
DESCRIPTION="PyOSD is a python module for displaying text on your X display, much like the 'On Screen Displays' used on TVs and some monitors."
HOMEPAGE="http://repose.cx/pyosd/"
SRC_URI="http://repose.cx/pyosd/${P}.tar.gz"
IUSE=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc"
DEPEND="virtual/python
>=x11-libs/xosd-2.2.4"
src_install() {
distutils_src_install
dohtml pyosd.html
dodoc AUTHORS
cp -r modules ${D}/usr/share/doc/${PF}
}
|