blob: 32993259f57d8184e7ccf28f404d4ee4cf023325 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-print/lprng/lprng-3.8.27-r2.ebuild,v 1.2 2005/07/14 23:41:00 agriffis Exp $
inherit eutils flag-o-matic
IUSE="foomaticdb kerberos nls"
MY_PN=LPRng
S=${WORKDIR}/${MY_PN}-${PV}
DESCRIPTION="Extended implementation of the Berkeley LPR print spooler"
HOMEPAGE="http://www.lprng.com/"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~mips"
SRC_URI="ftp://ftp.lprng.com/pub/${MY_PN}/${MY_PN}/${MY_PN}-${PV}.tgz"
PROVIDE="virtual/lpr"
DEPEND="virtual/libc
sys-process/procps
nls? ( sys-devel/gettext )
kerberos? ( virtual/krb5 )"
RDEPEND="virtual/libc
sys-process/procps
!virtual/lpr
foomaticdb? ( net-print/foomatic )"
LICENSE="|| ( GPL-2 Artistic )"
SLOT="0"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-certs.diff
}
src_compile() {
local myconf
use nls && myconf="--enable-nls"
use kerberos && myconf="--enable-kerberos"
# wont compile with -O3, needs -O2
replace-flags -O[3-9] -O2
./configure \
--prefix=/usr \
--disable-setuid \
--with-userid=lp \
--with-groupid=lp \
--with-lpd_conf_path=/etc/lprng/lpd.conf \
--with-lpd_perms_path=/etc/lprng/lpd.perms \
--libexecdir=/usr/lib \
--sysconfdir=/etc/lprng \
--mandir=/usr/share/man \
--host=${CHOST} ${myconf} || die
make || die "printer on fire!"
}
src_install() {
dodir /var/spool/lpd
diropts -m 700 -o lp -g lp
dodir /var/spool/lpd/lp
make install \
DESTDIR=${D} \
POSTINSTALL="NO" \
gnulocaledir=${D}/usr/share/locale || die
# now included in foomatic 3.0
#exeinto /usr/bin
#doexe ${FILESDIR}/lpdomatic
dodoc CHANGES COPYRIGHT LICENSE README VERSION \
HOWTO/LPRng-HOWTO.pdf ${FILESDIR}/printcap \
lpd.conf lpd.perms
dohtml HOWTO/*
insinto /etc/lprng
doins ${FILESDIR}/printcap lpd.conf lpd.perms
dosym /etc/lprng/printcap /etc/printcap
exeinto /etc/init.d
newexe ${FILESDIR}/lprng-init lprng
}
pkg_postinst() {
einfo "If printing does not work, try 'checkpc'/'checkpc -f'"
}
|