diff options
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/tintwizard/ChangeLog | 9 | ||||
-rw-r--r-- | x11-misc/tintwizard/tintwizard-0.3.4.ebuild | 31 |
2 files changed, 39 insertions, 1 deletions
diff --git a/x11-misc/tintwizard/ChangeLog b/x11-misc/tintwizard/ChangeLog index 02b9e48d9420..0ce3412443e2 100644 --- a/x11-misc/tintwizard/ChangeLog +++ b/x11-misc/tintwizard/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for x11-misc/tintwizard # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/tintwizard/ChangeLog,v 1.3 2010/05/08 13:27:15 idl0r Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/tintwizard/ChangeLog,v 1.4 2010/06/30 19:41:56 idl0r Exp $ + +*tintwizard-0.3.4 (30 Jun 2010) + + 30 Jun 2010; Christian Ruppert <idl0r@gentoo.org> + +tintwizard-0.3.4.ebuild: + Version bump, bug 326355, thanks to Nick Pope + <nick+gentoo@nickpope.me.uk>. 08 May 2010; Christian Ruppert <idl0r@gentoo.org> tintwizard-0.3.3b.ebuild: diff --git a/x11-misc/tintwizard/tintwizard-0.3.4.ebuild b/x11-misc/tintwizard/tintwizard-0.3.4.ebuild new file mode 100644 index 000000000000..978d64f02e8c --- /dev/null +++ b/x11-misc/tintwizard/tintwizard-0.3.4.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/tintwizard/tintwizard-0.3.4.ebuild,v 1.1 2010/06/30 19:41:56 idl0r Exp $ + +EAPI="3" + +PYTHON_DEPEND="2" + +inherit python + +DESCRIPTION="GUI wizard which generates config files for tint2 panels" +HOMEPAGE="http://code.google.com/p/tintwizard/" +SRC_URI="http://tintwizard.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="x11-misc/tint2 + dev-python/pygtk:2" + +src_prepare() { + python_convert_shebangs 2 tintwizard.py +} + +src_install() { + dodoc ChangeLog + newbin tintwizard.py tintwizard || die +} |