blob: a7481c8309b49e31c47021d9df2870956f559f06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/feedparser/feedparser-3.3.ebuild,v 1.1 2005/11/03 20:04:46 liquidx Exp $
inherit distutils
DESCRIPTION="Parse RSS and Atom feeds in Python"
HOMEPAGE="http://www.feedparser.org/"
SRC_URI="mirror://sourceforge/feedparser/${P}.zip"
LICENSE="PYTHON"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="app-arch/unzip"
S=${WORKDIR}/${PN}
PYTHON_MODNAME="feedparser"
DOCS="README LICENSE"
|