blob: 67fda1b2b1f32ed6585bb45b73746f9da63190bf (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-print/splix/splix-1.0.1_beta2.ebuild,v 1.4 2007/01/30 05:43:06 beandog Exp $
inherit eutils toolchain-funcs
MY_P=${PN}-${PV/_/-}
S=${WORKDIR}/${MY_P}
DESCRIPTION="A set of CUPS printer drivers for SPL (Samsung Printer Language) printers"
HOMEPAGE="http://splix.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="net-print/cups"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/fixMakefile.patch
}
src_compile() {
emake CXX="$(tc-getCXX)" || die "emake failed"
}
src_install() {
CUPSFILTERDIR="$(cups-config --serverbin)/filter"
CUPSPPDDIR="$(cups-config --datadir)/model"
dodir "${CUPSFILTERDIR}"
dodir "${CUPSPPDDIR}"
emake DESTDIR="${D}" install || die "emake install failed"
}
|