blob: 2ed71beac179bc6290feaf0b6a026b6906baab9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/optik/optik-1.5.ebuild,v 1.8 2009/05/31 22:23:34 maekke Exp $
inherit distutils
IUSE=""
DESCRIPTION="Optik is a powerful, flexible, easy-to-use command-line parsing library for Python."
SRC_URI="mirror://sourceforge/optik/${P}.tar.gz"
HOMEPAGE="http://optik.sourceforge.net/"
DEPEND="virtual/python"
SLOT="0"
KEYWORDS="alpha amd64 ia64 ~ppc sparc x86"
LICENSE="BSD"
src_install() {
DOCS="*.txt"
distutils_src_install
insinto /usr/share/doc/${PF}/examples
doins examples/*
}
|