View Raw Ebuild
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="A file archiver with a high compression ratio"
HOMEPAGE="https://7-zip.org"
SRC_URI="
https://downloads.sourceforge.net/sevenzip/7-Zip/${PV}/7z$(ver_rs 1 '')-src.tar.xz
"
S="${WORKDIR}"
RESTRICT="primaryuri"
LICENSE="LGPL-2.1 BSD rar? ( unRAR )"
SLOT="0"
KEYWORDS="~amd64"
IUSE="asm rar static"
BDEPEND="
asm? ( dev-lang/jwasm )
"
DOCS=(
DOC/7zC.txt
DOC/7zFormat.txt
DOC/lzma.txt
DOC/Methods.txt
DOC/readme.txt
DOC/src-history.txt
)
src_prepare() {
sed -e 's: -\(O2\|\<s\>\)::' -i CPP/7zip/7zip_gcc.mak
default
}
src_compile() {
local myemakeargs=(
CFLAGS_BASE2="${CFLAGS}"
CXXFLAGS_BASE2="${CXXFLAGS}"
CFLAGS_WARN_WALL='-Wall -Wextra'
IS_X64=1
USE_ASM=$(usex asm 1 '')
USE_JWASM=$(usex asm 1 '')
COMPL_STATIC=$(usex static 1 '')
O="${S}"
DISABLE_RAR=$(usex rar '' 1)
)
tc-env_build emake \
-C CPP/7zip/Bundles/Alone2 \
-f makefile.gcc \
"${myemakeargs[@]}"
}
src_install() {
dobin 7zz$(usex static 's' '')
einstalldocs
}