blob: 8181c162814c2b9d6f49249352a0bb53db3e5c8d (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools flag-o-matic toolchain-funcs
MY_PV="${PV%%_p*}"
PATCH_LEVEL="${PV##*_p}"
DESCRIPTION="Utility for opening arj archives"
HOMEPAGE="https://arj.sourceforge.net/"
SRC_URI="
mirror://debian/pool/main/a/arj/arj_${MY_PV}.orig.tar.gz
mirror://debian/pool/main/a/arj/arj_${MY_PV}-${PATCH_LEVEL}.debian.tar.xz"
S="${WORKDIR}/${PN}-${MY_PV}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
PATCHES=(
# get order of patches from series file. otherwise the order is wrong :/
"${WORKDIR}"/debian/patches/001_arches_align.patch
"${WORKDIR}"/debian/patches/002_no_remove_static_const.patch
"${WORKDIR}"/debian/patches/003_64_bit_clean.patch
"${WORKDIR}"/debian/patches/004_parallel_build.patch
"${WORKDIR}"/debian/patches/005_use_system_strnlen.patch
"${WORKDIR}"/debian/patches/006_use_safe_strcpy.patch
"${WORKDIR}"/debian/patches/hurd_no_fcntl_getlk.patch
"${WORKDIR}"/debian/patches/security_format.patch
"${WORKDIR}"/debian/patches/doc_refer_robert_k_jung.patch
"${WORKDIR}"/debian/patches/gnu_build_fix.patch
"${WORKDIR}"/debian/patches/gnu_build_flags.patch
"${WORKDIR}"/debian/patches/gnu_build_strip.patch
"${WORKDIR}"/debian/patches/gnu_build_pie.patch
"${WORKDIR}"/debian/patches/self_integrity_64bit.patch
"${WORKDIR}"/debian/patches/security-afl.patch
"${WORKDIR}"/debian/patches/security-traversal-dir.patch
"${WORKDIR}"/debian/patches/security-traversal-symlink.patch
"${WORKDIR}"/debian/patches/out-of-bounds-read.patch
"${WORKDIR}"/debian/patches/remove_build_date.patch
"${WORKDIR}"/debian/patches/reproducible_help_archive.patch
"${WORKDIR}"/debian/patches/gnu_build_cross.patch
"${WORKDIR}"/debian/patches/fix-time_t-usage.patch
"${WORKDIR}"/debian/patches/gnu_build_fix_autoreconf.patch
"${WORKDIR}"/debian/patches/fix-implicit-func.patch
"${FILESDIR}"/arj-3.10.22-implicit-declarations.patch
"${FILESDIR}"/arj-3.10.22-darwin.patch
)
DOCS=( doc/compile.txt doc/debug.txt doc/glossary.txt doc/rev_hist.txt doc/xlation.txt )
src_prepare() {
default
cd gnu || die 'failed to change to the "gnu" directory'
echo -n "" > stripgcc.lnk || die "failed to disable stripgcc.lnk"
eautoreconf
}
src_configure() {
# Needed for keeping intergrity_identifier around so that postproc can find it later
# GCC defaults to enabling it, Clang doesn't.
# bug #509700
append-cflags -fkeep-static-consts
# Debian patches assume this is set. Can be updated with "date +%s"
export SOURCE_DATE_EPOCH="1737318540"
tc-export CC # Uses autoconf but not automake.
export CC_FOR_BUILD="$(tc-getBUILD_CC)"
if tc-is-cross-compiler; then
export CFLAGS_FOR_BUILD="${BUILD_CFLAGS}"
else
export CFLAGS_FOR_BUILD="${CFLAGS}"
fi
cd gnu || die 'failed to change to the "gnu" directory'
econf
}
src_test() {
# debian includes a test script. why not use it?
local -x AUTOPKGTEST_TMP="${T}/debian-test"
local -x PATH="${S}/linux-gnu/en/rs/arj/:${PATH}"
"${WORKDIR}"/debian/tests/test-command || die
}
|