summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-07-22 16:55:46 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-07-22 16:55:46 +0000
commitd4de9c737c88cb77c8f07ed074708eee85ac44ee (patch)
treee82c484c40c133e20503be7cd454c6a0f582434c /dev-python/pyosd
parentVersion bump (diff)
downloadgentoo-2-d4de9c737c88cb77c8f07ed074708eee85ac44ee.tar.gz
gentoo-2-d4de9c737c88cb77c8f07ed074708eee85ac44ee.tar.bz2
gentoo-2-d4de9c737c88cb77c8f07ed074708eee85ac44ee.zip
Set SUPPORT_PYTHON_ABIS.
(Portage version: HEAD/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/pyosd')
-rw-r--r--dev-python/pyosd/ChangeLog8
-rw-r--r--dev-python/pyosd/pyosd-0.2.14.ebuild29
2 files changed, 23 insertions, 14 deletions
diff --git a/dev-python/pyosd/ChangeLog b/dev-python/pyosd/ChangeLog
index 2034625b4854..084ae3e5c047 100644
--- a/dev-python/pyosd/ChangeLog
+++ b/dev-python/pyosd/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/pyosd
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyosd/ChangeLog,v 1.18 2007/04/25 16:18:12 dev-zero Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyosd/ChangeLog,v 1.19 2010/07/22 16:55:46 arfrever Exp $
+
+ 22 Jul 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ pyosd-0.2.14.ebuild:
+ Set SUPPORT_PYTHON_ABIS.
25 Apr 2007; Tiziano Müller <dev-zero@gentoo.org> -pyosd-0.2.12.ebuild:
Dropped old version.
diff --git a/dev-python/pyosd/pyosd-0.2.14.ebuild b/dev-python/pyosd/pyosd-0.2.14.ebuild
index 5e6d4ccca489..12f5cf3a4c36 100644
--- a/dev-python/pyosd/pyosd-0.2.14.ebuild
+++ b/dev-python/pyosd/pyosd-0.2.14.ebuild
@@ -1,12 +1,18 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pyosd/pyosd-0.2.14.ebuild,v 1.8 2007/04/25 06:46:16 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pyosd/pyosd-0.2.14.ebuild,v 1.9 2010/07/22 16:55:46 arfrever Exp $
+
+EAPI="3"
+PYTHON_DEPEND="2"
+SUPPORT_PYTHON_ABIS="1"
+RESTRICT_PYTHON_ABIS="3.*"
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"
+
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ia64 ppc x86"
@@ -15,23 +21,22 @@ IUSE="examples"
DEPEND=">=x11-libs/xosd-2.2.4"
RDEPEND="${DEPEND}"
+DOCS="AUTHORS"
+
src_install() {
- DOCS="AUTHORS"
distutils_src_install
+
dohtml pyosd.html
- if use examples ; then
+ if use examples; then
insinto /usr/share/doc/${PF}
- doins -r modules
+ doins -r modules || die "doins failed"
fi
}
pkg_postinst() {
- elog ""
- elog "If you want to run the included daemon"
- elog "you will need to emerge dev-python/twisted."
- elog ""
- elog "Also note that the volume plugin"
- elog "requires media-sound/aumix."
- elog ""
+ distutils_pkg_postinst
+
+ elog "If you want to run the included daemon, you will need to install dev-python/twisted."
+ elog "Also note that the volume plugin requires media-sound/aumix."
}