summaryrefslogtreecommitdiff
blob: fe2279845a43070865a9fb285eac81690ef3b721 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit autotools

MY_PV="${PV}.1"

DESCRIPTION="Adapta theme for GTK+ based desktops"
HOMEPAGE="https://github.com/adapta-project/adapta-gtk-theme"
SRC_URI="https://github.com/adapta-project/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"

LICENSE="CC-BY-SA-3.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="cinnamon mate xfce"

S="${WORKDIR}/${PN}-${MY_PV}"

RDEPEND="
	media-fonts/noto
	media-fonts/roboto
	x11-themes/gnome-themes-standard
	x11-themes/gtk-engines-murrine
	cinnamon? ( >=x11-libs/gtk+-3.22:3 )

"
DEPEND="
	dev-libs/libxml2
	dev-ruby/bundler
	dev-ruby/sass:3.4
	media-gfx/inkscape
	virtual/pkgconfig
"

src_prepare() {
	default
	eautoreconf
}

src_configure() {
	econf \
		--disable-parallel \
		--disable-unity \
		$(use_enable cinnamon) \
		$(use_enable mate) \
		$(use_enable xfce)
}