blob: 2fd7eb01ef60006ce6c450c963a40886de8dea6e (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-print/gimp-print-cups/gimp-print-cups-4.3.11.ebuild,v 1.3 2003/03/11 21:11:46 seemant Exp $
IUSE="nls gtk readline"
MY_PN=${PN/-cups/}
DESCRIPTION="The Common Unix Printing System - Gimp Print Drivers"
HOMEPAGE="http://gimp-print.sourceforge.net"
KEYWORDS="~x86 ~ppc"
SRC_URI="mirror://sourceforge/${MY_PN}/${MY_PN}-${PV}.tar.bz2"
S=${WORKDIR}/${MY_PN}-${PV}
DEPEND=">=net-print/cups-1.1.18
>=net-print/foomatic-2.0.2
media-gfx/imagemagick
sys-libs/readline
dev-lang/perl
gtk? ( =x11-libs/gtk+-1.2* )
!media-gfx/gimp-print"
LICENSE="GPL-2"
SLOT="0"
src_compile() {
local myconf
use nls \
&& myconf="${myconf} --enable-nls" \
|| myconf="${myconf} --disable-nls"
use readline \
&& myconf="${myconf} --enable-readline" \
|| myconf="${myconf} --disable-readline"
use gtk \
&& myconf="${myconf} --enable-lexmarkutil" \
|| myconf="${myconf} --disable-lexmarkutil"
#--without-translated-ppds \
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--datadir=/usr/share \
--mandir=/usr/share/man \
--localstatedir=/var/lib \
--infodir=/usr/share/info \
--with-cups \
--enable-test \
--with-samples \
--without-gimp \
--with-escputil \
--with-foomatic \
--with-testpattern \
--with-user-guide \
--host=${CHOST} ${myconf} || die "bad ./configure"
emake || die "compile problem"
# patch src/main/gimpprint.m4 < ${FILESDIR}/gimpprint.m4.patch || die
}
src_install () {
make install DESTDIR=${D} || die
exeinto /usr/share/gimp-print
doexe test/{unprint,pcl-unprint,bjc-unprint,parse-escp2,parse-bjc}
dodoc AUTHORS COPYING ChangeLog NEWS README \
doc/gimpprint.ps
dohtml doc/manual-html doc/FAQ.html
}
|