blob: 24043ad63df2ff9688b201b4f05344c21962ff33 (
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.ebuild,v 1.1 2007/02/04 16:54:22 wschlich 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"
}
|