parent
8b47d310f7
commit
7754164d3e
@ -0,0 +1,35 @@
|
||||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI="3"
|
||||
SUPPORT_PYTHON_ABIS="1"
|
||||
PYTHON_DEPEND="2:2.7"
|
||||
RESTRICT_PYTHON_ABIS="2.4 2.5 2.6 3.*"
|
||||
|
||||
inherit distutils eutils
|
||||
|
||||
SRC_URI="ftp://ftp.calculate.ru/pub/calculate/calculate3/${PN}/${P}.tar.bz2"
|
||||
|
||||
DESCRIPTION="The library for Calculate 3"
|
||||
HOMEPAGE="http://www.calculate-linux.org/main/en/calculate2"
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="3"
|
||||
KEYWORDS="x86 amd64"
|
||||
IUSE="minimal"
|
||||
DEPEND="!minimal? ( dev-python/py-smbpasswd )
|
||||
>=dev-python/pyxml-0.8
|
||||
sys-apps/iproute2
|
||||
sys-apps/pciutils
|
||||
sys-fs/lvm2
|
||||
sys-fs/mdadm
|
||||
dev-python/pyinotify
|
||||
sys-apps/file[python]"
|
||||
RDEPEND="${DEPEND}"
|
||||
src_unpack() {
|
||||
unpack "${A}"
|
||||
cd "${S}"
|
||||
|
||||
# apply revision changes
|
||||
epatch "${FILESDIR}/calculate-lib-3.1.1-r1.patch"
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
diff --git calculate/lib/cl_template.py calculate/lib/cl_template.py
|
||||
index 311d109..e993eb1 100644
|
||||
--- calculate/lib/cl_template.py
|
||||
+++ calculate/lib/cl_template.py
|
||||
@@ -3326,7 +3326,7 @@ class templateFunction(_error, _warning, _shareTemplate, _shareTermsFunction):
|
||||
filter(lambda x:x.startswith('move '),
|
||||
readLinesFile(os.path.join('/usr/portage/profiles/updates',
|
||||
updateFiles[0]))))
|
||||
- if package in self.cachePortdir:
|
||||
+ if package in self.cachePortdir["portage/update"]:
|
||||
self.printWARNING(_("Package {frompkg} was renamed").format(frompkg=package))
|
||||
return True
|
||||
return False
|
@ -0,0 +1,26 @@
|
||||
# Copyright 1999-2011 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=4
|
||||
|
||||
DESCRIPTION="Calculate Utilities meta package"
|
||||
HOMEPAGE="http://www.calculate-linux.org/main/en/calculate2"
|
||||
SRC_URI=""
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="3"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE="cl_consolegui cl_client cl_desktop cl_console"
|
||||
|
||||
RDEPEND="${RDEPEND}
|
||||
=sys-apps/calculate-install-3.1.1
|
||||
=sys-apps/calculate-i18n-3.1.1-r2
|
||||
=sys-apps/calculate-lib-3.1.1-r1
|
||||
=sys-apps/calculate-core-3.1.1-r1
|
||||
=sys-apps/calculate-update-3.1.1
|
||||
cl_client? ( =sys-apps/calculate-client-3.1.1-r1 )
|
||||
cl_desktop? ( =sys-apps/calculate-desktop-3.1.1 )
|
||||
cl_consolegui? ( =sys-apps/calculate-console-gui-3.1.1 )
|
||||
cl_console? ( =sys-apps/calculate-console-3.1.1 )
|
||||
"
|
Loading…
Reference in new issue