Diff dictd-1.13.0-r5 with a dictd-1.13.0-r6
/usr/portage/app-text/dictd/dictd-1.13.0-r6.ebuild 2023-10-09 14:52:28.872368335 +0300 | ||
---|---|---|
1 |
# Copyright 1999-2022 Gentoo Authors |
|
1 |
# Copyright 1999-2023 Gentoo Authors |
|
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 |
EAPI=7 |
|
4 |
EAPI=8 |
|
5 | 5 | |
6 | 6 |
inherit autotools readme.gentoo-r1 systemd |
7 | 7 | |
... | ... | |
11 | 11 | |
12 | 12 |
LICENSE="GPL-1+ GPL-2+" |
13 | 13 |
SLOT="0" |
14 |
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" |
|
15 |
IUSE="dbi judy minimal test" |
|
14 |
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" |
|
15 |
IUSE="dbi judy minimal selinux test" |
|
16 | 16 |
RESTRICT="!test? ( test )" |
17 | 17 | |
18 | 18 |
# <gawk-3.1.6 makes tests fail. |
... | ... | |
32 | 32 |
app-alternatives/yacc |
33 | 33 |
test? ( !~sys-apps/gawk-4.2.1 ) |
34 | 34 |
" |
35 |
RDEPEND+=" selinux? ( sec-policy/selinux-dictd )" |
|
35 | 36 | |
36 | 37 |
DOC_CONTENTS=" |
37 | 38 |
To start and use ${PN} you need to emerge at least one dictionary from |
... | ... | |
48 | 49 |
"${FILESDIR}"/dictd-1.13.0-lex.patch |
49 | 50 |
"${FILESDIR}"/dictd-1.13.0-libtool.patch # 818535 |
50 | 51 |
"${FILESDIR}"/dictd-1.13.0-version.patch # 852884 |
52 |
"${FILESDIR}"/dictd-1.13.0-stack-smashing.patch # 908998 |
|
51 | 53 |
) |
52 | 54 | |
53 | 55 |
src_prepare() { |
54 | 56 |
default |
55 | 57 | |
58 |
sed -i -e 's:configure.in:configure.ac:' Makefile.in || die |
|
56 | 59 |
eautoreconf |
57 | 60 |
} |
58 | 61 |