blob: 72008f040c8dae12ed75bfad9537d0b3d870101a (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/tilecache/tilecache-2.11.ebuild,v 1.1 2011/06/01 09:53:25 scarabeus Exp $
EAPI=3
PYTHON_DEPEND="2"
inherit distutils
DESCRIPTION="Web map tile caching system"
HOMEPAGE="http://tilecache.org/"
SRC_URI="http://${PN}.org/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-python/imaging
dev-python/paste"
DEPEND="${RDEPEND}
dev-python/setuptools
"
pkg_setup() {
python_set_active_version 2
}
src_install() {
distutils_src_install "--debian"
}
|