blob: 8a58951a30958760124f4217c4069bf1f470f3f9 (
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
43
44
45
46
47
48
49
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/south/south-0.7.4.ebuild,v 1.1 2012/04/19 10:00:41 patrick Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
inherit distutils
DESCRIPTION="Intelligent schema migrations for Django apps."
HOMEPAGE="http://south.aeracode.org/"
SRC_URI="http://www.aeracode.org/releases/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND="dev-python/django"
DEPEND="${RDEPEND}
dev-python/setuptools
doc? ( dev-python/sphinx )"
# I should leave a very angry comment here
S="${WORKDIR}/andrewgodwin-south-738417d7a8ab/"
src_compile() {
distutils_src_compile
if use doc ; then
emake -C docs html || die "building docs failed"
fi
}
src_install() {
distutils_src_install
use doc && dohtml -r docs/_build/html/*
}
pkg_postinst() {
distutils_pkg_postinst
elog "In order to use the south schema migrations for your Django project,"
elog "just add 'south' to your INSTALLED_APPS in the settings.py file."
elog "manage.py will now automagically offer the new functions."
}
|