mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-08 06:09:43 +02:00
Change was created by running the following command:: ekeyword ^ia64 */*/*.ebuild Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
41 lines
936 B
Bash
41 lines
936 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit flag-o-matic toolchain-funcs
|
|
|
|
MY_P="clit${PV//./}"
|
|
|
|
DESCRIPTION="CLit converts MS ebook .lit files to .opf (xml+html+png+jpg)"
|
|
HOMEPAGE="http://www.convertlit.com/"
|
|
SRC_URI="http://www.convertlit.com/${MY_P}src.zip"
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~loong ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux ~ppc-macos"
|
|
|
|
RDEPEND=">=dev-libs/libtommath-0.36-r1"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="app-arch/unzip"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-respectflags-r1.patch
|
|
"${FILESDIR}"/fix-Wformat-security-warnings.patch
|
|
"${FILESDIR}"/support-ar-variable.patch
|
|
"${FILESDIR}"/${P}-clang16.patch
|
|
)
|
|
|
|
src_compile() {
|
|
tc-export AR CC
|
|
append-cflags -std=gnu89 # old codebase, incompatible with c2x
|
|
|
|
emake -C lib
|
|
emake -C ${MY_P}
|
|
}
|
|
|
|
src_install() {
|
|
dobin ${MY_P}/clit
|
|
einstalldocs
|
|
}
|