port several ebuilds from kde-testing overlay:
kde-base/printer-applet kde-base/system-config-printer-kde dev-python-pycups app-admin/system-config-printer app-misc/hal-cups-utils git-svn-id: http://svn.sabayonlinux.org/overlay@2910 d7aec97c-591d-0410-af39-a8856400b30a
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
# ChangeLog for dev-python/pycups
|
||||
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/dev-python/pycups/ChangeLog,v 1.1 2006/09/05 21:31:34 dberkholz Exp $
|
||||
|
||||
*pycups-1.9.45 (21 Jan 2009)
|
||||
|
||||
21 Jan 2009; Maciej Mrozowski (reavertm) <reavertm@poczta.fm>
|
||||
-pycups-1.9.44.ebuild, +pycups-1.9.45.ebuild:
|
||||
New version 1.9.45
|
||||
|
||||
*pycups-1.9.44 (28 Dec 2008)
|
||||
|
||||
28 Dec 2008; Alexey Shvetsov <alexxy@gentoo.ru> +metadata.xml,
|
||||
+pycups-1.9.44.ebuild:
|
||||
Version bump
|
||||
|
||||
*pycups-1.9.12 (05 Sep 2006)
|
||||
|
||||
05 Sep 2006; Donnie Berkholz <dberkholz@gentoo.org>; +metadata.xml,
|
||||
+pycups-1.9.12.ebuild:
|
||||
Python bindings for the CUPS API
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
DIST pycups-1.9.45.tar.bz2 39968 RMD160 d03b38080ef7b385689c197b23087491477e4fd7 SHA1 976e84f1a32cbc0fc3fc5c3557fad334048e0573 SHA256 ef6e576e5465da9c338ac8ff9f162825cfb7997359efc52e6a110c295a9f363b
|
||||
EBUILD pycups-1.9.45.ebuild 930 RMD160 d015ad47691b693542fe2cba70a85b3b803aa26d SHA1 065d5a1f69d43e44aec0945400c2cfbee4442e14 SHA256 f3463d99ca2b41907774870fcf1a634ea6f1a0e7deba90f9012c732940bc8457
|
||||
MISC ChangeLog 671 RMD160 9078977a8eb1f375c2165103d976be8d86bc195b SHA1 9e26abf1077f9c91504ce96a5d60198e2c980299 SHA256 669caa5044bf5869b205decb50c9337eff2f26a3af4469cc96f0fb73d9e06262
|
||||
MISC metadata.xml 252 RMD160 212f61f15769b523e0fa55ed5d872d85536b4043 SHA1 5f9d6137a829b96482aacd60baf98160b49dc514 SHA256 b3aaf1e941b12ded57dea3530d59b8db42716f5e805efb6338101c135beac506
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>no-herd</herd>
|
||||
<maintainer>
|
||||
<email>dberkholz@gentoo.org</email>
|
||||
<name>Donnie Berkholz</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
@@ -0,0 +1,46 @@
|
||||
# Copyright 1999-2009 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
NEED_PYTHON="2.4"
|
||||
inherit python
|
||||
|
||||
DESCRIPTION="Python bindings for the CUPS API"
|
||||
HOMEPAGE="http://cyberelk.net/tim/data/pycups/"
|
||||
SRC_URI="http://cyberelk.net/tim/data/pycups/${P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="doc examples"
|
||||
|
||||
RDEPEND="
|
||||
net-print/cups
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
doc? ( dev-python/epydoc )
|
||||
"
|
||||
|
||||
src_compile() {
|
||||
python_version
|
||||
emake PYTHONVERS="python${PYVER}" || die "emake failed"
|
||||
|
||||
if use doc; then
|
||||
emake doc || die "emake doc failed"
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dodoc NEWS README TODO || die "dodoc failed"
|
||||
|
||||
if use doc; then
|
||||
dohtml -r html/ || die "installing html docs failed"
|
||||
fi
|
||||
|
||||
if use examples; then
|
||||
insinto /usr/share/doc/"${P}"
|
||||
doins -r examples/ || die "installing examples failed"
|
||||
fi
|
||||
|
||||
emake DESTDIR="${D}" install || die "emake install failed"
|
||||
}
|
||||
Reference in New Issue
Block a user