mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-19 16:38:01 +00:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
54 lines
1,011 B
Bash
54 lines
1,011 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DIST_AUTHOR=LDS
|
|
DIST_VERSION=1.30
|
|
DIST_EXAMPLES=( "eg/*" )
|
|
inherit perl-module
|
|
|
|
DESCRIPTION="An API for hierarchical tag/value structures"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc ~sparc x86"
|
|
IUSE="genbank store xml"
|
|
|
|
RDEPEND="
|
|
genbank? ( dev-perl/CGI )
|
|
store? ( virtual/perl-DB_File )
|
|
xml? ( dev-perl/XML-Parser )
|
|
"
|
|
BDEPEND="${RDEPEND}
|
|
virtual/perl-ExtUtils-MakeMaker
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-${DIST_VERSION}-no-xml-parser-check.patch"
|
|
)
|
|
|
|
PERL_RM_FILES=(
|
|
# Incomplete, instructs not to use, deps not in Gentoo
|
|
"Boulder/Labbase.pm"
|
|
)
|
|
|
|
src_prepare() {
|
|
use xml || PERL_RM_FILES+=(
|
|
"Boulder/XML.pm"
|
|
)
|
|
use genbank || PERL_RM_FILES+=(
|
|
"Boulder/Genbank.pm"
|
|
"Stone/GB_Sequence.pm"
|
|
"doc/genbank_tags.txt"
|
|
"eg/gb_get"
|
|
"eg/gb_search"
|
|
"eg/genbank.pl"
|
|
"eg/genbank2.pl"
|
|
"eg/genbank3.pl"
|
|
)
|
|
use store || PERL_RM_FILES+=(
|
|
"Boulder/Store.pm"
|
|
"t/store.t"
|
|
)
|
|
perl-module_src_prepare
|
|
}
|