blob: 44a212ceb8d6aede83709ab8933e64fc2254d4aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 2018 Redcore Linux Project
# Distributed under the terms of the GNU General Public License v2
require flag-o-matic
require github [ user=gentoo ]
HOMEPAGE="https://www.gentoo.org"
SUMMARY="Base functions required by all gentoo systems"
LICENCES="GPL-2"
SLOT="0"
PLATFORMS="~amd64 ~x86"
DEFAULT_SRC_INSTALL_PARAMS=(
ROOTSBINDIR=/usr/$(exhost --target)/bin
ROOTLIBEXECDIR=/usr/$(exhost --target)/libexec/gentoo
)
src_prepare() {
append-cppflags -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
}
|