diff options
author | 2022-11-19 00:35:47 +0000 | |
---|---|---|
committer | 2022-11-19 01:34:42 +0000 | |
commit | e6b9dfb87bb0e636b46ff40111252f96196375e7 (patch) | |
tree | 10898534d7899e9414d54dd638ab70e4700e03d2 /app-arch/zip/zip-3.0-r7.ebuild | |
parent | app-emacs/swift-mode: new package; add 8.6.0 (diff) | |
download | gentoo-e6b9dfb87bb0e636b46ff40111252f96196375e7.tar.gz gentoo-e6b9dfb87bb0e636b46ff40111252f96196375e7.tar.bz2 gentoo-e6b9dfb87bb0e636b46ff40111252f96196375e7.zip |
app-arch/zip: further Clang 16 fixes (just in case)
I only started looking at this because I saw a clang.diff from toralf
which indicated more problems, but it turned out to be for zip-3.0-r4, not
-r5/-r6 which had fixes [0][1][2].
-r6 is actually clean wrt clang.diff from the /etc/portage/bashrc hook
we're using, but I noticed these additional nits while checking over
configure, so may as well apply these just to be safe.
[0] 5d06aa4c9b99bd1bcbbd8cedeb0a3ca54335905b
[1] 4757f8e333a6b23956d6e9a53bac21365e70cc4f
[2] e20ac65e339e8fe52f62aa43b98a60ffd4dc16ed
Bug: https://bugs.gentoo.org/869203
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-arch/zip/zip-3.0-r7.ebuild')
-rw-r--r-- | app-arch/zip/zip-3.0-r7.ebuild | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/app-arch/zip/zip-3.0-r7.ebuild b/app-arch/zip/zip-3.0-r7.ebuild new file mode 100644 index 000000000000..f1f6d540e823 --- /dev/null +++ b/app-arch/zip/zip-3.0-r7.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit edo toolchain-funcs flag-o-matic + +MY_P="${PN}${PV//.}" +DESCRIPTION="Info ZIP (encryption support)" +HOMEPAGE="https://infozip.sourceforge.net/Zip.html" +SRC_URI="mirror://sourceforge/infozip/${MY_P}.zip" +S="${WORKDIR}"/${MY_P} + +LICENSE="Info-ZIP" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux" +IUSE="bzip2 crypt natspec unicode" + +DEPEND="${RDEPEND}" +RDEPEND="bzip2? ( app-arch/bzip2 ) + natspec? ( dev-libs/libnatspec )" +BDEPEND="app-arch/unzip" + +PATCHES=( + "${FILESDIR}"/${P}-no-crypt.patch # bug #238398 + "${FILESDIR}"/${P}-pic.patch + "${FILESDIR}"/${P}-exec-stack.patch # bug #122849 + "${FILESDIR}"/${P}-build.patch # bug #200995 + "${FILESDIR}"/${P}-zipnote-freeze.patch # bug #322047 + "${FILESDIR}"/${P}-format-security.patch # bug #512414 + "${FILESDIR}"/${P}-clang-15-configure-tests.patch +) + +src_prepare() { + # bug #275244 + use natspec && PATCHES+=( "${FILESDIR}"/${PN}-3.0-natspec.patch ) + default +} + +src_configure() { + # Needed for Clang 16 + append-flags -std=gnu89 + + append-cppflags \ + -DLARGE_FILE_SUPPORT \ + -DUIDGID_NOT_16BIT \ + -D$(usev !bzip2 'NO')BZIP2_SUPPORT \ + -D$(usev !crypt 'NO')CRYPT \ + -D$(usev !unicode 'NO')UNICODE_SUPPORT + + # - We use 'sh' because: 1. lacks +x bit, easier; 2. it tries to load bashdb + # - Third arg disables bzip2 logic as we handle it ourselves above. + edo sh ./unix/configure "$(tc-getCC)" "-I. -DUNIX ${CFLAGS} ${CPPFLAGS}" "${T}" + + if use bzip2 ; then + sed -i -e "s:LFLAGS2=:&'-lbz2 ':" flags || die + fi +} + +src_compile() { + emake \ + CPP="$(tc-getCPP)" \ + -f unix/Makefile generic +} + +src_install() { + dobin zip zipnote zipsplit + doman man/zip{,note,split}.1 + if use crypt ; then + dobin zipcloak + doman man/zipcloak.1 + fi + dodoc BUGS CHANGES README* TODO WHATSNEW WHERE proginfo/*.txt +} |