blob: 1caaee0f131ff58029e627186fcac1760d28e46a (
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
60
61
62
63
64
65
66
67
68
69
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
NEED_EMACS=24.3
inherit elisp font readme.gentoo-r1
DESCRIPTION="Various icon fonts propertized for Emacs"
HOMEPAGE="https://github.com/domtronn/all-the-icons.el/"
SRC_URI="https://github.com/domtronn/${PN}.el/archive/${PV}.tar.gz
-> ${P}.tar.gz"
S="${WORKDIR}"/${PN}.el-${PV}
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
BDEPEND="test? ( app-emacs/f )"
DOC_CONTENTS="You may need to install the required fonts by executing
the \"all-the-icons-install-fonts\" function."
DOCS=( README.md logo.png )
SITEFILE="50${PN}-gentoo.el"
pkg_setup() {
elisp_pkg_setup
font_pkg_setup
}
src_compile() {
elisp_src_compile
elisp-compile data/*.el
}
src_test() {
${EMACS} ${EMACSFLAGS} ${BYTECOMPFLAGS} \
-L . -L data -L test -l test/all-the-icons-test.el \
-f ert-run-tests-batch-and-exit || die "tests failed"
}
src_install() {
elisp_src_install
elisp-install ${PN}/data data/*.el{,c}
# Install all-the-icons.ttf, special font made explicitly for this library.
# NOTICE: "fonts" directory also contains some bundled fonts,
# that is why we need this small re-implementation of font eclass,
# to suit this specific use case.
pushd "${S}"/fonts >/dev/null || die
insinto ${FONTDIR}
doins ${PN}.ttf
font_xfont_config
font_fontconfig
popd >/dev/null || die
}
pkg_postinst() {
elisp_pkg_postinst
font_pkg_postinst
}
pkg_postrm() {
elisp_pkg_postrm
font_pkg_postrm
}
|