Сравнение pcmciautils-018_p8-r3 с pcmciautils-018_p14
/usr/portage/sys-apps/pcmciautils/pcmciautils-018_p14.ebuild 2023-10-09 14:52:35.396368499 +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 | 4 |
EAPI=7 |
... | ... | |
11 | 11 |
DESCRIPTION="PCMCIA userspace utilities for Linux" |
12 | 12 |
HOMEPAGE="https://packages.qa.debian.org/pcmciautils" |
13 | 13 |
SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${MY_PV}.orig.tar.gz |
14 |
mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${MY_PV}-${DEB_REV}.debian.tar.gz" |
|
14 |
mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${MY_PV}-${DEB_REV}.debian.tar.xz" |
|
15 | 15 |
S="${WORKDIR}"/${PN}-${MY_PV} |
16 | 16 | |
17 | 17 |
LICENSE="GPL-2" |
18 | 18 |
SLOT="0" |
19 |
KEYWORDS="amd64 arm ~arm64 ~loong ppc ~riscv x86" |
|
19 |
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~riscv ~x86" |
|
20 | 20 |
IUSE="debug staticsocket" |
21 | 21 | |
22 | 22 |
RDEPEND="sys-apps/kmod[tools]" |
... | ... | |
27 | 27 |
PATCHES=( |
28 | 28 |
"${WORKDIR}"/debian/patches/no-modprobe-rules.patch |
29 | 29 |
"${WORKDIR}"/debian/patches/remove-libsysfs-dep.patch |
30 |
"${FILESDIR}"/${P}-flex-2.6.3-fix.patch |
|
30 |
"${FILESDIR}"/${PN}-018_p8-flex-2.6.3-fix.patch |
|
31 | 31 |
"${FILESDIR}"/${PN}-018_p8-musl-unsigned-type.patch |
32 |
"${WORKDIR}"/debian/patches/parallel-build.patch |
|
32 | 33 |
) |
33 | 34 | |
34 | 35 |
pkg_setup() { |
... | ... | |
59 | 60 |
V=true |
60 | 61 |
udevdir="$(get_udevdir)" |
61 | 62 |
CC="$(tc-getCC)" |
63 |
HOSTCC="$(tc-getBUILD_CC)" |
|
62 | 64 |
LD="$(tc-getCC)" |
63 | 65 |
AR="$(tc-getAR)" |
64 | 66 |
STRIP=true |
... | ... | |
76 | 78 | |
77 | 79 |
dodoc doc/*.txt |
78 | 80 |
} |
81 | ||
82 |
pkg_postinst() { |
|
83 |
udev_reload |
|
84 |
} |
|
85 | ||
86 |
pkg_postrm() { |
|
87 |
udev_reload |
|
88 |
} |