mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-26 05:32:36 +00:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
55 lines
1.3 KiB
Bash
55 lines
1.3 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
PATCHVER="r2"
|
|
DESCRIPTION="free MS Word reader"
|
|
HOMEPAGE="http://www.winfield.demon.nl"
|
|
SRC_URI="http://www.winfield.demon.nl/linux/${P}.tar.gz
|
|
https://dev.gentoo.org/~grobian/distfiles/${PN}-gentoo-patches-${PATCHVER}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ppc64 ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
|
|
|
|
PATCHES=(
|
|
"${WORKDIR}"/${PN}-gentoo-patches-${PATCHVER}
|
|
"${FILESDIR}"/${P}-CVE-2014-8123.patch
|
|
)
|
|
|
|
DOCS=( Docs/{ChangeLog,Exmh,Emacs,FAQ,History,Netscape,QandA,ReadMe,Mozilla,Mutt} )
|
|
|
|
src_prepare() {
|
|
# Makefile is a symlink to Makefile.Linux, avoid that we patch it by
|
|
# accident using patch <2.7, see bug #435492
|
|
rm Makefile || die
|
|
|
|
default
|
|
|
|
# Re-add convenience symlink, see above
|
|
ln -s Makefile.Linux Makefile
|
|
}
|
|
|
|
src_configure() {
|
|
true
|
|
}
|
|
|
|
src_compile() {
|
|
emake PREFIX="${EPREFIX}" OPT="${CFLAGS}" CC="$(tc-getCC)" LD="$(tc-getCC)" \
|
|
LDFLAGS="${LDFLAGS}"
|
|
}
|
|
|
|
src_install() {
|
|
emake -j1 PREFIX="${EPREFIX}" DESTDIR="${D}" global_install
|
|
|
|
einstalldocs
|
|
|
|
docompress -x /usr/share/doc/${PF}/examples
|
|
docinto examples
|
|
dodoc Docs/testdoc.doc Docs/antiword.php
|
|
|
|
doman Docs/antiword.1
|
|
}
|