blob: db3a9c7f1487dfc727f2b887878ac10b9f1ccf53 (
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
70
71
|
# Copyright 2019-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit go-module
DESCRIPTION="Email client for your terminal"
HOMEPAGE="https://aerc-mail.org"
if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/aerc"
else
EGO_SUM=(
# to be filled on bumps
)
go-module_set_globals
SRC_URI="https://git.sr.ht/~sircmpwn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
${EGO_SUM_SRC_URI}"
KEYWORDS="~amd64 ~ppc64"
fi
LICENSE="Apache-2.0 BSD BSD-2 MIT"
SLOT="0"
IUSE="notmuch"
BDEPEND="
>=app-text/scdoc-1.9.7
>=dev-lang/go-1.13
"
DEPEND="notmuch? ( net-mail/notmuch:= )"
RDEPEND="${DEPEND}"
src_unpack() {
if [[ ${PV} == *9999 ]]; then
git-r3_src_unpack
go-module_live_vendor
else
go-module_src_unpack
fi
}
src_compile() {
use notmuch && export GOFLAGS="-tags=notmuch"
emake PREFIX="${EPREFIX}/usr"
}
src_install() {
emake PREFIX="${EPREFIX}/usr" DESTDIR="${ED}" install
einstalldocs
}
pkg_postinst() {
if [[ -z ${REPLACING_VERSIONS} ]]; then
elog "If you want to allow your users to activate html email"
elog "processing via w3m as shown in the tutorial, make sure you"
elog "emerge net-proxy/dante and www-client/w3m"
fi
local v
for v in ${REPLACING_VERSIONS}; do
if ver_test $v -lt 0.3.0-r1; then
elog "The dependencies on net-proxy/dante and www-client/w3m"
elog "have been removed since they are optional."
elog "Please emerge them before the next --depclean if you"
elog "need to use them."
fi
done
}
|