diff options
author | Jesus Rivero <neurogeek@gentoo.org> | 2008-08-20 05:26:31 +0000 |
---|---|---|
committer | Jesus Rivero <neurogeek@gentoo.org> | 2008-08-20 05:26:31 +0000 |
commit | 51ed28202f74200ceee66aeeac1cf820c8a64953 (patch) | |
tree | b620d5625796c10dff68502632d9aa10f60e922c /dev-python/python-scw | |
parent | Revision bump with new patches from bender647 to work with 2.6.26 (diff) | |
download | gentoo-2-51ed28202f74200ceee66aeeac1cf820c8a64953.tar.gz gentoo-2-51ed28202f74200ceee66aeeac1cf820c8a64953.tar.bz2 gentoo-2-51ed28202f74200ceee66aeeac1cf820c8a64953.zip |
Initial Commit. Bug #136102. Thanks to Ali Sabil and Georg Bluhm
(Portage version: 2.1.4.4)
Diffstat (limited to 'dev-python/python-scw')
-rw-r--r-- | dev-python/python-scw/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/python-scw/Manifest | 4 | ||||
-rw-r--r-- | dev-python/python-scw/metadata.xml | 5 | ||||
-rw-r--r-- | dev-python/python-scw/python-scw-0.4.7.ebuild | 19 |
4 files changed, 37 insertions, 0 deletions
diff --git a/dev-python/python-scw/ChangeLog b/dev-python/python-scw/ChangeLog new file mode 100644 index 000000000000..32baf5166d90 --- /dev/null +++ b/dev-python/python-scw/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-python/python-scw +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-scw/ChangeLog,v 1.1 2008/08/20 05:26:31 neurogeek Exp $ + +*python-scw-0.4.7 (20 Aug 2008) + + 20 Aug 2008; Jesus Rivero <neurogeek@gentoo.org> +python-scw-0.4.7.ebuild: + Initial Commit. Bug #136102. Thanks to Ali Sabil and Georg Bluhm + diff --git a/dev-python/python-scw/Manifest b/dev-python/python-scw/Manifest new file mode 100644 index 000000000000..1a0fe175a25f --- /dev/null +++ b/dev-python/python-scw/Manifest @@ -0,0 +1,4 @@ +DIST python-scw-0.4.7.tar.gz 337703 RMD160 a8c6a6053d55d20cb80c88d1fa8755389e5741b6 SHA1 8480330d0f846f64e10ab254193dbd36ea3b4583 SHA256 2cf8774be0b00dd1f2afff98fa8d27c3dcfda9f3bdf54c006731987550791460 +EBUILD python-scw-0.4.7.ebuild 459 RMD160 26b149f6d324147ff87650a85b4fdbcbcc2cafca SHA1 e82b474ad75f1745d3a1648992bb8f016c9cb62a SHA256 01abb787a8edaa3c28ae6575cd34b19a831e6496486cd91ee96548f729b53128 +MISC ChangeLog 300 RMD160 59de4003660e7513d83406ad1b7f0e91b5ad2d76 SHA1 99ef79f938ff87231113810b822ebd0b5a5128d0 SHA256 22cdb9da36c86aad9d31c13ec62705a84a44ee0d3fb5bd22d99e911f3f3d75bf +MISC metadata.xml 160 RMD160 e730f96ab97c5be577a6d6d05f04990374a0dffb SHA1 2aa5e6be9c265c0e7bceb78ee9fd20df5f818e36 SHA256 6cd954a9de2307c57d32b25fa3599dee2908a4ddc6a98594f593d53577307a3a diff --git a/dev-python/python-scw/metadata.xml b/dev-python/python-scw/metadata.xml new file mode 100644 index 000000000000..301d2207cc29 --- /dev/null +++ b/dev-python/python-scw/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>python</herd> +</pkgmetadata> diff --git a/dev-python/python-scw/python-scw-0.4.7.ebuild b/dev-python/python-scw/python-scw-0.4.7.ebuild new file mode 100644 index 000000000000..322d5d7efb86 --- /dev/null +++ b/dev-python/python-scw/python-scw-0.4.7.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-scw/python-scw-0.4.7.ebuild,v 1.1 2008/08/20 05:26:31 neurogeek Exp $ + +DESCRIPTION="Python binding for Scw." +HOMEPAGE="http://scwwidgets.googlepages.com/" +SRC_URI="http://scwwidgets.googlepages.com/${P}.tar.gz " +LICENSE="LGPL-2" +SLOT="0" + +KEYWORDS="~x86" +IUSE="" +DEPEND=">=dev-python/pygtk-2.4 + >=x11-libs/scw-0.4.0" + +src_install() { + make DESTDIR="${D}" install || die + dodoc README NEWS ChangeLog AUTHORS +} |