blob: 91663b6db45fb41cacce7ebd6bcaf68eb1efe196 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
inherit eutils toolchain-funcs
MY_P=${PN}-2.3.h
DESCRIPTION="Customizable, extensible automatic printer filter"
HOMEPAGE="http://www.pell.portland.or.us/~orc/Code/magicfilter/"
SRC_URI="http://www.pell.portland.or.us/~orc/Code/magicfilter/${MY_P}.tar.gz"
LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="lprng-failsafe"
DEPEND="app-text/ghostscript-gpl"
RDEPEND="${DEPEND}
lprng-failsafe? ( net-print/lprng )"
S=${WORKDIR}/${MY_P}
src_prepare() {
epatch \
"${FILESDIR}"/${PN}-2.3d-glibc-2.10.patch \
"${FILESDIR}"/${PN}-2.3h-configure.patch \
"${FILESDIR}"/${PN}-2.3h-makefile.patch
}
src_configure() {
local myconf
use lprng-failsafe && myconf="--with-lprng"
tc-export CC
export AC_CPP_PROG="$(tc-getCPP)"
./configure.sh \
--prefix=/usr \
--mandir=/usr/share/man \
--filterdir=/usr/share/magicfilter/filters \
${myconf} || die
}
|