mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08: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>
45 lines
1.0 KiB
Bash
45 lines
1.0 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DIST_AUTHOR=GIRAFFED
|
|
DIST_VERSION=1.45
|
|
DIST_EXAMPLES=("demo" "demo2" "demo.form" "demo.menu" "demo.panel")
|
|
inherit perl-module toolchain-funcs
|
|
|
|
DESCRIPTION="Curses interface modules for Perl"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm ~hppa ppc ppc64 ~s390 ~sparc x86"
|
|
IUSE="+unicode"
|
|
|
|
RDEPEND="
|
|
>=sys-libs/ncurses-6:=[unicode(+)?]
|
|
virtual/perl-Data-Dumper
|
|
"
|
|
DEPEND="
|
|
>=sys-libs/ncurses-6:=[unicode(+)?]
|
|
"
|
|
BDEPEND="
|
|
${RDEPEND}
|
|
virtual/perl-ExtUtils-MakeMaker
|
|
virtual/pkgconfig
|
|
test? ( virtual/perl-Test-Simple )
|
|
"
|
|
|
|
src_configure() {
|
|
myconf=( FORMS PANELS MENUS )
|
|
mydoc=( HISTORY )
|
|
|
|
export CURSES_LIBTYPE="$(usex unicode ncursesw ncurses)"
|
|
export CURSES_LDFLAGS=$($(tc-getPKG_CONFIG) --libs ${CURSES_LIBTYPE} || die)
|
|
export CURSES_CFLAGS=$($(tc-getPKG_CONFIG) --cflags ${CURSES_LIBTYPE} || die)
|
|
|
|
perl-module_src_configure
|
|
|
|
if ! use unicode ; then
|
|
sed -i "s:<form.h>:\"${ESYSROOT}/usr/include/form.h\":" "${S}"/c-config.h || die
|
|
fi
|
|
}
|