blob: 0a26098712f5613944d9c30e7adaf17c4760f70c (
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
50
51
52
53
54
55
56
57
58
59
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit gnome2-utils
MY_PN="vertex-icons"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/horst3180/${MY_PN}"
SRC_URI=""
KEYWORDS="amd64 x86"
else
EGIT_COMMIT="f27e47edf392596b7967b7d134d3c62ac3fda0c9"
SRC_URI="https://github.com/horst3180/${MY_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
S="${WORKDIR}/${MY_PN}-${EGIT_COMMIT}"
fi
DESCRIPTION="Vertex icon theme"
HOMEPAGE="https://github.com/horst3180/vertex-icons"
LICENSE="|| ( GPL-3 GPL-2 LGPL-3 CC-BY-SA-3.0 )"
SLOT="0"
IUSE=""
RDEPEND="
>=x11-themes/hicolor-icon-theme-0.10
"
DEPEND=""
# This ebuild does not install any binaries
RESTRICT="binchecks strip"
src_configure() { :; }
src_compile() { :; }
src_install() {
default
rm COPYING README.md || die
insinto /usr/share/icons/Vertex
doins -r *
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_icon_cache_update
}
|