blob: 9f89484928c9efc093d1f7f75703a07b34aa3cd4 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-print/omni/omni-0.9.2.ebuild,v 1.1 2005/06/07 14:59:54 lanius Exp $
inherit eutils
DESCRIPTION="Omni provides support for many printers with a pluggable framework (easy to add devices)"
HOMEPAGE="http://sourceforge.net/projects/omniprint"
SRC_URI="mirror://sourceforge/omniprint/${P/o/O}.tar.gz
doc? ( mirror://sourceforge/omniprint/OmniArchitecture.0.3.pdf )
epson? ( mirror://sourceforge/omniprint/OmniEpsonVendor-${PV}.tar.gz )
foomaticdb? ( mirror://gentoo/omni-${PV}-foomatic.tar.bz2 )"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~x86"
DEPEND=""
RDEPEND="virtual/ghostscript
dev-libs/libxml2
dev-libs/glib
cups? ( >=net-print/cups-1.1.14 )
X? ( >=dev-cpp/gtkmm-1.2.5 )
>=dev-libs/libsigc++-1.01
foomaticdb? ( net-print/foomatic-db-engine )"
S="${WORKDIR}/Omni"
IUSE="cups X ppds foomaticdb static doc epson"
src_unpack() {
unpack ${P/o/O}.tar.gz
cd ${S}
if use epson; then
unpack OmniEpsonVendor-${PV}.tar.gz
fi
}
src_compile() {
local myconf=" \
$(use_enable X jobdialog) \
$(use_enable cups) \
$(use_enable static)"
export WANT_AUTOMAKE="1.6"
export WANT_AUTOCONF="2.5"
libtoolize --copy --force
LANG="" ./setupOmni ${myconf} --disable-device-xml --enable-device-compile || die
if use ppds && use cups; then
sed -i -e "s/model\/foomatic/model\/omni/g" CUPS/Makefile \
|| die 'sed failed'
make -C CUPS generateBuildPPDs || die
fi
}
src_install () {
make DESTDIR=${D} install || die
dodoc docs/* # never forget this! ;-)
use doc && dodoc ${DISTDIR}/OmniArchitecture.0.3.pdf
if use foomaticdb; then
cd ${D}
unpack omni-${PV}-foomatic.tar.bz2
fi
}
|