blob: c40871f69ebded5d16e9c5fdaf77e63602eb7ab3 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/goog-sitemapgen/goog-sitemapgen-1.5.ebuild,v 1.2 2012/08/07 17:32:35 kensington Exp $
EAPI=4
PYTHON_DEPEND="2"
inherit eutils python distutils
MY_P="sitemap_gen_${PV}"
DESCRIPTION="A python script which will generate an XML sitemap for your web site."
HOMEPAGE="http://sitemap-generators.googlecode.com/"
SRC_URI="http://sitemap-generators.googlecode.com/files/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DOCS="AUTHORS ChangeLog example_* README"
S=${WORKDIR}
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
distutils_src_prepare
epatch "${FILESDIR}"/${P}.patch
mv sitemap_gen.py sitemap_gen || die
}
|