blob: a28b697227bb358595b4315d49fe0226a9a83e00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
PYTHON_COMPAT=( python2_7 )
PYTHON_SINGLE_TARGET="python2_7"
DISTUTILS_SINGLE_IMPL=1
inherit eutils distutils-r1 git-r3
DESCRIPTION="Tweak tool for the MATE Desktop. Fork of mintDesktop."
HOMEPAGE="https://bitbucket.org/ubuntu-mate/${PN}"
EGIT_REPO_URI="${HOMEPAGE}.git"
KEYWORDS=""
S="${WORKDIR}"/"${P}"
LICENSE="LGPL-3"
SLOT="0"
IUSE=""
DEPEND="mate-base/mate-desktop
dev-python/setuptools
dev-python/python-distutils-extra
x11-misc/wmctrl"
RDEPEND="${DEPEND}"
python_install(){
distutils-r1_python_install
}
|