blob: 5035f81125a1583eff33dfedd9bb53b5f983b56e (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/gnosis-utils/gnosis-utils-1.0.6.ebuild,v 1.2 2003/06/21 22:30:24 drobbins Exp $
inherit distutils
IUSE=""
MY_P=${P/gnosis-utils/Gnosis_Utils}
S=${WORKDIR}/${MY_P}
DESCRIPTION="XML pickling and objectification with Python."
SRC_URI="http://www.gnosis.cx/download/${MY_P}.tar.gz"
HOMEPAGE="http://www.gnosis.cx/download/"
DEPEND="virtual/python"
SLOT="0"
KEYWORDS="x86 amd64"
LICENSE="PYTHON"
src_compile() {
python setup_gnosis.py build || die
}
src_install() {
distutils_python_version
python setup_gnosis.py install --root=${D} || die
dodir /usr/share/doc/${PF}
dodoc README MANIFEST PKG-INFO
if [ -e "${D}/usr/lib/python${PYVER}/site-packages/gnosis/doc" ] ; then
einfo "Moving documentation to correct location"
mv ${D}/usr/lib/python${PYVER}/site-packages/gnosis/doc ${D}/usr/share/doc/${PF}/doc
fi
rm -f ${D}/usr/lib/python${PYVER}/site-packages/gnosis/{README,MANIFEST}
rm -f ${D}/usr/lib/python${PYVER}/site-packages/{README,MANIFEST}
}
|