blob: 53882ab7a0f1bc3e8a22a25c8ef313d77a6a8918 (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools
DESCRIPTION="Ghostscript and cups printer drivers"
HOMEPAGE="http://gutenprint.sourceforge.net"
MY_P="${P/_/-}"
S="${WORKDIR}/${MY_P}"
SRC_URI="mirror://sourceforge/gimp-print/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="cups gimp gtk nls readline ppds static-libs"
REQUIRED_USE="gimp? ( gtk )"
RDEPEND="
dev-lang/perl
readline? ( sys-libs/readline:0= )
cups? ( >=net-print/cups-1.1.14 )
gimp? ( >=media-gfx/gimp-2.2 x11-libs/gtk+:2 )
gtk? ( x11-libs/gtk+:2 )
nls? ( virtual/libintl )
"
DEPEND="${RDEPEND}
virtual/pkgconfig
nls? ( sys-devel/gettext )
"
RESTRICT="test"
DOCS=( AUTHORS ChangeLog NEWS README doc/gutenprint-users-manual.{pdf,odt} )
PATCHES=(
"${FILESDIR}"/${PN}-5.2.4-CFLAGS.patch
"${FILESDIR}"/${PN}-5.2.10-genppd.patch # bug 382927
)
src_prepare() {
default
sed -i "s:m4local:m4extra:" Makefile.am || die
sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" \
-e "s/AM_PROG_CC_STDC/AC_PROG_CC/" \
-i configure.ac || die
eautoreconf
}
src_configure() {
local myeconfargs=(
--enable-test
--disable-translated-cups-ppds
$(use_enable gtk libgutenprintui2)
$(use_with gimp gimp2)
$(use_with gimp gimp2-as-gutenprint)
$(use_with cups)
$(use_enable nls)
$(use_with readline)
$(use_enable static-libs static)
)
if use cups && use ppds; then
myeconfargs+=( --enable-cups-ppds --enable-cups-level3-ppds )
else
myeconfargs+=( --disable-cups-ppds )
fi
econf "${myeconfargs[@]}"
}
src_install() {
default
dodoc doc/FAQ.html
dodoc -r doc/gutenprintui2/html
rm -r "${ED}"/usr/share/gutenprint/doc || die
find "${ED}" -name '*.la' -exec rm -f '{}' + || die
}
pkg_postinst() {
if [[ ${ROOT} == / ]] && [[ -x /usr/sbin/cups-genppdupdate ]]; then
elog "Updating installed printer ppd files"
elog $(/usr/sbin/cups-genppdupdate)
else
elog "You need to update installed ppds manually using cups-genppdupdate"
fi
}
|