blob: ac045cbcd994e5a0a2a9c8aed4a57c5e4e01355d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
inherit eapi9-ver toolchain-funcs
if [[ ${PV} == "99999999" ]] ; then
inherit git-r3
EGIT_REPO_URI="
https://anongit.gentoo.org/git/proj/crossdev.git
https://github.com/gentoo/crossdev
"
else
SRC_URI="https://distfiles.gentoo.org/pub/proj/toolchain/crossdev/${P}.tar.xz"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
fi
DESCRIPTION="Gentoo Cross-toolchain generator"
HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Crossdev"
LICENSE="GPL-2"
SLOT="0"
RDEPEND="
>=sys-apps/portage-2.1
app-shells/bash
sys-apps/gentoo-functions
sys-apps/config-site
"
BDEPEND="app-arch/xz-utils"
src_install() {
tc-export PKG_CONFIG # Bug 955822
default
if [[ ${PV} == "99999999" ]] ; then
sed -i "s:@CDEVPV@:${EGIT_VERSION}:" "${ED}"/usr/bin/crossdev || die
else
sed -i "s:@CDEVPV@:${PV}:" "${ED}"/usr/bin/crossdev || die
fi
dodir /usr/share/config.site.d
mv "${ED}"/usr/share/config.site{,.d/80crossdev.conf} || die
}
pkg_postinst() {
if [[ -z ${REPLACING_VERSIONS} ]] || ver_replacing -lt 20260501-r1; then
ewarn "crossdev requires another repository exist on the system for"
ewarn "its generated ebuilds. It uses the 'crossdev' repository by default,"
ewarn "and otherwise the first non-gentoo repository it finds."
ewarn
ewarn "If you do not already have a 'crossdev' repository,"
ewarn "it is recommended that you create one with the following steps:"
ewarn " installing app-eselect/eselect-repository"
ewarn " running eselect repository create crossdev"
ewarn
ewarn "Alternatively, always invoke crossdev with --ov-output NAME.".
fi
}
|