diff options
author | V3n3RiX <venerix@gmail.com> | 2014-12-11 01:07:30 +0200 |
---|---|---|
committer | V3n3RiX <venerix@gmail.com> | 2014-12-11 01:07:30 +0200 |
commit | 3ff97f988f948f2a15ac9fb14177b240500840ba (patch) | |
tree | 234059da19a134a3f4b5e8c7465366723c2d5c6e /mate-extra/mintmenu/mintmenu-5.6.0.ebuild | |
parent | b7b015f12552c64a0b1eedc038fd94451b03ebcf (diff) |
working mintMenu applet for MATE ;)
Diffstat (limited to 'mate-extra/mintmenu/mintmenu-5.6.0.ebuild')
-rw-r--r-- | mate-extra/mintmenu/mintmenu-5.6.0.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/mate-extra/mintmenu/mintmenu-5.6.0.ebuild b/mate-extra/mintmenu/mintmenu-5.6.0.ebuild new file mode 100644 index 00000000..1bf2b423 --- /dev/null +++ b/mate-extra/mintmenu/mintmenu-5.6.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit eutils gnome2-utils + +DESCRIPTION="Advanced MATE menu" +HOMEPAGE="http://linuxmint.com" +SRC_URI="http://packages.linuxmint.com/pool/main/m/mintmenu/${PN}_${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +RESTRICT="" + +DEPEND=" + dev-lang/python:2.7 + dev-python/pygtk:2 + >=dev-python/pyxdg-0.25 + >=dev-python/python-xlib-0.14" +RDEPEND=" + >=mate-base/mate-desktop-1.8.0 + >=mate-base/mate-panel-1.8.0 + >=mate-base/mate-menus-1.8.0[python] + >=x11-misc/mozo-1.8.0" + +S="${WORKDIR}/${PN}" + +src_install() { + exeinto /usr/bin || die + doexe usr/bin/${PN} || die + + insinto /usr/$(get_libdir) || die + doins -r usr/lib/* || die + fperms 755 /usr/$(get_libdir)/linuxmint/mintMenu/*.py || die + fperms 755 /usr/$(get_libdir)/linuxmint/mintMenu/plugins/*.py || die + + insinto /usr/share || die + doins -r usr/share/* || die +} + +pkg_postinst() { + gnome2_schemas_update +} + +pkg_postrm() { + gnome2_schemas_update +} |