summaryrefslogtreecommitdiff
blob: 5249c925845bd94b5b74c1ccc2ce2eb36af7cc31 (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
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: Exp $

ESVN_REPO_URI="http://django-comment-utils.googlecode.com/svn/trunk/"

inherit distutils eutils subversion

MY_P="comment_utils-${PV}"

DESCRIPTION="Utilities for Django's comment system"
HOMEPAGE="http://code.google.com/p/django-comment-utils/"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86"
IUSE=""

RDEPEND="dev-python/django"
DEPEND="${RDEPEND}"

DOCS="docs/* CHANGELOG.txt README.txt"

S="${WORKDIR}/${MY_P}"

src_install() {
	distutils_python_version

	site_pkgs="$(python_get_sitedir)"
	export PYTHONPATH="${PYTHONPATH}:${D}/${site_pkgs}"
	dodir ${site_pkgs}

	distutils_src_install
}