blob: 57614c50b3dee2e42d908012e422a4b8e58ef950 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_RUBY="ruby31 ruby32 ruby33"
RUBY_FAKEGEM_DOCDIR="doc/site/api"
RUBY_FAKEGEM_EXTRADOC="NEWS README.rdoc"
RUBY_FAKEGEM_EXTENSIONS=(ext/augeas/extconf.rb)
inherit ruby-fakegem
DESCRIPTION="Ruby bindings for Augeas"
HOMEPAGE="https://augeas.net/"
SRC_URI="http://download.augeas.net/ruby/${P}.gem"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
RDEPEND=">=app-admin/augeas-1.1.0"
DEPEND="${RDEPEND}
dev-libs/libxml2"
PATCHES=( "${FILESDIR}/${P}-gcc14.patch" )
|