Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 184700 | Differences between
and this patch

Collapse All | Expand All

(-)ncurses-5.6-r2.ebuild.orig (-2 / +8 lines)
Lines 15-21 Link Here
15
LICENSE="MIT"
15
LICENSE="MIT"
16
SLOT="5"
16
SLOT="5"
17
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
17
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
18
IUSE="bootstrap build debug doc gpm minimal nocxx profile trace unicode"
18
IUSE="ada bootstrap build debug doc gpm minimal nocxx profile trace unicode"
19
19
20
DEPEND="gpm? ( sys-libs/gpm )"
20
DEPEND="gpm? ( sys-libs/gpm )"
21
21
Lines 69-74 Link Here
69
		--disable-ext-colors \
69
		--disable-ext-colors \
70
		--disable-ext-mouse \
70
		--disable-ext-mouse \
71
	"
71
	"
72
	local conf_ada
73
	if use ada ; then
74
		conf_ada="--with-ada"
75
	else
76
		conf_ada="--without-ada --enable-warnings"
77
	fi
72
	econf \
78
	econf \
73
		--libdir="/$(get_libdir)" \
79
		--libdir="/$(get_libdir)" \
74
		--with-terminfo-dirs="/etc/terminfo:/usr/share/terminfo" \
80
		--with-terminfo-dirs="/etc/terminfo:/usr/share/terminfo" \
Lines 83-94 Link Here
83
		--enable-const \
89
		--enable-const \
84
		--enable-colorfgbg \
90
		--enable-colorfgbg \
85
		--enable-echo \
91
		--enable-echo \
86
		--enable-warnings \
87
		$(use_with debug assertions) \
92
		$(use_with debug assertions) \
88
		$(use_with !debug leaks) \
93
		$(use_with !debug leaks) \
89
		$(use_with debug expanded) \
94
		$(use_with debug expanded) \
90
		$(use_with !debug macros) \
95
		$(use_with !debug macros) \
91
		$(use_with trace) \
96
		$(use_with trace) \
97
		${conf_ada} \
92
		${conf_abi} \
98
		${conf_abi} \
93
		"$@" \
99
		"$@" \
94
		|| die "configure failed"
100
		|| die "configure failed"

Return to bug 184700