diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-01-20 18:02:28 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-01-20 18:02:28 +0000 |
commit | b9a5a071f74d8839b50cd7ca32d7b2169491acc2 (patch) | |
tree | 1303fbba7b843d9f1ff497bbf1c6f4f99dcc22c8 /sys-fs/bleachbit/bleachbit-0.9.1.ebuild | |
parent | punt old, no longer can connect to MSN (diff) | |
download | gentoo-2-b9a5a071f74d8839b50cd7ca32d7b2169491acc2.tar.gz gentoo-2-b9a5a071f74d8839b50cd7ca32d7b2169491acc2.tar.bz2 gentoo-2-b9a5a071f74d8839b50cd7ca32d7b2169491acc2.zip |
Version bump wrt #395853 by "teidakankan"
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'sys-fs/bleachbit/bleachbit-0.9.1.ebuild')
-rw-r--r-- | sys-fs/bleachbit/bleachbit-0.9.1.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/sys-fs/bleachbit/bleachbit-0.9.1.ebuild b/sys-fs/bleachbit/bleachbit-0.9.1.ebuild new file mode 100644 index 000000000000..3eedae6f9ec3 --- /dev/null +++ b/sys-fs/bleachbit/bleachbit-0.9.1.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/bleachbit/bleachbit-0.9.1.ebuild,v 1.1 2012/01/20 18:02:28 ssuominen Exp $ + +EAPI=4 + +PYTHON_DEPEND="2" +PYTHON_USE_WITH="sqlite" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.*" + +inherit distutils eutils + +DESCRIPTION="Clean junk to free disk space and to maintain privacy" +HOMEPAGE="http://bleachbit.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" + +RDEPEND=">=dev-python/pygtk-2" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext )" + +DOCS="README" + +src_prepare() { + python_convert_shebangs 2 ${PN}.py + + # warning: key "Encoding" in group "Desktop Entry" is deprecated + sed -i -e '/Encoding/d' ${PN}.desktop || die + + distutils_src_prepare +} + +src_compile() { + distutils_src_compile + use nls && emake -C po +} + +src_install() { + distutils_src_install + use nls && emake -C po DESTDIR="${D}" install + + # http://bugs.gentoo.org/388999 + insinto /usr/share/${PN}/cleaners + doins cleaners/*.xml + + newbin ${PN}.py ${PN} + + doicon ${PN}.png + domenu ${PN}.desktop +} |