blob: 4c1f021821d99b7b78bcb20380601d3d9f01f558 (
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
DESCRIPTION="Numix Circle icon theme"
HOMEPAGE="https://numixproject.org"
if [[ ${PV} == "9999" ]] ; then
inherit git-r3
SRC_URI=""
EGIT_REPO_URI="https://github.com/numixproject/${PN}.git"
KEYWORDS=""
else
SRC_URI="https://github.com/numixproject/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="amd64 x86"
fi
LICENSE="GPL-3.0+"
SLOT="0"
DEPEND="x11-themes/numix-icon-theme"
RDEPEND="${DEPEND}"
src_install() {
insinto /usr/share/icons
doins -r Numix-Circle Numix-Circle-Light
dodoc readme.md
}
|