You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/x11-apps/fusion-icon/fusion-icon-0.1-r2.ebuild

58 lines
1.2 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-apps/fusion-icon/fusion-icon-0.1-r2.ebuild,v 1.3 2012/09/07 08:26:41 pinkbyte Exp $
EAPI="4"
PYTHON_DEPEND="2"
inherit distutils gnome2-utils
MINIMUM_COMPIZ_RELEASE=0.6.0
DESCRIPTION="Compiz Fusion Tray Icon and Manager"
HOMEPAGE="http://compiz.org"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+gtk qt4"
REQUIRED_USE="|| ( gtk qt4 )"
RDEPEND="
>=dev-python/compizconfig-python-${MINIMUM_COMPIZ_RELEASE}
>=x11-wm/compiz-${MINIMUM_COMPIZ_RELEASE}
x11-apps/xvinfo
gtk? ( >=dev-python/pygtk-2.10:2 )
qt4? ( dev-python/PyQt4[X] )"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${PN}"
PYTHON_MODNAME="FusionIcon"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_install() {
distutils_src_install
use gtk || rm -fr "${ED}$(python_get_sitedir)/FusionIcon/interface_gtk"
use qt4 || rm -fr "${ED}$(python_get_sitedir)/FusionIcon/interface_qt4"
}
pkg_postinst() {
distutils_pkg_postinst
use gtk && gnome2_icon_cache_update
}
pkg_postrm() {
distutils_pkg_postrm
use gtk && gnome2_icon_cache_update
}