diff options
-rw-r--r-- | dev-python/django-comment-utils/Manifest | 1 | ||||
-rw-r--r-- | dev-python/django-comment-utils/django-comment-utils-9999.ebuild | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/dev-python/django-comment-utils/Manifest b/dev-python/django-comment-utils/Manifest new file mode 100644 index 0000000..1d15b21 --- /dev/null +++ b/dev-python/django-comment-utils/Manifest @@ -0,0 +1 @@ +EBUILD django-comment-utils-9999.ebuild 734 RMD160 af0fcb66a0c7a09fec90c35efae39ab68eac3044 SHA1 0c151437100f395ff052328f00fe3546e3e7dc7e SHA256 d65578927c24c28bd7fdf4376c2b6bcc3143976fc5d00c9b3004f05fe485bf34 diff --git a/dev-python/django-comment-utils/django-comment-utils-9999.ebuild b/dev-python/django-comment-utils/django-comment-utils-9999.ebuild new file mode 100644 index 0000000..5249c92 --- /dev/null +++ b/dev-python/django-comment-utils/django-comment-utils-9999.ebuild @@ -0,0 +1,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 +} |