mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-21 14:38:43 +02:00
Change was created by running the following command:: ekeyword ^ia64 */*/*.ebuild Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
31 lines
771 B
Bash
31 lines
771 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit elisp
|
|
|
|
DESCRIPTION="GNU Emacs mode for handling Ninja build files"
|
|
HOMEPAGE="https://github.com/ninja-build/ninja/"
|
|
|
|
if [[ "${PV}" == *9999* ]] ; then
|
|
inherit git-r3
|
|
|
|
EGIT_REPO_URI="https://github.com/ninja-build/${PN/-mode}.git"
|
|
else
|
|
SRC_URI="https://github.com/ninja-build/${PN/-mode}/archive/v${PV}.tar.gz
|
|
-> ${P/-mode}.tar.gz"
|
|
S="${WORKDIR}/${P/-mode}/misc"
|
|
|
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
|
|
fi
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
|
|
RDEPEND="
|
|
!<dev-build/ninja-1.11.1-r4[emacs(-)]
|
|
"
|
|
|
|
DOCS=()
|
|
SITEFILE="50${PN}-gentoo-r1.el"
|