blob: 29650337e87e2c3cdf34c22113632dbcaaca3c8c (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit python autotools
MY_P="${PN%-common}-${PV}"
DESCRIPTION="Common modules of Red Hat's printer administration tool"
HOMEPAGE="http://cyberelk.net/tim/software/system-config-printer/"
SRC_URI="http://cyberelk.net/tim/data/system-config-printer/1.1/${MY_P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE=""
# system-config-printer split since 1.1.3
RDEPEND="
!app-admin/system-config-printer:0
dev-libs/libxml2[python]
dev-python/dbus-python
dev-python/pycups
dev-python/pygobject
net-print/cups[dbus]
"
S="${WORKDIR}/${MY_P}"
src_prepare() {
epatch "${FILESDIR}/${PN}-1.1.3-split.patch"
eaclocal
eautomake
eautoconf
}
src_configure() {
econf --disable-nls || die "econf failed"
}
src_install() {
dodoc AUTHORS ChangeLog README || die "dodoc failed"
emake DESTDIR="${D}" install || die "emake install failed"
}
|