ec16256079
- app-emacs/ement Matrix client for GNU Emacs - app-emacs/ement-extras My package; among other things, tries to make it easier to use E2EE - app-emacs/defmacro-gensym My package; dependency for app-emacs/ement-extras - app-emacs/plz Dependency for app-emacs/ement - app-emacs/ts Dependency for app-emacs/ement - net-im/pantalaimon Dependency for app-emacs/ement[e2e] net-im category is used because pantalaimon is a transparent proxy - dev-python/janus-0.5 Dependency for net-im/pantalaimon
42 lines
829 B
Bash
42 lines
829 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
NEED_EMACS="24.1"
|
|
|
|
MY_PN="emacs-${PN}"
|
|
inherit elisp-common git-r3
|
|
|
|
DESCRIPTION="Extra features for Ement, Matrix client for GNU Emacs"
|
|
HOMEPAGE="https://gitlab.com/akater/emacs-ement-extras/-/blob/master/emacs-ement-extras.org"
|
|
EGIT_REPO_URI="https://gitlab.com/akater/${MY_PN}.git"
|
|
EGIT_BRANCH="release"
|
|
|
|
LICENSE="GPL-3+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
DOCS="" # README.org is a relative symlink
|
|
|
|
BDEPEND="
|
|
app-emacs/defmacro-gensym
|
|
app-emacs/ement
|
|
app-emacs/plz
|
|
"
|
|
|
|
RDEPEND="
|
|
app-emacs/ement
|
|
"
|
|
|
|
export ORG_IMMUTABLE_SOURCES_DIRECTORY="${SITEETC}/${PN}"
|
|
|
|
pkg_postinst() {
|
|
elisp-site-regen
|
|
if declare -f readme.gentoo_print_elog >/dev/null; then
|
|
readme.gentoo_print_elog
|
|
fi
|
|
}
|
|
|
|
pkg_postrm() {
|
|
elisp-site-regen
|
|
}
|