Files
gentoo/app-text/pspdftool/pspdftool-0.03.ebuild
Michał Górny 7215a6a587 */*: Add := to virtual/zlib deps
Done via:

```
git grep -l 'virtual/zlib ' |
  xargs sed -i -e 's@virtual/zlib @virtual/zlib:= @g'
```

with some manual reverts.

Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-11-04 10:45:41 +01:00

40 lines
844 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools flag-o-matic
DESCRIPTION="Tool for prepress preparation of PDF and PostScript documents"
HOMEPAGE="https://sourceforge.net/projects/pspdftool"
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="zlib"
RDEPEND="zlib? ( virtual/zlib:= )"
DEPEND="${RDEPEND}"
src_prepare() {
default
mv configure.{in,ac} || die
eautoreconf
}
src_configure() {
# -Werror=strict-aliasing; do not trust for LTO-safety either.
# https://bugs.gentoo.org/855023
# Upstream is dead for nearly a decade. Not forwarded.
append-flags -fno-strict-aliasing
filter-lto
econf $(use_with zlib)
}
src_install() {
default
rm -rf "${ED}"/usr/share/doc/${PN}* || die
}