commit: 152639a3d65fd945aa9e5d411c807dbe9f7c5bf3 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Thu Jun 20 14:44:07 2024 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Thu Jun 20 14:51:08 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=152639a3
app-emacs/org-mode: sync live 9999 version Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/org-mode/org-mode-9999.ebuild | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/app-emacs/org-mode/org-mode-9999.ebuild b/app-emacs/org-mode/org-mode-9999.ebuild index ac0cf59313b4..1fc3dbd33b95 100644 --- a/app-emacs/org-mode/org-mode-9999.ebuild +++ b/app-emacs/org-mode/org-mode-9999.ebuild @@ -1,41 +1,47 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit elisp readme.gentoo-r1 -if [[ ${PV} == 9999 ]]; then +DESCRIPTION="An Emacs mode for notes and project planning" +HOMEPAGE="https://orgmode.org/" + +if [[ "${PV}" == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://git.savannah.gnu.org/git/emacs/${PN}.git" EGIT_CHECKOUT_DIR="${WORKDIR}/org" - inherit git-r3 S="${WORKDIR}/org" else MY_P="${PN}-release_${PV}" + SRC_URI="https://git.savannah.gnu.org/cgit/emacs/${PN}.git/snapshot/${MY_P}.tar.gz" S="${WORKDIR}/${MY_P}" + KEYWORDS="~amd64 ~ppc ~x86" fi -DESCRIPTION="An Emacs mode for notes and project planning" -HOMEPAGE="https://www.orgmode.org/" - LICENSE="GPL-3+ FDL-1.3+ CC-BY-SA-3.0 odt-schema? ( OASIS-Open )" SLOT="0" IUSE="doc odt-schema" RESTRICT="test" -BDEPEND="doc? ( virtual/texi2dvi )" +BDEPEND=" + doc? ( virtual/texi2dvi ) +" SITEFILE="50${PN}-gentoo.el" src_compile() { - emake datadir="${EPREFIX}${SITEETC}/${PN}" - use doc && emake pdf card + emake -j1 datadir="${EPREFIX}${SITEETC}/${PN}" + + use doc && emake -j1 pdf card } src_install() { - emake \ + emake -j1 \ DESTDIR="${D}" \ ETCDIRS="styles csl $(use odt-schema && echo schema)" \ lispdir="${EPREFIX}${SITELISP}/${PN}" \