blob: d603e82f51ed5c9b5f660e6d5a0b889fb696b029 (
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
|
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Legacy library for PPD files, split out of cups-filters"
HOMEPAGE="https://github.com/OpenPrinting/libppd"
SRC_URI="https://github.com/OpenPrinting/libppd/releases/download/${PV}/${P}.tar.xz"
LICENSE="Apache-2.0"
SLOT="0"
IUSE="+postscript +poppler"
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~x86"
# pdftops has various possible implementations, but the default
# really needs to be decent
REQUIRED_USE="|| ( postscript poppler )"
RDEPEND="
>=net-print/cups-2
net-print/libcupsfilters
!<net-print/cups-filters-2.0.0
postscript? ( >=app-text/ghostscript-gpl-9.09[cups] )
poppler? ( >=app-text/poppler-0.32[utils] )
"
DEPEND="${RDEPEND}"
BDEPEND="
>=sys-devel/gettext-0.18.3
virtual/pkgconfig
"
src_configure() {
local myeconfargs=(
--localstatedir="${EPREFIX}"/var
--with-cups-rundir="${EPREFIX}"/run/cups
# This does build time checks for (preferred) tool interfaces.
$(use_enable postscript ghostscript)
$(use_enable poppler pdftops)
# These fallbacks are just probed for the path. Always enable them.
--with-mutool-path="${EPREFIX}"/usr/bin/mutool
--with-pdftocairo-path="${EPREFIX}"/usr/bin/pdftocairo # from poppler
# unpackaged
--disable-acroread
)
econf "${myeconfargs[@]}"
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
}
|