Diff libmcrypt-2.5.8-r4 with a libmcrypt-2.5.8-r6
/usr/portage/dev-libs/libmcrypt/libmcrypt-2.5.8-r6.ebuild 2023-10-09 14:52:29.524368351 +0300 | ||
---|---|---|
1 | 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 |
7 | 7 | |
... | ... | |
22 | 22 |
PATCHES=( |
23 | 23 |
"${FILESDIR}/${P}-rotate-mask.patch" |
24 | 24 |
"${FILESDIR}/${P}-autoconf-2.70.patch" #775113 |
25 |
# http://sourceforge.net/tracker/index.php?func=detail&aid=1872801&group_id=87941&atid=584895 |
|
26 |
"${FILESDIR}/${P}-uninitialized.patch" |
|
27 |
"${FILESDIR}/${P}-prototypes.patch" |
|
28 |
"${FILESDIR}/${P}-implicit-int.patch" |
|
25 | 29 |
) |
26 | 30 | |
27 | 31 |
src_prepare() { |
... | ... | |
31 | 35 |
sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac libltdl/configure.ac || die |
32 | 36 |
eautoreconf # update stale autotools |
33 | 37 |
} |
38 | ||
39 |
src_install() { |
|
40 |
default |
|
41 |
find "${ED}" -type f -name '*.la' -delete || die |
|
42 |
} |